diff --git a/Content.Client/Access/UI/AccessOverriderBoundUserInterface.cs b/Content.Client/Access/UI/AccessOverriderBoundUserInterface.cs index c1b63dc4d05..d80c600c03e 100644 --- a/Content.Client/Access/UI/AccessOverriderBoundUserInterface.cs +++ b/Content.Client/Access/UI/AccessOverriderBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Access.Components; using Content.Shared.Access.Systems; using Content.Shared.Containers.ItemSlots; +using Robust.Client.UserInterface; using Robust.Shared.Prototypes; using static Content.Shared.Access.Components.AccessOverriderComponent; @@ -23,6 +24,28 @@ protected override void Open() { base.Open(); + _window = this.CreateWindow(); + RefreshAccess(); + _window.Title = EntMan.GetComponent(Owner).EntityName; + _window.OnSubmit += SubmitData; + + _window.PrivilegedIdButton.OnPressed += _ => SendMessage(new ItemSlotButtonPressedEvent(PrivilegedIdCardSlotId)); + } + + public override void OnProtoReload(PrototypesReloadedEventArgs args) + { + base.OnProtoReload(args); + if (!args.WasModified()) + return; + + RefreshAccess(); + + if (State != null) + _window?.UpdateState(_prototypeManager, (AccessOverriderBoundUserInterfaceState) State); + } + + private void RefreshAccess() + { List> accessLevels; if (EntMan.TryGetComponent(Owner, out var accessOverrider)) @@ -30,38 +53,20 @@ protected override void Open() accessLevels = accessOverrider.AccessLevels; accessLevels.Sort(); } - else { accessLevels = new List>(); _accessOverriderSystem.Log.Error($"No AccessOverrider component found for {EntMan.ToPrettyString(Owner)}!"); } - _window = new AccessOverriderWindow(this, _prototypeManager, accessLevels) - { - Title = EntMan.GetComponent(Owner).EntityName - }; - - _window.PrivilegedIdButton.OnPressed += _ => SendMessage(new ItemSlotButtonPressedEvent(PrivilegedIdCardSlotId)); - - _window.OnClose += Close; - _window.OpenCentered(); - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _window?.Dispose(); + _window?.SetAccessLevels(_prototypeManager, accessLevels); } protected override void UpdateState(BoundUserInterfaceState state) { base.UpdateState(state); var castState = (AccessOverriderBoundUserInterfaceState) state; - _window?.UpdateState(castState); + _window?.UpdateState(_prototypeManager, castState); } public void SubmitData(List> newAccessList) diff --git a/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs b/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs index 6025c3b551f..ba087718583 100644 --- a/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs +++ b/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs @@ -13,26 +13,24 @@ namespace Content.Client.Access.UI [GenerateTypedNameReferences] public sealed partial class AccessOverriderWindow : DefaultWindow { - [Dependency] private readonly ILogManager _logManager = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - - private readonly AccessOverriderBoundUserInterface _owner; private readonly Dictionary _accessButtons = new(); - public AccessOverriderWindow(AccessOverriderBoundUserInterface owner, IPrototypeManager prototypeManager, - List> accessLevels) + public event Action>>? OnSubmit; + + public AccessOverriderWindow() { RobustXamlLoader.Load(this); - IoCManager.InjectDependencies(this); - var logMill = _logManager.GetSawmill(SharedAccessOverriderSystem.Sawmill); + } - _owner = owner; + public void SetAccessLevels(IPrototypeManager protoManager, List> accessLevels) + { + _accessButtons.Clear(); + AccessLevelGrid.DisposeAllChildren(); foreach (var access in accessLevels) { - if (!prototypeManager.TryIndex(access, out var accessLevel)) + if (!protoManager.TryIndex(access, out var accessLevel)) { - logMill.Error($"Unable to find accesslevel for {access}"); continue; } @@ -44,11 +42,16 @@ public AccessOverriderWindow(AccessOverriderBoundUserInterface owner, IPrototype AccessLevelGrid.AddChild(newButton); _accessButtons.Add(accessLevel.ID, newButton); - newButton.OnPressed += _ => SubmitData(); + newButton.OnPressed += _ => + { + OnSubmit?.Invoke( + // Iterate over the buttons dictionary, filter by `Pressed`, only get key from the key/value pair + _accessButtons.Where(x => x.Value.Pressed).Select(x => new ProtoId(x.Key)).ToList()); + }; } } - public void UpdateState(AccessOverriderBoundUserInterfaceState state) + public void UpdateState(IPrototypeManager protoManager, AccessOverriderBoundUserInterfaceState state) { PrivilegedIdLabel.Text = state.PrivilegedIdName; PrivilegedIdButton.Text = state.IsPrivilegedIdPresent @@ -66,11 +69,11 @@ public void UpdateState(AccessOverriderBoundUserInterfaceState state) if (state.MissingPrivilegesList != null && state.MissingPrivilegesList.Any()) { - List missingPrivileges = new List(); + var missingPrivileges = new List(); foreach (string tag in state.MissingPrivilegesList) { - string privilege = Loc.GetString(_prototypeManager.Index(tag)?.Name ?? "generic-unknown"); + var privilege = Loc.GetString(protoManager.Index(tag)?.Name ?? "generic-unknown"); missingPrivileges.Add(privilege); } @@ -90,13 +93,5 @@ public void UpdateState(AccessOverriderBoundUserInterfaceState state) } } } - - private void SubmitData() - { - _owner.SubmitData( - - // Iterate over the buttons dictionary, filter by `Pressed`, only get key from the key/value pair - _accessButtons.Where(x => x.Value.Pressed).Select(x => new ProtoId(x.Key)).ToList()); - } } } diff --git a/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs b/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs index 761f52988a9..50add43dc91 100644 --- a/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs +++ b/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Access.Systems; using Content.Shared.StatusIcon; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.Prototypes; namespace Content.Client.Access.UI @@ -20,16 +21,11 @@ protected override void Open() { base.Open(); - _window?.Dispose(); - _window = new AgentIDCardWindow(this); - if (State != null) - UpdateState(State); + _window = this.CreateWindow(); - _window.OpenCentered(); - - _window.OnClose += Close; _window.OnNameChanged += OnNameChanged; _window.OnJobChanged += OnJobChanged; + _window.OnJobIconChanged += OnJobIconChanged; } private void OnNameChanged(string newName) @@ -61,14 +57,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.SetCurrentJob(cast.CurrentJob); _window.SetAllowedIcons(cast.Icons, cast.CurrentJobIconId); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _window?.Dispose(); - } } } diff --git a/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs b/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs index 6d0b2a184f4..071ce41a069 100644 --- a/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs +++ b/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs @@ -17,19 +17,19 @@ public sealed partial class AgentIDCardWindow : DefaultWindow [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IEntitySystemManager _entitySystem = default!; private readonly SpriteSystem _spriteSystem; - private readonly AgentIDCardBoundUserInterface _bui; private const int JobIconColumnCount = 10; public event Action? OnNameChanged; public event Action? OnJobChanged; - public AgentIDCardWindow(AgentIDCardBoundUserInterface bui) + public event Action>? OnJobIconChanged; + + public AgentIDCardWindow() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); _spriteSystem = _entitySystem.GetEntitySystem(); - _bui = bui; NameLineEdit.OnTextEntered += e => OnNameChanged?.Invoke(e.Text); NameLineEdit.OnFocusExit += e => OnNameChanged?.Invoke(e.Text); @@ -67,7 +67,7 @@ public void SetAllowedIcons(HashSet> icons, string }; // Generate buttons textures - TextureRect jobIconTexture = new TextureRect + var jobIconTexture = new TextureRect { Texture = _spriteSystem.Frame0(jobIcon.Icon), TextureScale = new Vector2(2.5f, 2.5f), @@ -75,7 +75,7 @@ public void SetAllowedIcons(HashSet> icons, string }; jobIconButton.AddChild(jobIconTexture); - jobIconButton.OnPressed += _ => _bui.OnJobIconChanged(jobIconId); + jobIconButton.OnPressed += _ => OnJobIconChanged?.Invoke(jobIcon.ID); IconGrid.AddChild(jobIconButton); if (jobIconId.Equals(currentJobIconId)) diff --git a/Content.Client/Actions/ActionsSystem.cs b/Content.Client/Actions/ActionsSystem.cs index aff6c1ff7be..7f261f5df2d 100644 --- a/Content.Client/Actions/ActionsSystem.cs +++ b/Content.Client/Actions/ActionsSystem.cs @@ -107,7 +107,7 @@ private void BaseHandleState(EntityUid uid, BaseActionComponent component, Ba UpdateAction(uid, component); } - protected override void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null) + public override void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null) { if (!ResolveActionData(actionId, ref action)) return; diff --git a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs index 78eefa34628..7082617c944 100644 --- a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs @@ -14,7 +14,6 @@ namespace Content.Client.Administration.UI.Tabs.ObjectsTab; public sealed partial class ObjectsTab : Control { [Dependency] private readonly IEntityManager _entityManager = default!; - [Dependency] private readonly IGameTiming _timing = default!; private readonly Color _altColor = Color.FromHex("#292B38"); private readonly Color _defaultColor = Color.FromHex("#2F2F3B"); diff --git a/Content.Client/Ame/UI/AmeControllerBoundUserInterface.cs b/Content.Client/Ame/UI/AmeControllerBoundUserInterface.cs index e84cf5d34de..3d65f751899 100644 --- a/Content.Client/Ame/UI/AmeControllerBoundUserInterface.cs +++ b/Content.Client/Ame/UI/AmeControllerBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.Ame.Components; using JetBrains.Annotations; +using Robust.Client.UserInterface; namespace Content.Client.Ame.UI { @@ -16,9 +17,8 @@ protected override void Open() { base.Open(); - _window = new AmeWindow(this); - _window.OnClose += Close; - _window.OpenCentered(); + _window = this.CreateWindow(); + _window.OnAmeButton += ButtonPressed; } /// @@ -40,15 +40,5 @@ public void ButtonPressed(UiButton button) { SendMessage(new UiButtonPressedMessage(button)); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _window?.Dispose(); - } - } } } diff --git a/Content.Client/Ame/UI/AmeWindow.xaml.cs b/Content.Client/Ame/UI/AmeWindow.xaml.cs index 8b91ec59660..d6d580bcdaf 100644 --- a/Content.Client/Ame/UI/AmeWindow.xaml.cs +++ b/Content.Client/Ame/UI/AmeWindow.xaml.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Client.UserInterface; using Content.Shared.Ame.Components; using Robust.Client.AutoGenerated; @@ -9,15 +10,17 @@ namespace Content.Client.Ame.UI [GenerateTypedNameReferences] public sealed partial class AmeWindow : DefaultWindow { - public AmeWindow(AmeControllerBoundUserInterface ui) + public event Action? OnAmeButton; + + public AmeWindow() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); - EjectButton.OnPressed += _ => ui.ButtonPressed(UiButton.Eject); - ToggleInjection.OnPressed += _ => ui.ButtonPressed(UiButton.ToggleInjection); - IncreaseFuelButton.OnPressed += _ => ui.ButtonPressed(UiButton.IncreaseFuel); - DecreaseFuelButton.OnPressed += _ => ui.ButtonPressed(UiButton.DecreaseFuel); + EjectButton.OnPressed += _ => OnAmeButton?.Invoke(UiButton.Eject); + ToggleInjection.OnPressed += _ => OnAmeButton?.Invoke(UiButton.ToggleInjection); + IncreaseFuelButton.OnPressed += _ => OnAmeButton?.Invoke(UiButton.IncreaseFuel); + DecreaseFuelButton.OnPressed += _ => OnAmeButton?.Invoke(UiButton.DecreaseFuel); } /// @@ -29,7 +32,7 @@ public void UpdateState(BoundUserInterfaceState state) var castState = (AmeControllerBoundUserInterfaceState) state; // Disable all buttons if not powered - if (Contents.Children != null) + if (Contents.Children.Any()) { ButtonHelpers.SetButtonDisabledRecursive(Contents, !castState.HasPower); EjectButton.Disabled = false; @@ -65,8 +68,8 @@ public void UpdateState(BoundUserInterfaceState state) CoreCount.Text = $"{castState.CoreCount}"; InjectionAmount.Text = $"{castState.InjectionAmount}"; // format power statistics to pretty numbers - CurrentPowerSupply.Text = $"{castState.CurrentPowerSupply.ToString("N1")}"; - TargetedPowerSupply.Text = $"{castState.TargetedPowerSupply.ToString("N1")}"; + CurrentPowerSupply.Text = $"{castState.CurrentPowerSupply:N1}"; + TargetedPowerSupply.Text = $"{castState.TargetedPowerSupply:N1}"; } } } diff --git a/Content.Client/Anomaly/Ui/AnomalyGeneratorBoundUserInterface.cs b/Content.Client/Anomaly/Ui/AnomalyGeneratorBoundUserInterface.cs index 5764d0a097d..5d1985485c4 100644 --- a/Content.Client/Anomaly/Ui/AnomalyGeneratorBoundUserInterface.cs +++ b/Content.Client/Anomaly/Ui/AnomalyGeneratorBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Gravity; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Anomaly.Ui; @@ -18,10 +19,8 @@ protected override void Open() { base.Open(); - _window = new(Owner); - - _window.OpenCentered(); - _window.OnClose += Close; + _window = this.CreateWindow(); + _window.SetEntity(Owner); _window.OnGenerateButtonPressed += () => { @@ -37,18 +36,5 @@ protected override void UpdateState(BoundUserInterfaceState state) return; _window?.UpdateState(msg); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - - _window?.Dispose(); - } - - public void SetPowerSwitch(bool on) - { - SendMessage(new SharedGravityGeneratorComponent.SwitchGeneratorMessage(on)); - } } diff --git a/Content.Client/Anomaly/Ui/AnomalyGeneratorWindow.xaml.cs b/Content.Client/Anomaly/Ui/AnomalyGeneratorWindow.xaml.cs index 08438e2a1b2..82d41192dd0 100644 --- a/Content.Client/Anomaly/Ui/AnomalyGeneratorWindow.xaml.cs +++ b/Content.Client/Anomaly/Ui/AnomalyGeneratorWindow.xaml.cs @@ -18,17 +18,21 @@ public sealed partial class AnomalyGeneratorWindow : FancyWindow public Action? OnGenerateButtonPressed; - public AnomalyGeneratorWindow(EntityUid gen) + public AnomalyGeneratorWindow() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); - EntityView.SetEntity(gen); EntityView.SpriteOffset = false; GenerateButton.OnPressed += _ => OnGenerateButtonPressed?.Invoke(); } + public void SetEntity(EntityUid uid) + { + EntityView.SetEntity(uid); + } + public void UpdateState(AnomalyGeneratorUserInterfaceState state) { _cooldownEnd = state.CooldownEndTime; diff --git a/Content.Client/Arcade/BlockGameMenu.cs b/Content.Client/Arcade/BlockGameMenu.cs index eeda2a31020..4a579fc4bf4 100644 --- a/Content.Client/Arcade/BlockGameMenu.cs +++ b/Content.Client/Arcade/BlockGameMenu.cs @@ -28,8 +28,6 @@ public sealed class BlockGameMenu : DefaultWindow private static readonly Vector2 BlockSize = new(15, 15); - private readonly BlockGameBoundUserInterface _owner; - private readonly PanelContainer _mainPanel; private readonly BoxContainer _gameRootContainer; @@ -58,10 +56,11 @@ public sealed class BlockGameMenu : DefaultWindow private bool _isPlayer = false; private bool _gameOver = false; - public BlockGameMenu(BlockGameBoundUserInterface owner) + public event Action? OnAction; + + public BlockGameMenu() { Title = Loc.GetString("blockgame-menu-title"); - _owner = owner; MinSize = SetSize = new Vector2(410, 490); @@ -176,7 +175,7 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) }; _newGameButton.OnPressed += (e) => { - _owner.SendAction(BlockGamePlayerAction.NewGame); + OnAction?.Invoke(BlockGamePlayerAction.NewGame); }; pauseMenuContainer.AddChild(_newGameButton); pauseMenuContainer.AddChild(new Control { MinSize = new Vector2(1, 10) }); @@ -186,7 +185,10 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) Text = Loc.GetString("blockgame-menu-button-scoreboard"), TextAlign = Label.AlignMode.Center }; - _scoreBoardButton.OnPressed += (e) => _owner.SendAction(BlockGamePlayerAction.ShowHighscores); + _scoreBoardButton.OnPressed += (e) => + { + OnAction?.Invoke(BlockGamePlayerAction.ShowHighscores); + }; pauseMenuContainer.AddChild(_scoreBoardButton); _unpauseButtonMargin = new Control { MinSize = new Vector2(1, 10), Visible = false }; pauseMenuContainer.AddChild(_unpauseButtonMargin); @@ -199,7 +201,7 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) }; _unpauseButton.OnPressed += (e) => { - _owner.SendAction(BlockGamePlayerAction.Unpause); + OnAction?.Invoke(BlockGamePlayerAction.Unpause); }; pauseMenuContainer.AddChild(_unpauseButton); @@ -257,7 +259,7 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) }; _finalNewGameButton.OnPressed += (e) => { - _owner.SendAction(BlockGamePlayerAction.NewGame); + OnAction?.Invoke(BlockGamePlayerAction.NewGame); }; gameOverMenuContainer.AddChild(_finalNewGameButton); @@ -327,7 +329,10 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) Text = Loc.GetString("blockgame-menu-button-back"), TextAlign = Label.AlignMode.Center }; - _highscoreBackButton.OnPressed += (e) => _owner.SendAction(BlockGamePlayerAction.Pause); + _highscoreBackButton.OnPressed += (e) => + { + OnAction?.Invoke(BlockGamePlayerAction.Pause); + }; menuContainer.AddChild(_highscoreBackButton); menuInnerPanel.AddChild(menuContainer); @@ -473,7 +478,7 @@ protected override void KeyboardFocusExited() private void TryPause() { - _owner.SendAction(BlockGamePlayerAction.Pause); + OnAction?.Invoke(BlockGamePlayerAction.Pause); } public void SetStarted() @@ -576,19 +581,19 @@ protected override void KeyBindDown(GUIBoundKeyEventArgs args) return; else if (args.Function == ContentKeyFunctions.ArcadeLeft) - _owner.SendAction(BlockGamePlayerAction.StartLeft); + OnAction?.Invoke(BlockGamePlayerAction.StartLeft); else if (args.Function == ContentKeyFunctions.ArcadeRight) - _owner.SendAction(BlockGamePlayerAction.StartRight); + OnAction?.Invoke(BlockGamePlayerAction.StartRight); else if (args.Function == ContentKeyFunctions.ArcadeUp) - _owner.SendAction(BlockGamePlayerAction.Rotate); + OnAction?.Invoke(BlockGamePlayerAction.Rotate); else if (args.Function == ContentKeyFunctions.Arcade3) - _owner.SendAction(BlockGamePlayerAction.CounterRotate); + OnAction?.Invoke(BlockGamePlayerAction.CounterRotate); else if (args.Function == ContentKeyFunctions.ArcadeDown) - _owner.SendAction(BlockGamePlayerAction.SoftdropStart); + OnAction?.Invoke(BlockGamePlayerAction.SoftdropStart); else if (args.Function == ContentKeyFunctions.Arcade2) - _owner.SendAction(BlockGamePlayerAction.Hold); + OnAction?.Invoke(BlockGamePlayerAction.Hold); else if (args.Function == ContentKeyFunctions.Arcade1) - _owner.SendAction(BlockGamePlayerAction.Harddrop); + OnAction?.Invoke(BlockGamePlayerAction.Harddrop); } protected override void KeyBindUp(GUIBoundKeyEventArgs args) @@ -599,11 +604,11 @@ protected override void KeyBindUp(GUIBoundKeyEventArgs args) return; else if (args.Function == ContentKeyFunctions.ArcadeLeft) - _owner.SendAction(BlockGamePlayerAction.EndLeft); + OnAction?.Invoke(BlockGamePlayerAction.EndLeft); else if (args.Function == ContentKeyFunctions.ArcadeRight) - _owner.SendAction(BlockGamePlayerAction.EndRight); + OnAction?.Invoke(BlockGamePlayerAction.EndRight); else if (args.Function == ContentKeyFunctions.ArcadeDown) - _owner.SendAction(BlockGamePlayerAction.SoftdropEnd); + OnAction?.Invoke(BlockGamePlayerAction.SoftdropEnd); } public void UpdateNextBlock(BlockGameBlock[] blocks) diff --git a/Content.Client/Arcade/SpaceVillainArcadeMenu.cs b/Content.Client/Arcade/SpaceVillainArcadeMenu.cs index e5542a5848e..1ee4c268184 100644 --- a/Content.Client/Arcade/SpaceVillainArcadeMenu.cs +++ b/Content.Client/Arcade/SpaceVillainArcadeMenu.cs @@ -8,8 +8,6 @@ namespace Content.Client.Arcade { public sealed class SpaceVillainArcadeMenu : DefaultWindow { - public SpaceVillainArcadeBoundUserInterface Owner { get; set; } - private readonly Label _enemyNameLabel; private readonly Label _playerInfoLabel; private readonly Label _enemyInfoLabel; @@ -17,11 +15,13 @@ public sealed class SpaceVillainArcadeMenu : DefaultWindow private readonly Label _enemyActionLabel; private readonly Button[] _gameButtons = new Button[3]; //used to disable/enable all game buttons - public SpaceVillainArcadeMenu(SpaceVillainArcadeBoundUserInterface owner) + + public event Action? OnPlayerAction; + + public SpaceVillainArcadeMenu() { MinSize = SetSize = new Vector2(300, 225); Title = Loc.GetString("spacevillain-menu-title"); - Owner = owner; var grid = new GridContainer { Columns = 1 }; @@ -47,32 +47,43 @@ public SpaceVillainArcadeMenu(SpaceVillainArcadeBoundUserInterface owner) grid.AddChild(_enemyActionLabel); var buttonGrid = new GridContainer { Columns = 3 }; - _gameButtons[0] = new ActionButton(Owner, SharedSpaceVillainArcadeComponent.PlayerAction.Attack) + _gameButtons[0] = new Button() { Text = Loc.GetString("spacevillain-menu-button-attack") }; + + _gameButtons[0].OnPressed += + _ => OnPlayerAction?.Invoke(SharedSpaceVillainArcadeComponent.PlayerAction.Attack); buttonGrid.AddChild(_gameButtons[0]); - _gameButtons[1] = new ActionButton(Owner, SharedSpaceVillainArcadeComponent.PlayerAction.Heal) + _gameButtons[1] = new Button() { Text = Loc.GetString("spacevillain-menu-button-heal") }; + + _gameButtons[1].OnPressed += + _ => OnPlayerAction?.Invoke(SharedSpaceVillainArcadeComponent.PlayerAction.Heal); buttonGrid.AddChild(_gameButtons[1]); - _gameButtons[2] = new ActionButton(Owner, SharedSpaceVillainArcadeComponent.PlayerAction.Recharge) + _gameButtons[2] = new Button() { Text = Loc.GetString("spacevillain-menu-button-recharge") }; + + _gameButtons[2].OnPressed += + _ => OnPlayerAction?.Invoke(SharedSpaceVillainArcadeComponent.PlayerAction.Recharge); buttonGrid.AddChild(_gameButtons[2]); centerContainer = new CenterContainer(); centerContainer.AddChild(buttonGrid); grid.AddChild(centerContainer); - var newGame = new ActionButton(Owner, SharedSpaceVillainArcadeComponent.PlayerAction.NewGame) + var newGame = new Button() { Text = Loc.GetString("spacevillain-menu-button-new-game") }; + + newGame.OnPressed += _ => OnPlayerAction?.Invoke(SharedSpaceVillainArcadeComponent.PlayerAction.NewGame); grid.AddChild(newGame); Contents.AddChild(grid); @@ -99,23 +110,5 @@ public void UpdateInfo(SharedSpaceVillainArcadeComponent.SpaceVillainArcadeDataU _playerActionLabel.Text = message.PlayerActionMessage; _enemyActionLabel.Text = message.EnemyActionMessage; } - - private sealed class ActionButton : Button - { - private readonly SpaceVillainArcadeBoundUserInterface _owner; - private readonly SharedSpaceVillainArcadeComponent.PlayerAction _playerAction; - - public ActionButton(SpaceVillainArcadeBoundUserInterface owner, SharedSpaceVillainArcadeComponent.PlayerAction playerAction) - { - _owner = owner; - _playerAction = playerAction; - OnPressed += Clicked; - } - - private void Clicked(ButtonEventArgs e) - { - _owner.SendAction(_playerAction); - } - } } } diff --git a/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs b/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs index 1a3422dec0f..8fa8035afd6 100644 --- a/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs +++ b/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.Arcade; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Arcade.UI; @@ -15,9 +16,7 @@ protected override void Open() { base.Open(); - _menu = new BlockGameMenu(this); - _menu.OnClose += Close; - _menu.OpenCentered(); + _menu = this.CreateWindow(); } protected override void ReceiveMessage(BoundUserInterfaceMessage message) diff --git a/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs b/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs index 40bbe8b2d8c..c0704530de2 100644 --- a/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs +++ b/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs @@ -1,4 +1,5 @@ using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.GameObjects; using Robust.Shared.ViewVariables; using static Content.Shared.Arcade.SharedSpaceVillainArcadeComponent; @@ -9,8 +10,6 @@ public sealed class SpaceVillainArcadeBoundUserInterface : BoundUserInterface { [ViewVariables] private SpaceVillainArcadeMenu? _menu; - //public SharedSpaceVillainArcadeComponent SpaceVillainArcade; - public SpaceVillainArcadeBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { SendAction(PlayerAction.RequestData); @@ -25,10 +24,7 @@ protected override void Open() { base.Open(); - _menu = new SpaceVillainArcadeMenu(this); - - _menu.OnClose += Close; - _menu.OpenCentered(); + _menu = this.CreateWindow(); } protected override void ReceiveMessage(BoundUserInterfaceMessage message) @@ -36,12 +32,4 @@ protected override void ReceiveMessage(BoundUserInterfaceMessage message) if (message is SpaceVillainArcadeDataUpdateMessage msg) _menu?.UpdateInfo(msg); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - _menu?.Dispose(); - } } diff --git a/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs b/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs index 8f3b507c806..2ae15188355 100644 --- a/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs +++ b/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Monitor.Components; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.GameObjects; using Robust.Shared.IoC; using Robust.Shared.Log; @@ -20,16 +21,9 @@ protected override void Open() { base.Open(); - _window = new AirAlarmWindow(this); + _window = this.CreateWindow(); + _window.SetEntity(Owner); - if (State != null) - { - UpdateState(State); - } - - _window.OpenCentered(); - - _window.OnClose += Close; _window.AtmosDeviceDataChanged += OnDeviceDataChanged; _window.AtmosDeviceDataCopied += OnDeviceDataCopied; _window.AtmosAlarmThresholdChanged += OnThresholdChanged; diff --git a/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs b/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs index 43be67c9d6b..eeec11c7660 100644 --- a/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs +++ b/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs @@ -47,7 +47,7 @@ public sealed partial class AirAlarmWindow : FancyWindow private CheckBox _autoMode => AutoModeCheckBox; - public AirAlarmWindow(BoundUserInterface owner) + public AirAlarmWindow() { RobustXamlLoader.Load(this); @@ -95,8 +95,11 @@ public AirAlarmWindow(BoundUserInterface owner) _sensors.Clear(); ResyncAllRequested!.Invoke(); }; + } - EntityView.SetEntity(owner.Owner); + public void SetEntity(EntityUid uid) + { + EntityView.SetEntity(uid); } public void UpdateState(AirAlarmUIState state) diff --git a/Content.Client/Atmos/UI/GasCanisterBoundUserInterface.cs b/Content.Client/Atmos/UI/GasCanisterBoundUserInterface.cs index a5e316a8def..7bf9b396d5e 100644 --- a/Content.Client/Atmos/UI/GasCanisterBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/GasCanisterBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Atmos.Piping.Binary.Components; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Atmos.UI { @@ -21,14 +22,8 @@ protected override void Open() { base.Open(); - _window = new GasCanisterWindow(); + _window = this.CreateWindow(); - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; _window.ReleaseValveCloseButtonPressed += OnReleaseValveClosePressed; _window.ReleaseValveOpenButtonPressed += OnReleaseValveOpenPressed; _window.ReleasePressureSet += OnReleasePressureSet; diff --git a/Content.Client/Atmos/UI/GasFilterBoundUserInterface.cs b/Content.Client/Atmos/UI/GasFilterBoundUserInterface.cs index 1904e2b3402..2b8020924cf 100644 --- a/Content.Client/Atmos/UI/GasFilterBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/GasFilterBoundUserInterface.cs @@ -3,6 +3,7 @@ using Content.Shared.Atmos.Piping.Trinary.Components; using Content.Shared.Localizations; using JetBrains.Annotations; +using Robust.Client.UserInterface; namespace Content.Client.Atmos.UI { @@ -28,14 +29,8 @@ protected override void Open() var atmosSystem = EntMan.System(); - _window = new GasFilterWindow(atmosSystem.Gases); - - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); + _window.PopulateGasList(atmosSystem.Gases); _window.ToggleStatusButtonPressed += OnToggleStatusButtonPressed; _window.FilterTransferRateChanged += OnFilterTransferRatePressed; diff --git a/Content.Client/Atmos/UI/GasFilterWindow.xaml.cs b/Content.Client/Atmos/UI/GasFilterWindow.xaml.cs index 28766c688a0..62748b52592 100644 --- a/Content.Client/Atmos/UI/GasFilterWindow.xaml.cs +++ b/Content.Client/Atmos/UI/GasFilterWindow.xaml.cs @@ -26,10 +26,9 @@ public sealed partial class GasFilterWindow : DefaultWindow public event Action? FilterTransferRateChanged; public event Action? SelectGasPressed; - public GasFilterWindow(IEnumerable gases) + public GasFilterWindow() { RobustXamlLoader.Load(this); - PopulateGasList(gases); ToggleStatusButton.OnPressed += _ => SetFilterStatus(!FilterStatus); ToggleStatusButton.OnPressed += _ => ToggleStatusButtonPressed?.Invoke(); @@ -73,7 +72,7 @@ public void SetGasFiltered(string? id, string name) SelectGasButton.Disabled = true; } - private void PopulateGasList(IEnumerable gases) + public void PopulateGasList(IEnumerable gases) { GasList.Add(new ItemList.Item(GasList) { @@ -81,7 +80,7 @@ private void PopulateGasList(IEnumerable gases) Text = Loc.GetString("comp-gas-filter-ui-filter-gas-none") }); - foreach (GasPrototype gas in gases) + foreach (var gas in gases) { var gasName = Loc.GetString(gas.Name); GasList.Add(GetGasItem(gas.ID, gasName, GasList)); diff --git a/Content.Client/Atmos/UI/GasMixerBoundUserInteface.cs b/Content.Client/Atmos/UI/GasMixerBoundUserInteface.cs index 709c06517cb..392fbf1cd9a 100644 --- a/Content.Client/Atmos/UI/GasMixerBoundUserInteface.cs +++ b/Content.Client/Atmos/UI/GasMixerBoundUserInteface.cs @@ -2,7 +2,7 @@ using Content.Shared.Atmos.Piping.Trinary.Components; using Content.Shared.Localizations; using JetBrains.Annotations; -using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Atmos.UI { @@ -26,14 +26,7 @@ protected override void Open() { base.Open(); - _window = new GasMixerWindow(); - - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.ToggleStatusButtonPressed += OnToggleStatusButtonPressed; _window.MixerOutputPressureChanged += OnMixerOutputPressurePressed; @@ -83,12 +76,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.SetOutputPressure(cast.OutputPressure); _window.SetNodePercentages(cast.NodeOne); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } } } diff --git a/Content.Client/Atmos/UI/GasPressurePumpBoundUserInterface.cs b/Content.Client/Atmos/UI/GasPressurePumpBoundUserInterface.cs index 6eba2e0d215..220fdbe875c 100644 --- a/Content.Client/Atmos/UI/GasPressurePumpBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/GasPressurePumpBoundUserInterface.cs @@ -3,6 +3,7 @@ using Content.Shared.Localizations; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Atmos.UI { @@ -26,14 +27,7 @@ protected override void Open() { base.Open(); - _window = new GasPressurePumpWindow(); - - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.ToggleStatusButtonPressed += OnToggleStatusButtonPressed; _window.PumpOutputPressureChanged += OnPumpOutputPressurePressed; @@ -67,12 +61,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.SetPumpStatus(cast.Enabled); _window.SetOutputPressure(cast.OutputPressure); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } } } diff --git a/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs b/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs index 1664c8b9d75..d62be8f4bb4 100644 --- a/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Atmos.Piping.Unary.Components; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Atmos.UI { @@ -31,14 +32,7 @@ protected override void Open() { base.Open(); - _window = new GasThermomachineWindow(); - - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.ToggleStatusButton.OnPressed += _ => OnToggleStatusButtonPressed(); _window.TemperatureSpinbox.OnValueChanged += _ => OnTemperatureChanged(_window.TemperatureSpinbox.Value); @@ -91,12 +85,5 @@ protected override void UpdateState(BoundUserInterfaceState state) true => Loc.GetString("comp-gas-thermomachine-ui-title-heater") }; } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } } } diff --git a/Content.Client/Atmos/UI/GasVolumePumpBoundUserInterface.cs b/Content.Client/Atmos/UI/GasVolumePumpBoundUserInterface.cs index 1b39306181a..642f34c2f92 100644 --- a/Content.Client/Atmos/UI/GasVolumePumpBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/GasVolumePumpBoundUserInterface.cs @@ -3,6 +3,7 @@ using Content.Shared.Localizations; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Atmos.UI { @@ -26,14 +27,7 @@ protected override void Open() { base.Open(); - _window = new GasVolumePumpWindow(); - - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.ToggleStatusButtonPressed += OnToggleStatusButtonPressed; _window.PumpTransferRateChanged += OnPumpTransferRatePressed; @@ -64,16 +58,9 @@ protected override void UpdateState(BoundUserInterfaceState state) if (_window == null || state is not GasVolumePumpBoundUserInterfaceState cast) return; - _window.Title = (cast.PumpLabel); + _window.Title = cast.PumpLabel; _window.SetPumpStatus(cast.Enabled); _window.SetTransferRate(cast.TransferRate); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } } } diff --git a/Content.Client/Atmos/UI/SpaceHeaterBoundUserInterface.cs b/Content.Client/Atmos/UI/SpaceHeaterBoundUserInterface.cs index 4d8d1191e91..e70426575d4 100644 --- a/Content.Client/Atmos/UI/SpaceHeaterBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/SpaceHeaterBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.Atmos.Piping.Portable.Components; using JetBrains.Annotations; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; namespace Content.Client.Atmos.UI; @@ -21,14 +22,7 @@ protected override void Open() { base.Open(); - _window = new SpaceHeaterWindow(); - - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.ToggleStatusButton.OnPressed += _ => OnToggleStatusButtonPressed(); _window.IncreaseTempRange.OnPressed += _ => OnTemperatureRangeChanged(_window.TemperatureChangeDelta); diff --git a/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs b/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs index 60fe339069a..865dfc478d0 100644 --- a/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs +++ b/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs @@ -1,8 +1,7 @@ using Content.Shared.Audio.Jukebox; using Robust.Client.Audio; -using Robust.Client.Player; +using Robust.Client.UserInterface; using Robust.Shared.Audio.Components; -using Robust.Shared.Player; using Robust.Shared.Prototypes; namespace Content.Client.Audio.Jukebox; @@ -23,9 +22,7 @@ protected override void Open() { base.Open(); - _menu = new JukeboxMenu(); - _menu.OnClose += Close; - _menu.OpenCentered(); + _menu = this.CreateWindow(); _menu.OnPlayPressed += args => { @@ -100,19 +97,5 @@ public void SetTime(float time) SendMessage(new JukeboxSetTimeMessage(sentTime)); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - if (_menu == null) - return; - - _menu.OnClose -= Close; - _menu.Dispose(); - _menu = null; - } } diff --git a/Content.Client/Bed/Cryostorage/CryostorageBoundUserInterface.cs b/Content.Client/Bed/Cryostorage/CryostorageBoundUserInterface.cs index ffab1625483..09f3cec8fbf 100644 --- a/Content.Client/Bed/Cryostorage/CryostorageBoundUserInterface.cs +++ b/Content.Client/Bed/Cryostorage/CryostorageBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.Bed.Cryostorage; using JetBrains.Annotations; +using Robust.Client.UserInterface; namespace Content.Client.Bed.Cryostorage; @@ -17,9 +18,7 @@ protected override void Open() { base.Open(); - _menu = new(); - - _menu.OnClose += Close; + _menu = this.CreateWindow(); _menu.SlotRemoveButtonPressed += (ent, slot) => { @@ -30,8 +29,6 @@ protected override void Open() { SendMessage(new CryostorageRemoveItemBuiMessage(ent, hand, CryostorageRemoveItemBuiMessage.RemovalType.Hand)); }; - - _menu.OpenCentered(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -45,12 +42,4 @@ protected override void UpdateState(BoundUserInterfaceState state) break; } } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - _menu?.Dispose(); - } } diff --git a/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs b/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs index d3365702bcf..44c40143d83 100644 --- a/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs +++ b/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Client.Cargo.UI; using Content.Shared.Cargo.Components; using JetBrains.Annotations; +using Robust.Client.UserInterface; namespace Content.Client.Cargo.BUI; @@ -18,9 +19,7 @@ protected override void Open() { base.Open(); - _menu = new(); - - _menu.OnClose += Close; + _menu = this.CreateWindow(); _menu.OnLabelButtonPressed += id => { @@ -31,8 +30,6 @@ protected override void Open() { SendMessage(new BountySkipMessage(id)); }; - - _menu.OpenCentered(); } protected override void UpdateState(BoundUserInterfaceState message) @@ -44,14 +41,4 @@ protected override void UpdateState(BoundUserInterfaceState message) _menu?.UpdateEntries(state.Bounties, state.UntilNextSkip); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (!disposing) - return; - - _menu?.Dispose(); - } } diff --git a/Content.Client/Cargo/BUI/CargoPalletConsoleBoundUserInterface.cs b/Content.Client/Cargo/BUI/CargoPalletConsoleBoundUserInterface.cs index 20c23a48a0d..2461dafb5f3 100644 --- a/Content.Client/Cargo/BUI/CargoPalletConsoleBoundUserInterface.cs +++ b/Content.Client/Cargo/BUI/CargoPalletConsoleBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Cargo.BUI; using Content.Shared.Cargo.Events; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Cargo.BUI; @@ -18,21 +19,9 @@ protected override void Open() { base.Open(); - _menu = new CargoPalletMenu(); + _menu = this.CreateWindow(); _menu.AppraiseRequested += OnAppraisal; _menu.SellRequested += OnSell; - _menu.OnClose += Close; - - _menu.OpenCentered(); - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (disposing) - { - _menu?.Dispose(); - } } private void OnAppraisal() diff --git a/Content.Client/Cargo/BUI/CargoShuttleConsoleBoundUserInterface.cs b/Content.Client/Cargo/BUI/CargoShuttleConsoleBoundUserInterface.cs index 422d03707a0..02b721b9020 100644 --- a/Content.Client/Cargo/BUI/CargoShuttleConsoleBoundUserInterface.cs +++ b/Content.Client/Cargo/BUI/CargoShuttleConsoleBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Cargo.BUI; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.Prototypes; namespace Content.Client.Cargo.BUI; @@ -9,6 +10,8 @@ namespace Content.Client.Cargo.BUI; [UsedImplicitly] public sealed class CargoShuttleConsoleBoundUserInterface : BoundUserInterface { + [Dependency] private readonly IPrototypeManager _protoManager = default!; + [ViewVariables] private CargoShuttleMenu? _menu; @@ -19,24 +22,7 @@ public CargoShuttleConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base protected override void Open() { base.Open(); - var collection = IoCManager.Instance; - - if (collection == null) - return; - - _menu = new CargoShuttleMenu(collection.Resolve(), collection.Resolve().GetEntitySystem()); - _menu.OnClose += Close; - - _menu.OpenCentered(); - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (disposing) - { - _menu?.Dispose(); - } + _menu = this.CreateWindow(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -45,6 +31,6 @@ protected override void UpdateState(BoundUserInterfaceState state) if (state is not CargoShuttleConsoleBoundUserInterfaceState cargoState) return; _menu?.SetAccountName(cargoState.AccountName); _menu?.SetShuttleName(cargoState.ShuttleName); - _menu?.SetOrders(cargoState.Orders); + _menu?.SetOrders(EntMan.System(), _protoManager, cargoState.Orders); } } diff --git a/Content.Client/Cargo/UI/CargoShuttleMenu.xaml.cs b/Content.Client/Cargo/UI/CargoShuttleMenu.xaml.cs index c591f917da3..43b00089e16 100644 --- a/Content.Client/Cargo/UI/CargoShuttleMenu.xaml.cs +++ b/Content.Client/Cargo/UI/CargoShuttleMenu.xaml.cs @@ -12,14 +12,9 @@ namespace Content.Client.Cargo.UI [GenerateTypedNameReferences] public sealed partial class CargoShuttleMenu : FancyWindow { - private readonly IPrototypeManager _protoManager; - private readonly SpriteSystem _spriteSystem; - - public CargoShuttleMenu(IPrototypeManager protoManager, SpriteSystem spriteSystem) + public CargoShuttleMenu() { RobustXamlLoader.Load(this); - _protoManager = protoManager; - _spriteSystem = spriteSystem; Title = Loc.GetString("cargo-shuttle-console-menu-title"); } @@ -33,19 +28,19 @@ public void SetShuttleName(string name) ShuttleNameLabel.Text = name; } - public void SetOrders(List orders) + public void SetOrders(SpriteSystem sprites, IPrototypeManager protoManager, List orders) { Orders.DisposeAllChildren(); foreach (var order in orders) { - var product = _protoManager.Index(order.ProductId); + var product = protoManager.Index(order.ProductId); var productName = product.Name; var row = new CargoOrderRow { Order = order, - Icon = { Texture = _spriteSystem.Frame0(product) }, + Icon = { Texture = sprites.Frame0(product) }, ProductName = { Text = Loc.GetString( diff --git a/Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs b/Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs index f3b2d373d74..2d4d192ea8a 100644 --- a/Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs +++ b/Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs @@ -31,7 +31,7 @@ public void UpdateState(NewsArticle article, int targetNum, int totalNum, bool n Author.Visible = true; PageName.Text = article.Title; - PageText.SetMarkup(article.Content); + PageText.SetMarkupPermissive(article.Content); PageNum.Text = $"{targetNum}/{totalNum}"; diff --git a/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs b/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs index 988fea7978b..3ef7f0ae73e 100644 --- a/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs +++ b/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Containers.ItemSlots; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Chemistry.UI { @@ -27,13 +28,8 @@ protected override void Open() base.Open(); // Setup window layout/elements - _window = new ChemMasterWindow - { - Title = EntMan.GetComponent(Owner).EntityName, - }; - - _window.OpenCentered(); - _window.OnClose += Close; + _window = this.CreateWindow(); + _window.Title = EntMan.GetComponent(Owner).EntityName; // Setup static button actions. _window.InputEjectButton.OnPressed += _ => SendMessage( @@ -75,15 +71,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.UpdateState(castState); // Update window state } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _window?.Dispose(); - } - } } } diff --git a/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs b/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs index 99e5a3d3953..2ad1b718887 100644 --- a/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs +++ b/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs @@ -3,6 +3,7 @@ using Content.Shared.Containers.ItemSlots; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Chemistry.UI { @@ -15,9 +16,6 @@ public sealed class ReagentDispenserBoundUserInterface : BoundUserInterface [ViewVariables] private ReagentDispenserWindow? _window; - [ViewVariables] - private ReagentDispenserBoundUserInterfaceState? _lastState; - public ReagentDispenserBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } @@ -32,14 +30,9 @@ protected override void Open() base.Open(); // Setup window layout/elements - _window = new() - { - Title = EntMan.GetComponent(Owner).EntityName, - HelpGuidebookIds = EntMan.GetComponent(Owner).Guides - }; - - _window.OpenCentered(); - _window.OnClose += Close; + _window = this.CreateWindow(); + _window.Title = EntMan.GetComponent(Owner).EntityName; + _window.HelpGuidebookIds = EntMan.GetComponent(Owner).Guides; // Setup static button actions. _window.EjectButton.OnPressed += _ => SendMessage(new ItemSlotButtonPressedEvent(SharedReagentDispenser.OutputSlotName)); @@ -63,19 +56,7 @@ protected override void UpdateState(BoundUserInterfaceState state) base.UpdateState(state); var castState = (ReagentDispenserBoundUserInterfaceState) state; - _lastState = castState; - _window?.UpdateState(castState); //Update window state } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _window?.Dispose(); - } - } } } diff --git a/Content.Client/Chemistry/UI/TransferAmountBoundUserInterface.cs b/Content.Client/Chemistry/UI/TransferAmountBoundUserInterface.cs index 35df131312d..f1cb27a62a4 100644 --- a/Content.Client/Chemistry/UI/TransferAmountBoundUserInterface.cs +++ b/Content.Client/Chemistry/UI/TransferAmountBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.FixedPoint; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Chemistry.UI { @@ -18,7 +19,7 @@ public TransferAmountBoundUserInterface(EntityUid owner, Enum uiKey) : base(owne protected override void Open() { base.Open(); - _window = new TransferAmountWindow(); + _window = this.CreateWindow(); _window.ApplyButton.OnPressed += _ => { @@ -28,15 +29,6 @@ protected override void Open() _window.Close(); } }; - _window.OnClose += Close; - _window.OpenCentered(); - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); } } } diff --git a/Content.Client/CloningConsole/UI/CloningConsoleBoundUserInterface.cs b/Content.Client/CloningConsole/UI/CloningConsoleBoundUserInterface.cs index 26f0994701e..62a02f37186 100644 --- a/Content.Client/CloningConsole/UI/CloningConsoleBoundUserInterface.cs +++ b/Content.Client/CloningConsole/UI/CloningConsoleBoundUserInterface.cs @@ -1,6 +1,7 @@ using JetBrains.Annotations; using Robust.Client.GameObjects; using Content.Shared.Cloning.CloningConsole; +using Robust.Client.UserInterface; namespace Content.Client.CloningConsole.UI { @@ -17,13 +18,11 @@ public CloningConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owne protected override void Open() { base.Open(); - _window = new CloningConsoleWindow - { - Title = Loc.GetString("cloning-console-window-title") - }; - _window.OnClose += Close; + + _window = this.CreateWindow(); + _window.Title = Loc.GetString("cloning-console-window-title"); + _window.CloneButton.OnPressed += _ => SendMessage(new UiButtonPressedMessage(UiButton.Clone)); - _window.OpenCentered(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -32,19 +31,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.Populate((CloningConsoleBoundUserInterfaceState) state); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - if (_window != null) - { - _window.OnClose -= Close; - _window.CloneButton.OnPressed -= _ => SendMessage(new UiButtonPressedMessage(UiButton.Clone)); - } - _window?.Dispose(); - } } } diff --git a/Content.Client/Clothing/UI/ChameleonBoundUserInterface.cs b/Content.Client/Clothing/UI/ChameleonBoundUserInterface.cs index 5b0d5fcf21f..83f6ba15662 100644 --- a/Content.Client/Clothing/UI/ChameleonBoundUserInterface.cs +++ b/Content.Client/Clothing/UI/ChameleonBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Clothing.Components; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Clothing.UI; @@ -22,10 +23,8 @@ protected override void Open() { base.Open(); - _menu = new ChameleonMenu(); - _menu.OnClose += Close; + _menu = this.CreateWindow(); _menu.OnIdSelected += OnIdSelected; - _menu.OpenCentered(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -42,15 +41,4 @@ private void OnIdSelected(string selectedId) { SendMessage(new ChameleonPrototypeSelectedMessage(selectedId)); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _menu?.Close(); - _menu = null; - } - } } diff --git a/Content.Client/Communications/UI/CommunicationsConsoleBoundUserInterface.cs b/Content.Client/Communications/UI/CommunicationsConsoleBoundUserInterface.cs index 1c94d32bf8d..0310e91eeb0 100644 --- a/Content.Client/Communications/UI/CommunicationsConsoleBoundUserInterface.cs +++ b/Content.Client/Communications/UI/CommunicationsConsoleBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.CCVar; using Content.Shared.Chat; using Content.Shared.Communications; +using Robust.Client.UserInterface; using Robust.Shared.Configuration; using Robust.Shared.Timing; @@ -8,34 +9,11 @@ namespace Content.Client.Communications.UI { public sealed class CommunicationsConsoleBoundUserInterface : BoundUserInterface { - [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; [ViewVariables] private CommunicationsConsoleMenu? _menu; - [ViewVariables] - public bool CanAnnounce { get; private set; } - [ViewVariables] - public bool CanBroadcast { get; private set; } - - [ViewVariables] - public bool CanCall { get; private set; } - - [ViewVariables] - public bool CountdownStarted { get; private set; } - - [ViewVariables] - public bool AlertLevelSelectable { get; private set; } - - [ViewVariables] - public string CurrentLevel { get; private set; } = default!; - - [ViewVariables] - private TimeSpan? _expectedCountdownTime; - - public int Countdown => _expectedCountdownTime == null ? 0 : Math.Max((int) _expectedCountdownTime.Value.Subtract(_gameTiming.CurTime).TotalSeconds, 0); - public CommunicationsConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } @@ -44,23 +22,25 @@ protected override void Open() { base.Open(); - _menu = new CommunicationsConsoleMenu(this); - _menu.OnClose += Close; - _menu.OpenCentered(); + _menu = this.CreateWindow(); + _menu.OnAnnounce += AnnounceButtonPressed; + _menu.OnBroadcast += BroadcastButtonPressed; + _menu.OnAlertLevel += AlertLevelSelected; + _menu.OnEmergencyLevel += EmergencyShuttleButtonPressed; } public void AlertLevelSelected(string level) { - if (AlertLevelSelectable) + if (_menu!.AlertLevelSelectable) { - CurrentLevel = level; + _menu.CurrentLevel = level; SendMessage(new CommunicationsConsoleSelectAlertLevelMessage(level)); } } public void EmergencyShuttleButtonPressed() { - if (CountdownStarted) + if (_menu!.CountdownStarted) RecallShuttle(); else CallShuttle(); @@ -95,31 +75,23 @@ protected override void UpdateState(BoundUserInterfaceState state) if (state is not CommunicationsConsoleInterfaceState commsState) return; - CanAnnounce = commsState.CanAnnounce; - CanBroadcast = commsState.CanBroadcast; - CanCall = commsState.CanCall; - _expectedCountdownTime = commsState.ExpectedCountdownEnd; - CountdownStarted = commsState.CountdownStarted; - AlertLevelSelectable = commsState.AlertLevels != null && !float.IsNaN(commsState.CurrentAlertDelay) && commsState.CurrentAlertDelay <= 0; - CurrentLevel = commsState.CurrentAlert; - if (_menu != null) { + _menu.CanAnnounce = commsState.CanAnnounce; + _menu.CanBroadcast = commsState.CanBroadcast; + _menu.CanCall = commsState.CanCall; + _menu.CountdownStarted = commsState.CountdownStarted; + _menu.AlertLevelSelectable = commsState.AlertLevels != null && !float.IsNaN(commsState.CurrentAlertDelay) && commsState.CurrentAlertDelay <= 0; + _menu.CurrentLevel = commsState.CurrentAlert; + _menu.CountdownEnd = commsState.ExpectedCountdownEnd; + _menu.UpdateCountdown(); - _menu.UpdateAlertLevels(commsState.AlertLevels, CurrentLevel); - _menu.AlertLevelButton.Disabled = !AlertLevelSelectable; - _menu.EmergencyShuttleButton.Disabled = !CanCall; - _menu.AnnounceButton.Disabled = !CanAnnounce; - _menu.BroadcastButton.Disabled = !CanBroadcast; + _menu.UpdateAlertLevels(commsState.AlertLevels, _menu.CurrentLevel); + _menu.AlertLevelButton.Disabled = !_menu.AlertLevelSelectable; + _menu.EmergencyShuttleButton.Disabled = !_menu.CanCall; + _menu.AnnounceButton.Disabled = !_menu.CanAnnounce; + _menu.BroadcastButton.Disabled = !_menu.CanBroadcast; } } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - - _menu?.Dispose(); - } } } diff --git a/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml.cs b/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml.cs index bbca06f5194..63868e7a93e 100644 --- a/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml.cs +++ b/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml.cs @@ -1,31 +1,40 @@ -using Content.Client.UserInterface.Controls; -using System.Threading; +using System.Globalization; +using Content.Client.UserInterface.Controls; using Content.Shared.CCVar; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.XAML; using Robust.Shared.Configuration; +using Robust.Shared.Timing; using Robust.Shared.Utility; -using Timer = Robust.Shared.Timing.Timer; namespace Content.Client.Communications.UI { [GenerateTypedNameReferences] public sealed partial class CommunicationsConsoleMenu : FancyWindow { - private CommunicationsConsoleBoundUserInterface Owner { get; set; } - private readonly CancellationTokenSource _timerCancelTokenSource = new(); - [Dependency] private readonly IConfigurationManager _cfg = default!; - - public CommunicationsConsoleMenu(CommunicationsConsoleBoundUserInterface owner) + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly ILocalizationManager _loc = default!; + + public bool CanAnnounce; + public bool CanBroadcast; + public bool CanCall; + public bool AlertLevelSelectable; + public bool CountdownStarted; + public string CurrentLevel = string.Empty; + public TimeSpan? CountdownEnd; + + public event Action? OnEmergencyLevel; + public event Action? OnAlertLevel; + public event Action? OnAnnounce; + public event Action? OnBroadcast; + + public CommunicationsConsoleMenu() { IoCManager.InjectDependencies(this); RobustXamlLoader.Load(this); - Owner = owner; - - var loc = IoCManager.Resolve(); - MessageInput.Placeholder = new Rope.Leaf(loc.GetString("comms-console-menu-announcement-placeholder")); + MessageInput.Placeholder = new Rope.Leaf(_loc.GetString("comms-console-menu-announcement-placeholder")); var maxAnnounceLength = _cfg.GetCVar(CCVars.ChatMaxAnnouncementLength); MessageInput.OnTextChanged += (args) => @@ -37,33 +46,38 @@ public CommunicationsConsoleMenu(CommunicationsConsoleBoundUserInterface owner) } else { - AnnounceButton.Disabled = !owner.CanAnnounce; + AnnounceButton.Disabled = !CanAnnounce; AnnounceButton.ToolTip = null; } }; - AnnounceButton.OnPressed += (_) => Owner.AnnounceButtonPressed(Rope.Collapse(MessageInput.TextRope)); - AnnounceButton.Disabled = !owner.CanAnnounce; + AnnounceButton.OnPressed += _ => OnAnnounce?.Invoke(Rope.Collapse(MessageInput.TextRope)); + AnnounceButton.Disabled = !CanAnnounce; - BroadcastButton.OnPressed += (_) => Owner.BroadcastButtonPressed(Rope.Collapse(MessageInput.TextRope)); - BroadcastButton.Disabled = !owner.CanBroadcast; + BroadcastButton.OnPressed += _ => OnBroadcast?.Invoke(Rope.Collapse(MessageInput.TextRope)); + BroadcastButton.Disabled = !CanBroadcast; AlertLevelButton.OnItemSelected += args => { var metadata = AlertLevelButton.GetItemMetadata(args.Id); if (metadata != null && metadata is string cast) { - Owner.AlertLevelSelected(cast); + OnAlertLevel?.Invoke(cast); } }; - AlertLevelButton.Disabled = !owner.AlertLevelSelectable; - EmergencyShuttleButton.OnPressed += (_) => Owner.EmergencyShuttleButtonPressed(); - EmergencyShuttleButton.Disabled = !owner.CanCall; + AlertLevelButton.Disabled = !AlertLevelSelectable; + + EmergencyShuttleButton.OnPressed += _ => OnEmergencyLevel?.Invoke(); + EmergencyShuttleButton.Disabled = !CanCall; + } + + protected override void FrameUpdate(FrameEventArgs args) + { + base.FrameUpdate(args); UpdateCountdown(); - Timer.SpawnRepeating(1000, UpdateCountdown, _timerCancelTokenSource.Token); } // The current alert could make levels unselectable, so we need to ensure that the UI reacts properly. @@ -105,32 +119,19 @@ public void UpdateAlertLevels(List? alerts, string currentAlert) public void UpdateCountdown() { - if (!Owner.CountdownStarted) + if (!CountdownStarted) { - CountdownLabel.SetMessage(""); + CountdownLabel.SetMessage(string.Empty); EmergencyShuttleButton.Text = Loc.GetString("comms-console-menu-call-shuttle"); return; } + var diff = MathHelper.Max((CountdownEnd - _timing.CurTime) ?? TimeSpan.Zero, TimeSpan.Zero); + EmergencyShuttleButton.Text = Loc.GetString("comms-console-menu-recall-shuttle"); var infoText = Loc.GetString($"comms-console-menu-time-remaining", - ("time", Owner.Countdown.ToString())); + ("time", diff.TotalSeconds.ToString(CultureInfo.CurrentCulture))); CountdownLabel.SetMessage(infoText); } - - public override void Close() - { - base.Close(); - - _timerCancelTokenSource.Cancel(); - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - _timerCancelTokenSource.Cancel(); - } } } diff --git a/Content.Client/Computer/ComputerBoundUserInterface.cs b/Content.Client/Computer/ComputerBoundUserInterface.cs index bdbfe03fa10..11c26b252e9 100644 --- a/Content.Client/Computer/ComputerBoundUserInterface.cs +++ b/Content.Client/Computer/ComputerBoundUserInterface.cs @@ -1,4 +1,5 @@ using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.CustomControls; namespace Content.Client.Computer @@ -19,10 +20,8 @@ protected override void Open() { base.Open(); - _window = (TWindow) _dynamicTypeFactory.CreateInstance(typeof(TWindow)); + _window = this.CreateWindow(); _window.SetupComputerWindow(this); - _window.OnClose += Close; - _window.OpenCentered(); } // Alas, this constructor has to be copied to the subclass. :( @@ -42,16 +41,6 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.UpdateState((TState) state); } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _window?.Dispose(); - } - } - protected override void ReceiveMessage(BoundUserInterfaceMessage message) { _window?.ReceiveMessage(message); diff --git a/Content.Client/Configurable/UI/ConfigurationBoundUserInterface.cs b/Content.Client/Configurable/UI/ConfigurationBoundUserInterface.cs index 4fea44f2253..e4966f1ec43 100644 --- a/Content.Client/Configurable/UI/ConfigurationBoundUserInterface.cs +++ b/Content.Client/Configurable/UI/ConfigurationBoundUserInterface.cs @@ -1,5 +1,6 @@ using System.Text.RegularExpressions; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using static Content.Shared.Configurable.ConfigurationComponent; namespace Content.Client.Configurable.UI @@ -9,9 +10,6 @@ public sealed class ConfigurationBoundUserInterface : BoundUserInterface [ViewVariables] private ConfigurationMenu? _menu; - [ViewVariables] - public Regex? Validation { get; internal set; } - public ConfigurationBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } @@ -19,10 +17,8 @@ public ConfigurationBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner protected override void Open() { base.Open(); - _menu = new ConfigurationMenu(this); - - _menu.OnClose += Close; - _menu.OpenCentered(); + _menu = this.CreateWindow(); + _menu.OnConfiguration += SendConfiguration; } protected override void UpdateState(BoundUserInterfaceState state) @@ -30,9 +26,7 @@ protected override void UpdateState(BoundUserInterfaceState state) base.UpdateState(state); if (state is not ConfigurationBoundUserInterfaceState configurationState) - { return; - } _menu?.Populate(configurationState); } @@ -41,9 +35,12 @@ protected override void ReceiveMessage(BoundUserInterfaceMessage message) { base.ReceiveMessage(message); + if (_menu == null) + return; + if (message is ValidationUpdateMessage msg) { - Validation = new Regex(msg.ValidationString, RegexOptions.Compiled); + _menu.Validation = new Regex(msg.ValidationString, RegexOptions.Compiled); } } @@ -51,16 +48,5 @@ public void SendConfiguration(Dictionary config) { SendMessage(new ConfigurationUpdatedMessage(config)); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing && _menu != null) - { - _menu.OnClose -= Close; - _menu.Close(); - } - } } } diff --git a/Content.Client/Configurable/UI/ConfigurationMenu.cs b/Content.Client/Configurable/UI/ConfigurationMenu.cs index cc24af28692..29217eef7be 100644 --- a/Content.Client/Configurable/UI/ConfigurationMenu.cs +++ b/Content.Client/Configurable/UI/ConfigurationMenu.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using System.Numerics; +using System.Text.RegularExpressions; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; @@ -13,23 +14,25 @@ namespace Content.Client.Configurable.UI { public sealed class ConfigurationMenu : DefaultWindow { - public ConfigurationBoundUserInterface Owner { get; } - private readonly BoxContainer _column; private readonly BoxContainer _row; private readonly List<(string name, LineEdit input)> _inputs; - public ConfigurationMenu(ConfigurationBoundUserInterface owner) + [ViewVariables] + public Regex? Validation { get; internal set; } + + public event Action>? OnConfiguration; + + public ConfigurationMenu() { MinSize = SetSize = new Vector2(300, 250); - Owner = owner; _inputs = new List<(string name, LineEdit input)>(); Title = Loc.GetString("configuration-menu-device-title"); - BoxContainer baseContainer = new BoxContainer + var baseContainer = new BoxContainer { Orientation = LayoutOrientation.Vertical, VerticalExpand = true, @@ -116,14 +119,13 @@ public void Populate(ConfigurationBoundUserInterfaceState state) private void OnConfirm(ButtonEventArgs args) { var config = GenerateDictionary(_inputs, "Text"); - - Owner.SendConfiguration(config); + OnConfiguration?.Invoke(config); Close(); } private bool Validate(string value) { - return Owner.Validation == null || Owner.Validation.IsMatch(value); + return Validation?.IsMatch(value) != false; } private Dictionary GenerateDictionary(IEnumerable<(string name, LineEdit input)> inputs, string propertyName) diff --git a/Content.Client/Construction/ConstructionSystem.cs b/Content.Client/Construction/ConstructionSystem.cs index 889c992f7f6..f909b23423d 100644 --- a/Content.Client/Construction/ConstructionSystem.cs +++ b/Content.Client/Construction/ConstructionSystem.cs @@ -26,7 +26,6 @@ public sealed class ConstructionSystem : SharedConstructionSystem { [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; [Dependency] private readonly ExamineSystemShared _examineSystem = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; diff --git a/Content.Client/Construction/UI/FlatpackCreatorBoundUserInterface.cs b/Content.Client/Construction/UI/FlatpackCreatorBoundUserInterface.cs index 86f1b8b83c7..887492955e9 100644 --- a/Content.Client/Construction/UI/FlatpackCreatorBoundUserInterface.cs +++ b/Content.Client/Construction/UI/FlatpackCreatorBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.Construction.Components; using JetBrains.Annotations; +using Robust.Client.UserInterface; namespace Content.Client.Construction.UI { @@ -17,8 +18,8 @@ protected override void Open() { base.Open(); - _menu = new FlatpackCreatorMenu(Owner); - _menu.OnClose += Close; + _menu = this.CreateWindow(); + _menu.SetEntity(Owner); _menu.PackButtonPressed += () => { @@ -27,14 +28,5 @@ protected override void Open() _menu.OpenCentered(); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _menu?.Dispose(); - } } } diff --git a/Content.Client/Construction/UI/FlatpackCreatorMenu.xaml.cs b/Content.Client/Construction/UI/FlatpackCreatorMenu.xaml.cs index 9f3d5695bb6..269694ebf9e 100644 --- a/Content.Client/Construction/UI/FlatpackCreatorMenu.xaml.cs +++ b/Content.Client/Construction/UI/FlatpackCreatorMenu.xaml.cs @@ -24,7 +24,7 @@ public sealed partial class FlatpackCreatorMenu : FancyWindow private readonly FlatpackSystem _flatpack; private readonly MaterialStorageSystem _materialStorage; - private readonly EntityUid _owner; + private EntityUid _owner; [ValidatePrototypeId] public const string NoBoardEffectId = "FlatpackerNoBoardEffect"; @@ -33,7 +33,7 @@ public sealed partial class FlatpackCreatorMenu : FancyWindow public event Action? PackButtonPressed; - public FlatpackCreatorMenu(EntityUid uid) + public FlatpackCreatorMenu() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); @@ -42,14 +42,17 @@ public FlatpackCreatorMenu(EntityUid uid) _flatpack = _entityManager.System(); _materialStorage = _entityManager.System(); - _owner = uid; - PackButton.OnPressed += _ => PackButtonPressed?.Invoke(); - MaterialStorageControl.SetOwner(uid); InsertLabel.SetMarkup(Loc.GetString("flatpacker-ui-insert-board")); } + public void SetEntity(EntityUid uid) + { + _owner = uid; + MaterialStorageControl.SetOwner(uid); + } + protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); diff --git a/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs b/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs index e2c4d51ecd1..e5be0b1811f 100644 --- a/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs +++ b/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs @@ -2,12 +2,15 @@ using Content.Shared.Crayon; using Content.Shared.Decals; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.Prototypes; namespace Content.Client.Crayon.UI { public sealed class CrayonBoundUserInterface : BoundUserInterface { + [Dependency] private readonly IPrototypeManager _protoManager = default!; + [ViewVariables] private CrayonWindow? _menu; @@ -18,15 +21,29 @@ public CrayonBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey protected override void Open() { base.Open(); - _menu = new CrayonWindow(this); - - _menu.OnClose += Close; - var prototypeManager = IoCManager.Resolve(); - var crayonDecals = prototypeManager.EnumeratePrototypes().Where(x => x.Tags.Contains("crayon")); - _menu.Populate(crayonDecals); + _menu = this.CreateWindow(); + _menu.OnColorSelected += SelectColor; + _menu.OnSelected += Select; + PopulateCrayons(); _menu.OpenCenteredLeft(); } + private void PopulateCrayons() + { + var crayonDecals = _protoManager.EnumeratePrototypes().Where(x => x.Tags.Contains("crayon")); + _menu?.Populate(crayonDecals); + } + + public override void OnProtoReload(PrototypesReloadedEventArgs args) + { + base.OnProtoReload(args); + + if (!args.WasModified()) + return; + + PopulateCrayons(); + } + protected override void UpdateState(BoundUserInterfaceState state) { base.UpdateState(state); @@ -43,16 +60,5 @@ public void SelectColor(Color color) { SendMessage(new CrayonColorMessage(color)); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _menu?.Close(); - _menu = null; - } - } } } diff --git a/Content.Client/Crayon/UI/CrayonWindow.xaml.cs b/Content.Client/Crayon/UI/CrayonWindow.xaml.cs index 2a5801ccf2d..b97786cd41a 100644 --- a/Content.Client/Crayon/UI/CrayonWindow.xaml.cs +++ b/Content.Client/Crayon/UI/CrayonWindow.xaml.cs @@ -18,18 +18,17 @@ namespace Content.Client.Crayon.UI [GenerateTypedNameReferences] public sealed partial class CrayonWindow : DefaultWindow { - public CrayonBoundUserInterface Owner { get; } - private Dictionary? _decals; private string? _selected; private Color _color; - public CrayonWindow(CrayonBoundUserInterface owner) + public event Action? OnColorSelected; + public event Action? OnSelected; + + public CrayonWindow() { RobustXamlLoader.Load(this); - Owner = owner; - Search.OnTextChanged += _ => RefreshList(); ColorSelector.OnColorChanged += SelectColor; } @@ -38,16 +37,16 @@ private void SelectColor(Color color) { _color = color; - Owner.SelectColor(color); - + OnColorSelected?.Invoke(color); RefreshList(); } private void RefreshList() { // Clear - Grid.RemoveAllChildren(); - if (_decals == null) return; + Grid.DisposeAllChildren(); + if (_decals == null) + return; var filter = Search.Text; foreach (var (decal, tex) in _decals) @@ -89,7 +88,6 @@ private void ButtonOnPressed(ButtonEventArgs obj) { if (obj.Button.Name == null) return; - Owner.Select(obj.Button.Name); _selected = obj.Button.Name; RefreshList(); } diff --git a/Content.Client/Disposal/UI/DisposalRouterBoundUserInterface.cs b/Content.Client/Disposal/UI/DisposalRouterBoundUserInterface.cs index e8e77217ea5..296e71d3a95 100644 --- a/Content.Client/Disposal/UI/DisposalRouterBoundUserInterface.cs +++ b/Content.Client/Disposal/UI/DisposalRouterBoundUserInterface.cs @@ -1,5 +1,6 @@ using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using static Content.Shared.Disposal.Components.SharedDisposalRouterComponent; namespace Content.Client.Disposal.UI @@ -21,20 +22,16 @@ protected override void Open() { base.Open(); - _window = new DisposalRouterWindow(); - - _window.OpenCentered(); - _window.OnClose += Close; + _window = this.CreateWindow(); _window.Confirm.OnPressed += _ => ButtonPressed(UiAction.Ok, _window.TagInput.Text); _window.TagInput.OnTextEntered += args => ButtonPressed(UiAction.Ok, args.Text); - } private void ButtonPressed(UiAction action, string tag) { SendMessage(new UiActionMessage(action, tag)); - _window?.Close(); + Close(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -48,18 +45,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.UpdateState(cast); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _window?.Dispose(); - } - } - - } - } diff --git a/Content.Client/Disposal/UI/DisposalTaggerBoundUserInterface.cs b/Content.Client/Disposal/UI/DisposalTaggerBoundUserInterface.cs index 3aeed8dc802..7fc0eb85401 100644 --- a/Content.Client/Disposal/UI/DisposalTaggerBoundUserInterface.cs +++ b/Content.Client/Disposal/UI/DisposalTaggerBoundUserInterface.cs @@ -1,5 +1,6 @@ using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using static Content.Shared.Disposal.Components.SharedDisposalTaggerComponent; namespace Content.Client.Disposal.UI @@ -21,20 +22,17 @@ protected override void Open() { base.Open(); - _window = new DisposalTaggerWindow(); - - _window.OpenCentered(); - _window.OnClose += Close; + _window = this.CreateWindow(); _window.Confirm.OnPressed += _ => ButtonPressed(UiAction.Ok, _window.TagInput.Text); _window.TagInput.OnTextEntered += args => ButtonPressed(UiAction.Ok, args.Text); - } private void ButtonPressed(UiAction action, string tag) { + // TODO: This looks copy-pasted with the other mailing stuff... SendMessage(new UiActionMessage(action, tag)); - _window?.Close(); + Close(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -48,18 +46,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.UpdateState(cast); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _window?.Dispose(); - } - } - - } - } diff --git a/Content.Client/Disposal/UI/MailingUnitWindow.xaml.cs b/Content.Client/Disposal/UI/MailingUnitWindow.xaml.cs index 797e20ae7d2..489d749a0cf 100644 --- a/Content.Client/Disposal/UI/MailingUnitWindow.xaml.cs +++ b/Content.Client/Disposal/UI/MailingUnitWindow.xaml.cs @@ -2,6 +2,7 @@ using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Timing; namespace Content.Client.Disposal.UI { @@ -11,6 +12,8 @@ namespace Content.Client.Disposal.UI [GenerateTypedNameReferences] public sealed partial class MailingUnitWindow : DefaultWindow { + public TimeSpan FullPressure; + public MailingUnitWindow() { RobustXamlLoader.Load(this); @@ -26,6 +29,7 @@ public bool UpdateState(MailingUnitBoundUserInterfaceState state) Title = Loc.GetString("ui-mailing-unit-window-title", ("tag", state.Tag ?? " ")); UnitState.Text = disposalState.UnitState; + FullPressure = disposalState.FullPressureTime; var pressureReached = PressureBar.UpdatePressure(disposalState.FullPressureTime); Power.Pressed = disposalState.Powered; Engage.Pressed = disposalState.Engaged; @@ -42,9 +46,10 @@ public bool UpdateState(MailingUnitBoundUserInterfaceState state) return !disposalState.Powered || pressureReached; } - public bool UpdatePressure(TimeSpan stateFullPressureTime) + protected override void FrameUpdate(FrameEventArgs args) { - return PressureBar.UpdatePressure(stateFullPressureTime); + base.FrameUpdate(args); + PressureBar.UpdatePressure(FullPressure); } } } diff --git a/Content.Client/Doors/Electronics/DoorElectronicsBoundUserInterface.cs b/Content.Client/Doors/Electronics/DoorElectronicsBoundUserInterface.cs index cd7ea717ce3..9b7e23c03aa 100644 --- a/Content.Client/Doors/Electronics/DoorElectronicsBoundUserInterface.cs +++ b/Content.Client/Doors/Electronics/DoorElectronicsBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Access; using Content.Shared.Doors.Electronics; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.Prototypes; namespace Content.Client.Doors.Electronics; @@ -18,6 +19,23 @@ public DoorElectronicsBoundUserInterface(EntityUid owner, Enum uiKey) : base(own protected override void Open() { base.Open(); + _window = this.CreateWindow(); + _window.OnAccessChanged += UpdateConfiguration; + Reset(); + } + + public override void OnProtoReload(PrototypesReloadedEventArgs args) + { + base.OnProtoReload(args); + + if (!args.WasModified()) + return; + + Reset(); + } + + private void Reset() + { List> accessLevels = new(); foreach (var accessLevel in _prototypeManager.EnumeratePrototypes()) @@ -29,10 +47,7 @@ protected override void Open() } accessLevels.Sort(); - - _window = new DoorElectronicsConfigurationMenu(this, accessLevels, _prototypeManager); - _window.OnClose += Close; - _window.OpenCentered(); + _window?.Reset(_prototypeManager, accessLevels); } protected override void UpdateState(BoundUserInterfaceState state) @@ -44,14 +59,6 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.UpdateState(castState); } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - - _window?.Dispose(); - } - public void UpdateConfiguration(List> newAccessList) { SendMessage(new DoorElectronicsUpdateConfigurationMessage(newAccessList)); diff --git a/Content.Client/Doors/Electronics/DoorElectronicsConfigurationMenu.xaml.cs b/Content.Client/Doors/Electronics/DoorElectronicsConfigurationMenu.xaml.cs index c01f13a462e..2112a562971 100644 --- a/Content.Client/Doors/Electronics/DoorElectronicsConfigurationMenu.xaml.cs +++ b/Content.Client/Doors/Electronics/DoorElectronicsConfigurationMenu.xaml.cs @@ -15,22 +15,23 @@ namespace Content.Client.Doors.Electronics; [GenerateTypedNameReferences] public sealed partial class DoorElectronicsConfigurationMenu : FancyWindow { - private readonly DoorElectronicsBoundUserInterface _owner; - private AccessLevelControl _buttonsList = new(); + private readonly AccessLevelControl _buttonsList = new(); - public DoorElectronicsConfigurationMenu(DoorElectronicsBoundUserInterface ui, List> accessLevels, IPrototypeManager prototypeManager) + public event Action>>? OnAccessChanged; + + public DoorElectronicsConfigurationMenu() { RobustXamlLoader.Load(this); - - _owner = ui; - - _buttonsList.Populate(accessLevels, prototypeManager); AccessLevelControlContainer.AddChild(_buttonsList); + } + + public void Reset(IPrototypeManager protoManager, List> accessLevels) + { + _buttonsList.Populate(accessLevels, protoManager); - foreach (var (id, button) in _buttonsList.ButtonsList) + foreach (var button in _buttonsList.ButtonsList.Values) { - button.OnPressed += _ => _owner.UpdateConfiguration( - _buttonsList.ButtonsList.Where(x => x.Value.Pressed).Select(x => x.Key).ToList()); + button.OnPressed += _ => OnAccessChanged?.Invoke(_buttonsList.ButtonsList.Where(x => x.Value.Pressed).Select(x => x.Key).ToList()); } } diff --git a/Content.Client/Fax/System/FaxVisualsSystem.cs b/Content.Client/Fax/System/FaxVisualsSystem.cs index 892aec1d954..e752fbf48e6 100644 --- a/Content.Client/Fax/System/FaxVisualsSystem.cs +++ b/Content.Client/Fax/System/FaxVisualsSystem.cs @@ -25,24 +25,30 @@ private void OnAppearanceChanged(EntityUid uid, FaxMachineComponent component, r if (args.Sprite == null) return; - if (_appearance.TryGetData(uid, FaxMachineVisuals.VisualState, out FaxMachineVisualState visuals) && visuals == FaxMachineVisualState.Inserting) + if (_player.HasRunningAnimation(uid, "faxecute")) + return; + + if (_appearance.TryGetData(uid, FaxMachineVisuals.VisualState, out FaxMachineVisualState visuals) && + visuals == FaxMachineVisualState.Inserting) { - _player.Play(uid, new Animation() - { - Length = TimeSpan.FromSeconds(2.4), - AnimationTracks = + _player.Play(uid, + new Animation() { - new AnimationTrackSpriteFlick() + Length = TimeSpan.FromSeconds(2.4), + AnimationTracks = { - LayerKey = FaxMachineVisuals.VisualState, - KeyFrames = + new AnimationTrackSpriteFlick() { - new AnimationTrackSpriteFlick.KeyFrame(component.InsertingState, 0f), - new AnimationTrackSpriteFlick.KeyFrame("icon", 2.4f), - } - } - } - }, "faxecute"); + LayerKey = FaxMachineVisuals.VisualState, + KeyFrames = + { + new AnimationTrackSpriteFlick.KeyFrame(component.InsertingState, 0f), + new AnimationTrackSpriteFlick.KeyFrame("icon", 2.4f), + }, + }, + }, + }, + "faxecute"); } } } diff --git a/Content.Client/Fax/UI/FaxBoundUi.cs b/Content.Client/Fax/UI/FaxBoundUi.cs index a95066a3b58..ca2e834b4fe 100644 --- a/Content.Client/Fax/UI/FaxBoundUi.cs +++ b/Content.Client/Fax/UI/FaxBoundUi.cs @@ -25,10 +25,7 @@ protected override void Open() { base.Open(); - _window = new FaxWindow(); - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.FileButtonPressed += OnFileButtonPressed; _window.CopyButtonPressed += OnCopyButtonPressed; _window.SendButtonPressed += OnSendButtonPressed; @@ -104,11 +101,4 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.UpdateState(cast); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (disposing) - _window?.Dispose(); - } } diff --git a/Content.Client/Forensics/ForensicScannerBoundUserInterface.cs b/Content.Client/Forensics/ForensicScannerBoundUserInterface.cs index ba49f11ea0f..08596b04e6e 100644 --- a/Content.Client/Forensics/ForensicScannerBoundUserInterface.cs +++ b/Content.Client/Forensics/ForensicScannerBoundUserInterface.cs @@ -1,6 +1,7 @@ using Robust.Client.GameObjects; using Robust.Shared.Timing; using Content.Shared.Forensics; +using Robust.Client.UserInterface; namespace Content.Client.Forensics { @@ -21,11 +22,9 @@ public ForensicScannerBoundUserInterface(EntityUid owner, Enum uiKey) : base(own protected override void Open() { base.Open(); - _window = new ForensicScannerMenu(); - _window.OnClose += Close; + _window = this.CreateWindow(); _window.Print.OnPressed += _ => Print(); _window.Clear.OnPressed += _ => Clear(); - _window.OpenCentered(); } private void Print() @@ -62,6 +61,7 @@ protected override void UpdateState(BoundUserInterfaceState state) _printCooldown = cast.PrintCooldown; + // TODO: Fix this if (cast.PrintReadyAt > _gameTiming.CurTime) Timer.Spawn(cast.PrintReadyAt - _gameTiming.CurTime, () => { @@ -71,14 +71,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.UpdateState(cast); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _window?.Dispose(); - } } } diff --git a/Content.Client/Gameplay/GameplayStateBase.cs b/Content.Client/Gameplay/GameplayStateBase.cs index 63cbfdb09c6..0a695b2c01e 100644 --- a/Content.Client/Gameplay/GameplayStateBase.cs +++ b/Content.Client/Gameplay/GameplayStateBase.cs @@ -185,7 +185,7 @@ protected virtual void OnKeyBindStateChanged(ViewportBoundKeyEventArgs args) EntityCoordinates coordinates = default; EntityUid? entityToClick = null; - if (args.Viewport is IViewportControl vp) + if (args.Viewport is IViewportControl vp && kArgs.PointerLocation.IsValid) { var mousePosWorld = vp.PixelToMap(kArgs.PointerLocation.Position); entityToClick = GetClickedEntity(mousePosWorld); @@ -194,6 +194,10 @@ protected virtual void OnKeyBindStateChanged(ViewportBoundKeyEventArgs args) grid.MapToGrid(mousePosWorld) : EntityCoordinates.FromMap(_mapManager, mousePosWorld); } + else + { + coordinates = EntityCoordinates.Invalid; + } var message = new ClientFullInputCmdMessage(_timing.CurTick, _timing.TickFraction, funcId) { diff --git a/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs b/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs index fdb3cdbc010..457b70ca7ca 100644 --- a/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs +++ b/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Gateway; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Gateway.UI; @@ -17,24 +18,13 @@ protected override void Open() { base.Open(); - _window = new GatewayWindow(EntMan.GetNetEntity(Owner)); + _window = this.CreateWindow(); + _window.SetEntity(EntMan.GetNetEntity(Owner)); _window.OpenPortal += destination => { SendMessage(new GatewayOpenPortalMessage(destination)); }; - _window.OnClose += Close; - _window?.OpenCentered(); - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (disposing) - { - _window?.Dispose(); - _window = null; - } } protected override void UpdateState(BoundUserInterfaceState state) diff --git a/Content.Client/Gateway/UI/GatewayWindow.xaml.cs b/Content.Client/Gateway/UI/GatewayWindow.xaml.cs index 889dd6e1759..1c779b2b350 100644 --- a/Content.Client/Gateway/UI/GatewayWindow.xaml.cs +++ b/Content.Client/Gateway/UI/GatewayWindow.xaml.cs @@ -22,7 +22,7 @@ public sealed partial class GatewayWindow : FancyWindow, public event Action? OpenPortal; private List _destinations = new(); - public readonly NetEntity Owner; + public NetEntity Owner; private NetEntity? _current; private TimeSpan _nextReady; @@ -46,16 +46,20 @@ public sealed partial class GatewayWindow : FancyWindow, /// private bool _isCooldownPending = true; - public GatewayWindow(NetEntity netEntity) + public GatewayWindow() { RobustXamlLoader.Load(this); var dependencies = IoCManager.Instance!; _timing = dependencies.Resolve(); - Owner = netEntity; NextUnlockBar.ForegroundStyleBoxOverride = new StyleBoxFlat(Color.FromHex("#C74EBD")); } + public void SetEntity(NetEntity entity) + { + + } + public void UpdateState(GatewayBoundUserInterfaceState state) { _destinations = state.Destinations; diff --git a/Content.Client/Ghost/GhostRoleRadioBoundUserInterface.cs b/Content.Client/Ghost/GhostRoleRadioBoundUserInterface.cs new file mode 100644 index 00000000000..33944973b51 --- /dev/null +++ b/Content.Client/Ghost/GhostRoleRadioBoundUserInterface.cs @@ -0,0 +1,29 @@ +using Content.Shared.Ghost.Roles; +using Robust.Client.UserInterface; +using Robust.Shared.Prototypes; + +namespace Content.Client.Ghost; + +public sealed class GhostRoleRadioBoundUserInterface : BoundUserInterface +{ + private GhostRoleRadioMenu? _ghostRoleRadioMenu; + + public GhostRoleRadioBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + IoCManager.InjectDependencies(this); + } + + protected override void Open() + { + base.Open(); + + _ghostRoleRadioMenu = this.CreateWindow(); + _ghostRoleRadioMenu.SetEntity(Owner); + _ghostRoleRadioMenu.SendGhostRoleRadioMessageAction += SendGhostRoleRadioMessage; + } + + public void SendGhostRoleRadioMessage(ProtoId protoId) + { + SendMessage(new GhostRoleRadioMessage(protoId)); + } +} diff --git a/Content.Client/Ghost/GhostRoleRadioMenu.xaml b/Content.Client/Ghost/GhostRoleRadioMenu.xaml new file mode 100644 index 00000000000..c35ee128c52 --- /dev/null +++ b/Content.Client/Ghost/GhostRoleRadioMenu.xaml @@ -0,0 +1,8 @@ + + + + diff --git a/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs b/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs new file mode 100644 index 00000000000..b05ac3fbddd --- /dev/null +++ b/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs @@ -0,0 +1,107 @@ +using Content.Client.UserInterface.Controls; +using Content.Shared.Ghost.Roles; +using Content.Shared.Ghost.Roles.Components; +using Robust.Client.GameObjects; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; +using System.Numerics; + +namespace Content.Client.Ghost; + +public sealed partial class GhostRoleRadioMenu : RadialMenu +{ + [Dependency] private readonly EntityManager _entityManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + + public event Action>? SendGhostRoleRadioMessageAction; + + public EntityUid Entity { get; set; } + + public GhostRoleRadioMenu() + { + IoCManager.InjectDependencies(this); + RobustXamlLoader.Load(this); + } + + public void SetEntity(EntityUid uid) + { + Entity = uid; + RefreshUI(); + } + + private void RefreshUI() + { + // The main control that will contain all of the clickable options + var main = FindControl("Main"); + + // The purpose of this radial UI is for ghost role radios that allow you to select + // more than one potential option, such as with kobolds/lizards. + // This means that it won't show anything if SelectablePrototypes is empty. + if (!_entityManager.TryGetComponent(Entity, out var comp)) + return; + + foreach (var ghostRoleProtoString in comp.SelectablePrototypes) + { + // For each prototype we find we want to create a button that uses the name of the ghost role + // as the hover tooltip, and the icon is taken from either the ghost role entityprototype + // or the indicated icon entityprototype. + if (!_prototypeManager.TryIndex(ghostRoleProtoString, out var ghostRoleProto)) + continue; + + var button = new GhostRoleRadioMenuButton() + { + StyleClasses = { "RadialMenuButton" }, + SetSize = new Vector2(64, 64), + ToolTip = Loc.GetString(ghostRoleProto.Name), + ProtoId = ghostRoleProto.ID, + }; + + var entProtoView = new EntityPrototypeView() + { + SetSize = new Vector2(48, 48), + VerticalAlignment = VAlignment.Center, + HorizontalAlignment = HAlignment.Center, + Stretch = SpriteView.StretchMode.Fill + }; + + // pick the icon if it exists, otherwise fallback to the ghost role's entity + if (_prototypeManager.TryIndex(ghostRoleProto.IconPrototype, out var iconProto)) + entProtoView.SetPrototype(iconProto); + else + entProtoView.SetPrototype(comp.Prototype); + + button.AddChild(entProtoView); + main.AddChild(button); + AddGhostRoleRadioMenuButtonOnClickActions(main); + } + } + + private void AddGhostRoleRadioMenuButtonOnClickActions(Control control) + { + var mainControl = control as RadialContainer; + + if (mainControl == null) + return; + + foreach (var child in mainControl.Children) + { + var castChild = child as GhostRoleRadioMenuButton; + + if (castChild == null) + continue; + + castChild.OnButtonUp += _ => + { + SendGhostRoleRadioMessageAction?.Invoke(castChild.ProtoId); + Close(); + }; + } + } +} + +public sealed class GhostRoleRadioMenuButton : RadialMenuTextureButton +{ + public ProtoId ProtoId { get; set; } +} diff --git a/Content.Client/Gravity/UI/GravityGeneratorBoundUserInterface.cs b/Content.Client/Gravity/UI/GravityGeneratorBoundUserInterface.cs index d72da3e8120..32b40747d55 100644 --- a/Content.Client/Gravity/UI/GravityGeneratorBoundUserInterface.cs +++ b/Content.Client/Gravity/UI/GravityGeneratorBoundUserInterface.cs @@ -1,6 +1,6 @@ using Content.Shared.Gravity; using JetBrains.Annotations; -using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Gravity.UI { @@ -18,17 +18,8 @@ protected override void Open() { base.Open(); - _window = new GravityGeneratorWindow(this); - - /* - _window.Switch.OnPressed += _ => - { - SendMessage(new SharedGravityGeneratorComponent.SwitchGeneratorMessage(!IsOn)); - }; - */ - - _window.OpenCentered(); - _window.OnClose += Close; + _window = this.CreateWindow(); + _window.SetEntity(Owner); } protected override void UpdateState(BoundUserInterfaceState state) @@ -39,14 +30,6 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.UpdateState(castState); } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - - _window?.Dispose(); - } - public void SetPowerSwitch(bool on) { SendMessage(new SharedGravityGeneratorComponent.SwitchGeneratorMessage(on)); diff --git a/Content.Client/Gravity/UI/GravityGeneratorWindow.xaml.cs b/Content.Client/Gravity/UI/GravityGeneratorWindow.xaml.cs index 75f8eb479b5..6f04133b594 100644 --- a/Content.Client/Gravity/UI/GravityGeneratorWindow.xaml.cs +++ b/Content.Client/Gravity/UI/GravityGeneratorWindow.xaml.cs @@ -12,22 +12,23 @@ public sealed partial class GravityGeneratorWindow : FancyWindow { private readonly ButtonGroup _buttonGroup = new(); - private readonly GravityGeneratorBoundUserInterface _owner; + public event Action? OnPowerSwitch; - public GravityGeneratorWindow(GravityGeneratorBoundUserInterface owner) + public GravityGeneratorWindow() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); - _owner = owner; - OnButton.Group = _buttonGroup; OffButton.Group = _buttonGroup; - OnButton.OnPressed += _ => _owner.SetPowerSwitch(true); - OffButton.OnPressed += _ => _owner.SetPowerSwitch(false); + OnButton.OnPressed += _ => OnPowerSwitch?.Invoke(true); + OffButton.OnPressed += _ => OnPowerSwitch?.Invoke(false); + } - EntityView.SetEntity(owner.Owner); + public void SetEntity(EntityUid uid) + { + EntityView.SetEntity(uid); } public void UpdateState(SharedGravityGeneratorComponent.GeneratorState state) diff --git a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerBoundUserInterface.cs b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerBoundUserInterface.cs index dc0a3e9fccd..38760f4aa3c 100644 --- a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerBoundUserInterface.cs +++ b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerBoundUserInterface.cs @@ -1,6 +1,6 @@ using Content.Shared.MedicalScanner; using JetBrains.Annotations; -using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.HealthAnalyzer.UI { @@ -17,12 +17,9 @@ public HealthAnalyzerBoundUserInterface(EntityUid owner, Enum uiKey) : base(owne protected override void Open() { base.Open(); - _window = new HealthAnalyzerWindow - { - Title = EntMan.GetComponent(Owner).EntityName, - }; - _window.OnClose += Close; - _window.OpenCentered(); + _window = this.CreateWindow(); + + _window.Title = EntMan.GetComponent(Owner).EntityName; } protected override void ReceiveMessage(BoundUserInterfaceMessage message) @@ -35,17 +32,5 @@ protected override void ReceiveMessage(BoundUserInterfaceMessage message) _window.Populate(cast); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - if (_window != null) - _window.OnClose -= Close; - - _window?.Dispose(); - } } } diff --git a/Content.Client/Humanoid/HumanoidMarkingModifierBoundUserInterface.cs b/Content.Client/Humanoid/HumanoidMarkingModifierBoundUserInterface.cs index a8872604a4c..53977eb636b 100644 --- a/Content.Client/Humanoid/HumanoidMarkingModifierBoundUserInterface.cs +++ b/Content.Client/Humanoid/HumanoidMarkingModifierBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.Humanoid; using Content.Shared.Humanoid.Markings; +using Robust.Client.UserInterface; namespace Content.Client.Humanoid; @@ -20,8 +21,7 @@ protected override void Open() { base.Open(); - _window = new(); - _window.OnClose += Close; + _window = this.CreateWindow(); _window.OnMarkingAdded += SendMarkingSet; _window.OnMarkingRemoved += SendMarkingSet; _window.OnMarkingColorChange += SendMarkingSetNoResend; diff --git a/Content.Client/IconSmoothing/ClientRandomIconSmoothSystem.cs b/Content.Client/IconSmoothing/ClientRandomIconSmoothSystem.cs new file mode 100644 index 00000000000..73db9e1ab95 --- /dev/null +++ b/Content.Client/IconSmoothing/ClientRandomIconSmoothSystem.cs @@ -0,0 +1,29 @@ +using Content.Shared.IconSmoothing; +using Robust.Client.GameObjects; + +namespace Content.Client.IconSmoothing; + +public sealed class ClientRandomIconSmoothSystem : SharedRandomIconSmoothSystem +{ + [Dependency] private readonly IconSmoothSystem _iconSmooth = default!; + [Dependency] private readonly AppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnAppearanceChange); + } + + private void OnAppearanceChange(Entity ent, ref AppearanceChangeEvent args) + { + if (!TryComp(ent, out var smooth)) + return; + + if (!_appearance.TryGetData(ent, RandomIconSmoothState.State, out var state, args.Component)) + return; + + smooth.StateBase = state; + _iconSmooth.SetStateBase(ent, smooth, state); + } +} diff --git a/Content.Client/IconSmoothing/IconSmoothComponent.cs b/Content.Client/IconSmoothing/IconSmoothComponent.cs index 88b1f613cb7..040198529c7 100644 --- a/Content.Client/IconSmoothing/IconSmoothComponent.cs +++ b/Content.Client/IconSmoothing/IconSmoothComponent.cs @@ -30,7 +30,7 @@ public sealed partial class IconSmoothComponent : Component /// Prepended to the RSI state. /// [ViewVariables(VVAccess.ReadWrite), DataField("base")] - public string StateBase { get; private set; } = string.Empty; + public string StateBase { get; set; } = string.Empty; [DataField("shader", customTypeSerializer:typeof(PrototypeIdSerializer))] public string? Shader; diff --git a/Content.Client/IconSmoothing/IconSmoothSystem.cs b/Content.Client/IconSmoothing/IconSmoothSystem.cs index 4b025608465..11ca75bc824 100644 --- a/Content.Client/IconSmoothing/IconSmoothSystem.cs +++ b/Content.Client/IconSmoothing/IconSmoothSystem.cs @@ -55,6 +55,33 @@ private void OnStartup(EntityUid uid, IconSmoothComponent component, ComponentSt if (component.Mode != IconSmoothingMode.Corners || !TryComp(uid, out SpriteComponent? sprite)) return; + SetCornerLayers(sprite, component); + + if (component.Shader != null) + { + sprite.LayerSetShader(CornerLayers.SE, component.Shader); + sprite.LayerSetShader(CornerLayers.NE, component.Shader); + sprite.LayerSetShader(CornerLayers.NW, component.Shader); + sprite.LayerSetShader(CornerLayers.SW, component.Shader); + } + } + + public void SetStateBase(EntityUid uid, IconSmoothComponent component, string newState) + { + if (!TryComp(uid, out var sprite)) + return; + + component.StateBase = newState; + SetCornerLayers(sprite, component); + } + + private void SetCornerLayers(SpriteComponent sprite, IconSmoothComponent component) + { + sprite.LayerMapRemove(CornerLayers.SE); + sprite.LayerMapRemove(CornerLayers.NE); + sprite.LayerMapRemove(CornerLayers.NW); + sprite.LayerMapRemove(CornerLayers.SW); + var state0 = $"{component.StateBase}0"; sprite.LayerMapSet(CornerLayers.SE, sprite.AddLayerState(state0)); sprite.LayerSetDirOffset(CornerLayers.SE, DirectionOffset.None); @@ -64,14 +91,6 @@ private void OnStartup(EntityUid uid, IconSmoothComponent component, ComponentSt sprite.LayerSetDirOffset(CornerLayers.NW, DirectionOffset.Flip); sprite.LayerMapSet(CornerLayers.SW, sprite.AddLayerState(state0)); sprite.LayerSetDirOffset(CornerLayers.SW, DirectionOffset.Clockwise); - - if (component.Shader != null) - { - sprite.LayerSetShader(CornerLayers.SE, component.Shader); - sprite.LayerSetShader(CornerLayers.NE, component.Shader); - sprite.LayerSetShader(CornerLayers.NW, component.Shader); - sprite.LayerSetShader(CornerLayers.SW, component.Shader); - } } private void OnShutdown(EntityUid uid, IconSmoothComponent component, ComponentShutdown args) diff --git a/Content.Client/Instruments/UI/BandMenu.xaml.cs b/Content.Client/Instruments/UI/BandMenu.xaml.cs index 5fb293a194d..26cd1369e55 100644 --- a/Content.Client/Instruments/UI/BandMenu.xaml.cs +++ b/Content.Client/Instruments/UI/BandMenu.xaml.cs @@ -11,7 +11,9 @@ public sealed partial class BandMenu : DefaultWindow { private readonly InstrumentBoundUserInterface _owner; - public BandMenu(InstrumentBoundUserInterface owner) : base() + public EntityUid? Master; + + public BandMenu(InstrumentBoundUserInterface owner) { RobustXamlLoader.Load(this); @@ -40,7 +42,7 @@ public void Populate((NetEntity, string)[] nearby, IEntityManager entManager) { var uid = entManager.GetEntity(nent); var item = BandList.AddItem(name, null, true, uid); - item.Selected = _owner.Instrument?.Master == uid; + item.Selected = Master == uid; } } } diff --git a/Content.Client/Instruments/UI/ChannelsMenu.xaml.cs b/Content.Client/Instruments/UI/ChannelsMenu.xaml.cs index 2814d415365..c175e67842f 100644 --- a/Content.Client/Instruments/UI/ChannelsMenu.xaml.cs +++ b/Content.Client/Instruments/UI/ChannelsMenu.xaml.cs @@ -51,7 +51,7 @@ private void OnClearPressed(BaseButton.ButtonEventArgs obj) } } - public void Populate() + public void Populate(InstrumentComponent? instrument) { ChannelList.Clear(); @@ -60,7 +60,8 @@ public void Populate() var item = ChannelList.AddItem(_owner.Loc.GetString("instrument-component-channel-name", ("number", i)), null, true, i); - item.Selected = !_owner.Instrument?.FilteredChannels[i] ?? false; + + item.Selected = !instrument?.FilteredChannels[i] ?? false; } } } diff --git a/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs b/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs index 0f5729f55b1..4816ce8c365 100644 --- a/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs +++ b/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs @@ -24,8 +24,6 @@ public sealed class InstrumentBoundUserInterface : BoundUserInterface [ViewVariables] private BandMenu? _bandMenu; [ViewVariables] private ChannelsMenu? _channelsMenu; - [ViewVariables] public InstrumentComponent? Instrument { get; private set; } - public InstrumentBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { IoCManager.InjectDependencies(this); @@ -43,14 +41,20 @@ protected override void ReceiveMessage(BoundUserInterfaceMessage message) protected override void Open() { - if (!EntMan.TryGetComponent(Owner, out InstrumentComponent? instrument)) - return; + _instrumentMenu = this.CreateWindow(); + _instrumentMenu.Title = EntMan.GetComponent(Owner).EntityName; - Instrument = instrument; - _instrumentMenu = new InstrumentMenu(this); - _instrumentMenu.OnClose += Close; + _instrumentMenu.OnOpenBand += OpenBandMenu; + _instrumentMenu.OnOpenChannels += OpenChannelsMenu; + _instrumentMenu.OnCloseChannels += CloseChannelsMenu; + _instrumentMenu.OnCloseBands += CloseBandMenu; - _instrumentMenu.OpenCentered(); + _instrumentMenu.SetMIDI(MidiManager.IsAvailable); + + if (EntMan.TryGetComponent(Owner, out InstrumentComponent? instrument)) + { + _instrumentMenu.SetInstrument((Owner, instrument)); + } } protected override void Dispose(bool disposing) @@ -58,7 +62,12 @@ protected override void Dispose(bool disposing) base.Dispose(disposing); if (!disposing) return; - _instrumentMenu?.Dispose(); + + if (EntMan.TryGetComponent(Owner, out InstrumentComponent? instrument)) + { + _instrumentMenu?.RemoveInstrument(instrument); + } + _bandMenu?.Dispose(); _channelsMenu?.Dispose(); } @@ -72,6 +81,11 @@ public void OpenBandMenu() { _bandMenu ??= new BandMenu(this); + if (EntMan.TryGetComponent(Owner, out InstrumentComponent? instrument)) + { + _bandMenu.Master = instrument.Master; + } + // Refresh cache... RefreshBands(); @@ -87,7 +101,9 @@ public void CloseBandMenu() public void OpenChannelsMenu() { _channelsMenu ??= new ChannelsMenu(this); - _channelsMenu.Populate(); + EntMan.TryGetComponent(Owner, out InstrumentComponent? instrument); + + _channelsMenu.Populate(instrument); _channelsMenu.OpenCenteredRight(); } diff --git a/Content.Client/Instruments/UI/InstrumentMenu.xaml.cs b/Content.Client/Instruments/UI/InstrumentMenu.xaml.cs index da443e3fb5b..fc863648d79 100644 --- a/Content.Client/Instruments/UI/InstrumentMenu.xaml.cs +++ b/Content.Client/Instruments/UI/InstrumentMenu.xaml.cs @@ -1,7 +1,10 @@ using System.IO; using System.Numerics; using System.Threading.Tasks; +using Content.Client.Interactable; +using Content.Shared.ActionBlocker; using Robust.Client.AutoGenerated; +using Robust.Client.Player; using Robust.Client.UserInterface; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; @@ -16,33 +19,23 @@ namespace Content.Client.Instruments.UI [GenerateTypedNameReferences] public sealed partial class InstrumentMenu : DefaultWindow { - private readonly InstrumentBoundUserInterface _owner; + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IFileDialogManager _dialogs = default!; + [Dependency] private readonly IPlayerManager _player = default!; private bool _isMidiFileDialogueWindowOpen; - public InstrumentMenu(InstrumentBoundUserInterface owner) - { - RobustXamlLoader.Load(this); - - _owner = owner; + public event Action? OnOpenBand; + public event Action? OnOpenChannels; + public event Action? OnCloseBands; + public event Action? OnCloseChannels; - if (_owner.Instrument != null) - { - _owner.Instrument.OnMidiPlaybackEnded += InstrumentOnMidiPlaybackEnded; - Title = _owner.Entities.GetComponent(_owner.Owner).EntityName; - LoopButton.Disabled = !_owner.Instrument.IsMidiOpen; - LoopButton.Pressed = _owner.Instrument.LoopMidi; - ChannelsButton.Disabled = !_owner.Instrument.IsRendererAlive; - StopButton.Disabled = !_owner.Instrument.IsMidiOpen; - PlaybackSlider.MouseFilter = _owner.Instrument.IsMidiOpen ? MouseFilterMode.Pass : MouseFilterMode.Ignore; - } + public EntityUid Entity; - if (!_owner.MidiManager.IsAvailable) - { - UnavailableOverlay.Visible = true; - // We return early as to not give the buttons behavior. - return; - } + public InstrumentMenu() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); InputButton.OnToggled += MidiInputButtonOnOnToggled; BandButton.OnPressed += BandButtonOnPressed; @@ -57,12 +50,34 @@ public InstrumentMenu(InstrumentBoundUserInterface owner) MinSize = SetSize = new Vector2(400, 150); } + public void SetInstrument(Entity entity) + { + Entity = entity; + var component = entity.Comp; + component.OnMidiPlaybackEnded += InstrumentOnMidiPlaybackEnded; + LoopButton.Disabled = !component.IsMidiOpen; + LoopButton.Pressed = component.LoopMidi; + ChannelsButton.Disabled = !component.IsRendererAlive; + StopButton.Disabled = !component.IsMidiOpen; + PlaybackSlider.MouseFilter = component.IsMidiOpen ? MouseFilterMode.Pass : MouseFilterMode.Ignore; + } + + public void RemoveInstrument(InstrumentComponent component) + { + component.OnMidiPlaybackEnded -= InstrumentOnMidiPlaybackEnded; + } + + public void SetMIDI(bool available) + { + UnavailableOverlay.Visible = !available; + } + private void BandButtonOnPressed(ButtonEventArgs obj) { if (!PlayCheck()) return; - _owner.OpenBandMenu(); + OnOpenBand?.Invoke(); } private void BandButtonOnToggled(ButtonToggledEventArgs obj) @@ -70,12 +85,15 @@ private void BandButtonOnToggled(ButtonToggledEventArgs obj) if (obj.Pressed) return; - _owner.Instruments.SetMaster(_owner.Owner, null); + if (_entManager.TryGetComponent(Entity, out InstrumentComponent? instrument)) + { + _entManager.System().SetMaster(Entity, instrument.Master); + } } private void ChannelsButtonOnPressed(ButtonEventArgs obj) { - _owner.OpenChannelsMenu(); + OnOpenChannels?.Invoke(); } private void InstrumentOnMidiPlaybackEnded() @@ -85,8 +103,10 @@ private void InstrumentOnMidiPlaybackEnded() public void MidiPlaybackSetButtonsDisabled(bool disabled) { - if(disabled) - _owner.CloseChannelsMenu(); + if (disabled) + { + OnCloseChannels?.Invoke(); + } LoopButton.Disabled = disabled; StopButton.Disabled = disabled; @@ -100,7 +120,7 @@ private async void MidiFileButtonOnOnPressed(ButtonEventArgs obj) if (_isMidiFileDialogueWindowOpen) return; - _owner.CloseBandMenu(); + OnCloseBands?.Invoke(); var filters = new FileDialogFilters(new FileDialogFilters.Group("mid", "midi")); @@ -108,7 +128,7 @@ private async void MidiFileButtonOnOnPressed(ButtonEventArgs obj) // or focus the previously-opened window. _isMidiFileDialogueWindowOpen = true; - await using var file = await _owner.FileDialogManager.OpenFile(filters); + await using var file = await _dialogs.OpenFile(filters); _isMidiFileDialogueWindowOpen = false; @@ -129,9 +149,18 @@ private async void MidiFileButtonOnOnPressed(ButtonEventArgs obj) await file.CopyToAsync(memStream); - if (_owner.Instrument is not {} instrument - || !_owner.Instruments.OpenMidi(_owner.Owner, memStream.GetBuffer().AsSpan(0, (int) memStream.Length), instrument)) + if (!_entManager.TryGetComponent(Entity, out var instrument)) + { return; + } + + if (!_entManager.System() + .OpenMidi(Entity, + memStream.GetBuffer().AsSpan(0, (int) memStream.Length), + instrument)) + { + return; + } MidiPlaybackSetButtonsDisabled(false); if (InputButton.Pressed) @@ -140,7 +169,7 @@ private async void MidiFileButtonOnOnPressed(ButtonEventArgs obj) private void MidiInputButtonOnOnToggled(ButtonToggledEventArgs obj) { - _owner.CloseBandMenu(); + OnCloseBands?.Invoke(); if (obj.Pressed) { @@ -148,109 +177,99 @@ private void MidiInputButtonOnOnToggled(ButtonToggledEventArgs obj) return; MidiStopButtonOnPressed(null); - if(_owner.Instrument is {} instrument) - _owner.Instruments.OpenInput(_owner.Owner, instrument); + + if (_entManager.TryGetComponent(Entity, out InstrumentComponent? instrument)) + _entManager.System().OpenInput(Entity, instrument); } - else if (_owner.Instrument is { } instrument) + else { - _owner.Instruments.CloseInput(_owner.Owner, false, instrument); - _owner.CloseChannelsMenu(); + _entManager.System().CloseInput(Entity, false); + OnCloseChannels?.Invoke(); } } private bool PlayCheck() { // TODO all of these checks should also be done server-side. - - var instrumentEnt = _owner.Owner; - var instrument = _owner.Instrument; - - if (instrument == null) + if (!_entManager.TryGetComponent(Entity, out InstrumentComponent? instrument)) return false; - var localEntity = _owner.PlayerManager.LocalEntity; + var localEntity = _player.LocalEntity; // If we don't have a player or controlled entity, we return. if (localEntity == null) return false; // By default, allow an instrument to play itself and skip all other checks - if (localEntity == instrumentEnt) + if (localEntity == Entity) return true; - var container = _owner.Entities.System(); + var container = _entManager.System(); // If we're a handheld instrument, we might be in a container. Get it just in case. - container.TryGetContainingContainer(instrumentEnt, out var conMan); + container.TryGetContainingContainer(Entity, out var conMan); // If the instrument is handheld and we're not holding it, we return. - if ((instrument.Handheld && (conMan == null || conMan.Owner != localEntity))) + if (instrument.Handheld && (conMan == null || conMan.Owner != localEntity)) return false; - if (!_owner.ActionBlocker.CanInteract(localEntity.Value, instrumentEnt)) + if (!_entManager.System().CanInteract(localEntity.Value, Entity)) return false; // We check that we're in range unobstructed just in case. - return _owner.Interactions.InRangeUnobstructed(localEntity.Value, instrumentEnt); + return _entManager.System().InRangeUnobstructed(localEntity.Value, Entity); } private void MidiStopButtonOnPressed(ButtonEventArgs? obj) { MidiPlaybackSetButtonsDisabled(true); - if (_owner.Instrument is not {} instrument) - return; - - _owner.Instruments.CloseMidi(_owner.Owner, false, instrument); - _owner.CloseChannelsMenu(); + _entManager.System().CloseMidi(Entity, false); + OnCloseChannels?.Invoke(); } private void MidiLoopButtonOnOnToggled(ButtonToggledEventArgs obj) { - if (_owner.Instrument == null) - return; + var instrument = _entManager.System(); + + if (_entManager.TryGetComponent(Entity, out InstrumentComponent? instrumentComp)) + { + instrumentComp.LoopMidi = obj.Pressed; + } - _owner.Instrument.LoopMidi = obj.Pressed; - _owner.Instruments.UpdateRenderer(_owner.Owner, _owner.Instrument); + instrument.UpdateRenderer(Entity); } private void PlaybackSliderSeek(Range _) { // Do not seek while still grabbing. - if (PlaybackSlider.Grabbed || _owner.Instrument is not {} instrument) + if (PlaybackSlider.Grabbed) return; - _owner.Instruments.SetPlayerTick(_owner.Owner, (int)Math.Ceiling(PlaybackSlider.Value), instrument); + _entManager.System().SetPlayerTick(Entity, (int)Math.Ceiling(PlaybackSlider.Value)); } private void PlaybackSliderKeyUp(GUIBoundKeyEventArgs args) { - if (args.Function != EngineKeyFunctions.UIClick || _owner.Instrument is not {} instrument) + if (args.Function != EngineKeyFunctions.UIClick) return; - _owner.Instruments.SetPlayerTick(_owner.Owner, (int)Math.Ceiling(PlaybackSlider.Value), instrument); - } - - public override void Close() - { - base.Close(); - _owner.CloseBandMenu(); - _owner.CloseChannelsMenu(); + _entManager.System().SetPlayerTick(Entity, (int)Math.Ceiling(PlaybackSlider.Value)); } protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); - if (_owner.Instrument == null) + if (!_entManager.TryGetComponent(Entity, out InstrumentComponent? instrument)) return; - var hasMaster = _owner.Instrument.Master != null; + var hasMaster = instrument.Master != null; BandButton.ToggleMode = hasMaster; BandButton.Pressed = hasMaster; - BandButton.Disabled = _owner.Instrument.IsMidiOpen || _owner.Instrument.IsInputOpen; - ChannelsButton.Disabled = !_owner.Instrument.IsRendererAlive; + BandButton.Disabled = instrument.IsMidiOpen || instrument.IsInputOpen; + ChannelsButton.Disabled = !instrument.IsRendererAlive; - if (!_owner.Instrument.IsMidiOpen) + if (!instrument.IsMidiOpen) { PlaybackSlider.MaxValue = 1; PlaybackSlider.SetValueWithoutEvent(0); @@ -260,8 +279,8 @@ protected override void FrameUpdate(FrameEventArgs args) if (PlaybackSlider.Grabbed) return; - PlaybackSlider.MaxValue = _owner.Instrument.PlayerTotalTick; - PlaybackSlider.SetValueWithoutEvent(_owner.Instrument.PlayerTick); + PlaybackSlider.MaxValue = instrument.PlayerTotalTick; + PlaybackSlider.SetValueWithoutEvent(instrument.PlayerTick); } } } diff --git a/Content.Client/Inventory/StrippableBoundUserInterface.cs b/Content.Client/Inventory/StrippableBoundUserInterface.cs index 7e50eb1c68a..132c5ed654c 100644 --- a/Content.Client/Inventory/StrippableBoundUserInterface.cs +++ b/Content.Client/Inventory/StrippableBoundUserInterface.cs @@ -41,7 +41,7 @@ public sealed class StrippableBoundUserInterface : BoundUserInterface public const string HiddenPocketEntityId = "StrippingHiddenEntity"; [ViewVariables] - private readonly StrippingMenu? _strippingMenu; + private StrippingMenu? _strippingMenu; [ViewVariables] private readonly EntityUid _virtualHiddenEntity; @@ -51,33 +51,30 @@ public StrippableBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, u _examine = EntMan.System(); _inv = EntMan.System(); _cuffable = EntMan.System(); - - // TODO update name when identity changes - var title = Loc.GetString("strippable-bound-user-interface-stripping-menu-title", ("ownerName", Identity.Name(Owner, EntMan))); - _strippingMenu = new StrippingMenu(title, this); - _strippingMenu.OnClose += Close; - - // TODO use global entity - // BUIs are opened and closed while applying comp sates, so spawning entities here is probably not the best idea. _virtualHiddenEntity = EntMan.SpawnEntity(HiddenPocketEntityId, MapCoordinates.Nullspace); } protected override void Open() { base.Open(); + + _strippingMenu = this.CreateWindow(); + _strippingMenu.OnDirty += UpdateMenu; + _strippingMenu.Title = Loc.GetString("strippable-bound-user-interface-stripping-menu-title", ("ownerName", Identity.Name(Owner, EntMan))); + _strippingMenu?.OpenCenteredLeft(); } protected override void Dispose(bool disposing) { - base.Dispose(disposing); - - EntMan.DeleteEntity(_virtualHiddenEntity); - if (!disposing) return; - _strippingMenu?.Dispose(); + if (_strippingMenu != null) + _strippingMenu.OnDirty -= UpdateMenu; + + EntMan.DeleteEntity(_virtualHiddenEntity); + base.Dispose(disposing); } public void DirtyMenu() diff --git a/Content.Client/Kitchen/UI/GrinderMenu.xaml.cs b/Content.Client/Kitchen/UI/GrinderMenu.xaml.cs index f97d8a73302..7884268c428 100644 --- a/Content.Client/Kitchen/UI/GrinderMenu.xaml.cs +++ b/Content.Client/Kitchen/UI/GrinderMenu.xaml.cs @@ -12,42 +12,34 @@ namespace Content.Client.Kitchen.UI [GenerateTypedNameReferences] public sealed partial class GrinderMenu : FancyWindow { - private readonly IEntityManager _entityManager; - private readonly IPrototypeManager _prototypeManager; - private readonly ReagentGrinderBoundUserInterface _owner; + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; private readonly Dictionary _chamberVisualContents = new(); - public GrinderMenu(ReagentGrinderBoundUserInterface owner, IEntityManager entityManager, IPrototypeManager prototypeManager) + public event Action? OnToggleAuto; + public event Action? OnGrind; + public event Action? OnJuice; + public event Action? OnEjectAll; + public event Action? OnEjectBeaker; + public event Action? OnEjectChamber; + + public GrinderMenu() { RobustXamlLoader.Load(this); - _entityManager = entityManager; - _prototypeManager = prototypeManager; - _owner = owner; - AutoModeButton.OnPressed += owner.ToggleAutoMode; - GrindButton.OnPressed += owner.StartGrinding; - JuiceButton.OnPressed += owner.StartJuicing; - ChamberContentBox.EjectButton.OnPressed += owner.EjectAll; - BeakerContentBox.EjectButton.OnPressed += owner.EjectBeaker; + IoCManager.InjectDependencies(this); + AutoModeButton.OnPressed += _ => OnToggleAuto?.Invoke(); + GrindButton.OnPressed += _ => OnGrind?.Invoke(); + JuiceButton.OnPressed += _ => OnJuice?.Invoke(); + ChamberContentBox.EjectButton.OnPressed += _ => OnEjectAll?.Invoke(); + BeakerContentBox.EjectButton.OnPressed += _ => OnEjectBeaker?.Invoke(); ChamberContentBox.BoxContents.OnItemSelected += OnChamberBoxContentsItemSelected; BeakerContentBox.BoxContents.SelectMode = ItemList.ItemListSelectMode.None; } private void OnChamberBoxContentsItemSelected(ItemList.ItemListSelectedEventArgs args) { - _owner.EjectChamberContent(_chamberVisualContents[args.ItemIndex]); - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - _chamberVisualContents.Clear(); - GrindButton.OnPressed -= _owner.StartGrinding; - JuiceButton.OnPressed -= _owner.StartJuicing; - ChamberContentBox.EjectButton.OnPressed -= _owner.EjectAll; - BeakerContentBox.EjectButton.OnPressed -= _owner.EjectBeaker; - ChamberContentBox.BoxContents.OnItemSelected -= OnChamberBoxContentsItemSelected; + OnEjectChamber?.Invoke(_chamberVisualContents[args.ItemIndex]); } public void UpdateState(ReagentGrinderInterfaceState state) diff --git a/Content.Client/Kitchen/UI/MicrowaveBoundUserInterface.cs b/Content.Client/Kitchen/UI/MicrowaveBoundUserInterface.cs index 7e7dd2d6935..643ac47054b 100644 --- a/Content.Client/Kitchen/UI/MicrowaveBoundUserInterface.cs +++ b/Content.Client/Kitchen/UI/MicrowaveBoundUserInterface.cs @@ -3,6 +3,7 @@ using JetBrains.Annotations; using Robust.Client.GameObjects; using Robust.Client.Graphics; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Timing; @@ -19,28 +20,15 @@ public sealed class MicrowaveBoundUserInterface : BoundUserInterface [ViewVariables] private readonly Dictionary _reagents = new(); - [Dependency] private readonly IGameTiming _gameTiming = default!; - - public MicrowaveUpdateUserInterfaceState currentState = default!; - - private IEntityManager _entManager; public MicrowaveBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { - _entManager = IoCManager.Resolve(); - } - - public TimeSpan GetCurrentTime() - { - return _gameTiming.CurTime; } protected override void Open() { base.Open(); - _menu = new MicrowaveMenu(this); - _menu.OpenCentered(); - _menu.OnClose += Close; + _menu = this.CreateWindow(); _menu.StartButton.OnPressed += _ => SendPredictedMessage(new MicrowaveStartCookMessage()); _menu.EjectButton.OnPressed += _ => SendPredictedMessage(new MicrowaveEjectMessage()); _menu.IngredientsList.OnItemSelected += args => @@ -74,38 +62,23 @@ protected override void Open() }; } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (!disposing) - { - return; - } - - _solids.Clear(); - _menu?.Dispose(); - } - protected override void UpdateState(BoundUserInterfaceState state) { base.UpdateState(state); - if (state is not MicrowaveUpdateUserInterfaceState cState) + if (state is not MicrowaveUpdateUserInterfaceState cState || _menu == null) { return; } + _menu.IsBusy = cState.IsMicrowaveBusy; + _menu.CurrentCooktimeEnd = cState.CurrentCookTimeEnd; - _menu?.ToggleBusyDisableOverlayPanel(cState.IsMicrowaveBusy || cState.ContainedSolids.Length == 0); - currentState = cState; - + _menu.ToggleBusyDisableOverlayPanel(cState.IsMicrowaveBusy || cState.ContainedSolids.Length == 0); // TODO move this to a component state and ensure the net ids. - RefreshContentsDisplay(_entManager.GetEntityArray(cState.ContainedSolids)); - - if (_menu == null) return; + RefreshContentsDisplay(EntMan.GetEntityArray(cState.ContainedSolids)); //Set the cook time info label - var cookTime = cState.ActiveButtonIndex == 0 + var cookTime = cState.ActiveButtonIndex == 0 ? Loc.GetString("microwave-menu-instant-button") : cState.CurrentCookTime.ToString(); diff --git a/Content.Client/Kitchen/UI/MicrowaveMenu.xaml.cs b/Content.Client/Kitchen/UI/MicrowaveMenu.xaml.cs index b292e9f1465..13029e38469 100644 --- a/Content.Client/Kitchen/UI/MicrowaveMenu.xaml.cs +++ b/Content.Client/Kitchen/UI/MicrowaveMenu.xaml.cs @@ -9,22 +9,21 @@ namespace Content.Client.Kitchen.UI [GenerateTypedNameReferences] public sealed partial class MicrowaveMenu : FancyWindow { - public sealed class MicrowaveCookTimeButton : Button - { - public uint CookTime; - } + [Dependency] private readonly IGameTiming _timing = default!; public event Action? OnCookTimeSelected; public ButtonGroup CookTimeButtonGroup { get; } - private readonly MicrowaveBoundUserInterface _owner; - public MicrowaveMenu(MicrowaveBoundUserInterface owner) + public bool IsBusy; + public TimeSpan CurrentCooktimeEnd; + + public MicrowaveMenu() { RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); CookTimeButtonGroup = new ButtonGroup(); InstantCookButton.Group = CookTimeButtonGroup; - _owner = owner; InstantCookButton.OnPressed += args => { OnCookTimeSelected?.Invoke(args, 0); @@ -65,14 +64,20 @@ public void ToggleBusyDisableOverlayPanel(bool shouldDisable) protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); - if(!_owner.currentState.IsMicrowaveBusy) + + if (!IsBusy) return; - if(_owner.currentState.CurrentCookTimeEnd > _owner.GetCurrentTime()) + if (CurrentCooktimeEnd > _timing.CurTime) { CookTimeInfoLabel.Text = Loc.GetString("microwave-bound-user-interface-cook-time-label", - ("time",_owner.currentState.CurrentCookTimeEnd.Subtract(_owner.GetCurrentTime()).Seconds)); + ("time", CurrentCooktimeEnd.Subtract(_timing.CurTime).Seconds)); } } + + public sealed class MicrowaveCookTimeButton : Button + { + public uint CookTime; + } } } diff --git a/Content.Client/Kitchen/UI/ReagentGrinderBoundUserInterface.cs b/Content.Client/Kitchen/UI/ReagentGrinderBoundUserInterface.cs index e6f108b3050..bc4cc75b4d1 100644 --- a/Content.Client/Kitchen/UI/ReagentGrinderBoundUserInterface.cs +++ b/Content.Client/Kitchen/UI/ReagentGrinderBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Containers.ItemSlots; using Content.Shared.Kitchen; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Prototypes; @@ -8,8 +9,6 @@ namespace Content.Client.Kitchen.UI { public sealed class ReagentGrinderBoundUserInterface : BoundUserInterface { - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [ViewVariables] private GrinderMenu? _menu; @@ -21,20 +20,13 @@ protected override void Open() { base.Open(); - _menu = new GrinderMenu(this, EntMan, _prototypeManager); - _menu.OpenCentered(); - _menu.OnClose += Close; - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - { - return; - } - - _menu?.Dispose(); + _menu = this.CreateWindow(); + _menu.OnToggleAuto += ToggleAutoMode; + _menu.OnGrind += StartGrinding; + _menu.OnJuice += StartJuicing; + _menu.OnEjectAll += EjectAll; + _menu.OnEjectBeaker += EjectBeaker; + _menu.OnEjectChamber += EjectChamberContent; } protected override void UpdateState(BoundUserInterfaceState state) @@ -52,27 +44,27 @@ protected override void ReceiveMessage(BoundUserInterfaceMessage message) _menu?.HandleMessage(message); } - public void ToggleAutoMode(BaseButton.ButtonEventArgs args) + public void ToggleAutoMode() { SendMessage(new ReagentGrinderToggleAutoModeMessage()); } - public void StartGrinding(BaseButton.ButtonEventArgs? _ = null) + public void StartGrinding() { SendMessage(new ReagentGrinderStartMessage(GrinderProgram.Grind)); } - public void StartJuicing(BaseButton.ButtonEventArgs? _ = null) + public void StartJuicing() { SendMessage(new ReagentGrinderStartMessage(GrinderProgram.Juice)); } - public void EjectAll(BaseButton.ButtonEventArgs? _ = null) + public void EjectAll() { SendMessage(new ReagentGrinderEjectChamberAllMessage()); } - public void EjectBeaker(BaseButton.ButtonEventArgs? _ = null) + public void EjectBeaker() { SendMessage(new ItemSlotButtonPressedEvent(SharedReagentGrinder.BeakerSlotId)); } diff --git a/Content.Client/Labels/UI/HandLabelerBoundUserInterface.cs b/Content.Client/Labels/UI/HandLabelerBoundUserInterface.cs index 555f1ff09e6..6b656123412 100644 --- a/Content.Client/Labels/UI/HandLabelerBoundUserInterface.cs +++ b/Content.Client/Labels/UI/HandLabelerBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Labels; using Content.Shared.Labels.Components; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Labels.UI { @@ -23,13 +24,8 @@ protected override void Open() { base.Open(); - _window = new HandLabelerWindow(); - if (State != null) - UpdateState(State); + _window = this.CreateWindow(); - _window.OpenCentered(); - - _window.OnClose += Close; _window.OnLabelChanged += OnLabelChanged; Reload(); } @@ -51,13 +47,5 @@ public void Reload() _window.SetCurrentLabel(component.AssignedLabel); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } } - } diff --git a/Content.Client/Lathe/UI/LatheBoundUserInterface.cs b/Content.Client/Lathe/UI/LatheBoundUserInterface.cs index 6e6d1b91761..a599f79152e 100644 --- a/Content.Client/Lathe/UI/LatheBoundUserInterface.cs +++ b/Content.Client/Lathe/UI/LatheBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Lathe; using Content.Shared.Research.Components; using JetBrains.Annotations; +using Robust.Client.UserInterface; namespace Content.Client.Lathe.UI { @@ -17,9 +18,9 @@ protected override void Open() { base.Open(); - _menu = new LatheMenu(this); - _menu.OnClose += Close; - + _menu = this.CreateWindow(); + _menu.SetEntity(Owner); + _menu.OpenCenteredRight(); _menu.OnServerListButtonPressed += _ => { @@ -30,8 +31,6 @@ protected override void Open() { SendMessage(new LatheQueueRecipeMessage(recipe, amount)); }; - - _menu.OpenCenteredRight(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -50,13 +49,5 @@ protected override void UpdateState(BoundUserInterfaceState state) break; } } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - _menu?.Dispose(); - } } } diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml.cs b/Content.Client/Lathe/UI/LatheMenu.xaml.cs index 265130d15d3..6f530b76c75 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml.cs +++ b/Content.Client/Lathe/UI/LatheMenu.xaml.cs @@ -1,3 +1,4 @@ +using System.Buffers; using System.Linq; using System.Text; using Content.Client.Materials; @@ -21,9 +22,7 @@ public sealed partial class LatheMenu : DefaultWindow { [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IResourceCache _resources = default!; - private EntityUid _owner; private readonly SpriteSystem _spriteSystem; private readonly LatheSystem _lathe; private readonly MaterialStorageSystem _materialStorage; @@ -37,9 +36,10 @@ public sealed partial class LatheMenu : DefaultWindow public ProtoId? CurrentCategory; - public LatheMenu(LatheBoundUserInterface owner) + public EntityUid Entity; + + public LatheMenu() { - _owner = owner.Owner; RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); @@ -47,8 +47,6 @@ public LatheMenu(LatheBoundUserInterface owner) _lathe = _entityManager.System(); _materialStorage = _entityManager.System(); - Title = _entityManager.GetComponent(owner.Owner).EntityName; - SearchBar.OnTextChanged += _ => { PopulateRecipes(); @@ -61,8 +59,13 @@ public LatheMenu(LatheBoundUserInterface owner) FilterOption.OnItemSelected += OnItemSelected; ServerListButton.OnPressed += a => OnServerListButtonPressed?.Invoke(a); + } - if (_entityManager.TryGetComponent(owner.Owner, out var latheComponent)) + public void SetEntity(EntityUid uid) + { + Entity = uid; + + if (_entityManager.TryGetComponent(Entity, out var latheComponent)) { if (!latheComponent.DynamicRecipes.Any()) { @@ -70,7 +73,7 @@ public LatheMenu(LatheBoundUserInterface owner) } } - MaterialsList.SetOwner(owner.Owner); + MaterialsList.SetOwner(Entity); } /// @@ -103,13 +106,15 @@ public void PopulateRecipes() var sortedRecipesToShow = recipesToShow.OrderBy(p => p.Name); RecipeList.Children.Clear(); + _entityManager.TryGetComponent(Entity, out LatheComponent? lathe); + foreach (var prototype in sortedRecipesToShow) { EntityPrototype? recipeProto = null; - if (_prototypeManager.TryIndex(prototype.Result, out EntityPrototype? entityProto) && entityProto != null) + if (_prototypeManager.TryIndex(prototype.Result, out EntityPrototype? entityProto)) recipeProto = entityProto; - var canProduce = _lathe.CanProduce(_owner, prototype, quantity); + var canProduce = _lathe.CanProduce(Entity, prototype, quantity, component: lathe); var control = new RecipeControl(prototype, () => GenerateTooltipText(prototype), canProduce, recipeProto); control.OnButtonPressed += s => @@ -125,19 +130,20 @@ public void PopulateRecipes() private string GenerateTooltipText(LatheRecipePrototype prototype) { StringBuilder sb = new(); + var multiplier = _entityManager.GetComponent(Entity).MaterialUseMultiplier; foreach (var (id, amount) in prototype.RequiredMaterials) { if (!_prototypeManager.TryIndex(id, out var proto)) continue; - var adjustedAmount = SharedLatheSystem.AdjustMaterial(amount, prototype.ApplyMaterialDiscount, _entityManager.GetComponent(_owner).MaterialUseMultiplier); + var adjustedAmount = SharedLatheSystem.AdjustMaterial(amount, prototype.ApplyMaterialDiscount, multiplier); var sheetVolume = _materialStorage.GetSheetVolume(proto); var unit = Loc.GetString(proto.Unit); var sheets = adjustedAmount / (float) sheetVolume; - var availableAmount = _materialStorage.GetMaterialAmount(_owner, id); + var availableAmount = _materialStorage.GetMaterialAmount(Entity, id); var missingAmount = Math.Max(0, adjustedAmount - availableAmount); var missingSheets = missingAmount / (float) sheetVolume; diff --git a/Content.Client/MachineLinking/UI/SignalTimerBoundUserInterface.cs b/Content.Client/MachineLinking/UI/SignalTimerBoundUserInterface.cs index 09bdedfd94c..11abe8c2451 100644 --- a/Content.Client/MachineLinking/UI/SignalTimerBoundUserInterface.cs +++ b/Content.Client/MachineLinking/UI/SignalTimerBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.MachineLinking; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.Timing; namespace Content.Client.MachineLinking.UI; @@ -19,19 +20,14 @@ protected override void Open() { base.Open(); - _window = new SignalTimerWindow(this); - - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - _window.OnClose += Close; + _window = this.CreateWindow(); + _window.OnStartTimer += StartTimer; _window.OnCurrentTextChanged += OnTextChanged; _window.OnCurrentDelayMinutesChanged += OnDelayChanged; _window.OnCurrentDelaySecondsChanged += OnDelayChanged; } - public void OnStartTimer() + public void StartTimer() { SendMessage(new SignalTimerStartMessage()); } @@ -48,11 +44,6 @@ private void OnDelayChanged(string newDelay) SendMessage(new SignalTimerDelayChangedMessage(_window.GetDelay())); } - public TimeSpan GetCurrentTime() - { - return _gameTiming.CurTime; - } - /// /// Update the UI state based on server-sent info /// @@ -72,11 +63,4 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.SetTimerStarted(cast.TimerStarted); _window.SetHasAccess(cast.HasAccess); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } } diff --git a/Content.Client/MachineLinking/UI/SignalTimerWindow.xaml.cs b/Content.Client/MachineLinking/UI/SignalTimerWindow.xaml.cs index b62595595e5..6133abfcb70 100644 --- a/Content.Client/MachineLinking/UI/SignalTimerWindow.xaml.cs +++ b/Content.Client/MachineLinking/UI/SignalTimerWindow.xaml.cs @@ -9,42 +9,44 @@ namespace Content.Client.MachineLinking.UI; [GenerateTypedNameReferences] public sealed partial class SignalTimerWindow : DefaultWindow { + [Dependency] private readonly IGameTiming _timing = default!; + private const int MaxTextLength = 5; public event Action? OnCurrentTextChanged; public event Action? OnCurrentDelayMinutesChanged; public event Action? OnCurrentDelaySecondsChanged; - private readonly SignalTimerBoundUserInterface _owner; - private TimeSpan? _triggerTime; private bool _timerStarted; - public SignalTimerWindow(SignalTimerBoundUserInterface owner) + public event Action? OnStartTimer; + + public SignalTimerWindow() { RobustXamlLoader.Load(this); - - _owner = owner; + IoCManager.InjectDependencies(this); CurrentTextEdit.OnTextChanged += e => OnCurrentTextChange(e.Text); CurrentDelayEditMinutes.OnTextChanged += e => OnCurrentDelayMinutesChange(e.Text); CurrentDelayEditSeconds.OnTextChanged += e => OnCurrentDelaySecondsChange(e.Text); - StartTimer.OnPressed += _ => OnStartTimer(); + StartTimer.OnPressed += _ => StartTimerWeh(); } - public void OnStartTimer() + private void StartTimerWeh() { if (!_timerStarted) { _timerStarted = true; - _triggerTime = _owner.GetCurrentTime() + GetDelay(); + _triggerTime = _timing.CurTime + GetDelay(); } else { SetTimerStarted(false); } - _owner.OnStartTimer(); + + OnStartTimer?.Invoke(); } protected override void FrameUpdate(FrameEventArgs args) @@ -54,9 +56,9 @@ protected override void FrameUpdate(FrameEventArgs args) if (!_timerStarted || _triggerTime == null) return; - if (_owner.GetCurrentTime() < _triggerTime.Value) + if (_timing.CurTime < _triggerTime.Value) { - StartTimer.Text = TextScreenSystem.TimeToString(_triggerTime.Value - _owner.GetCurrentTime()); + StartTimer.Text = TextScreenSystem.TimeToString(_triggerTime.Value - _timing.CurTime); } else { diff --git a/Content.Client/MagicMirror/MagicMirrorBoundUserInterface.cs b/Content.Client/MagicMirror/MagicMirrorBoundUserInterface.cs index f6979bf8d7b..0a87948ff62 100644 --- a/Content.Client/MagicMirror/MagicMirrorBoundUserInterface.cs +++ b/Content.Client/MagicMirror/MagicMirrorBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Humanoid.Markings; using Content.Shared.MagicMirror; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.MagicMirror; @@ -17,7 +18,7 @@ protected override void Open() { base.Open(); - _window = new(); + _window = this.CreateWindow(); _window.OnHairSelected += tuple => SelectHair(MagicMirrorCategory.Hair, tuple.id, tuple.slot); _window.OnHairColorChanged += args => ChangeColor(MagicMirrorCategory.Hair, args.marking, args.slot); @@ -29,9 +30,6 @@ protected override void Open() args => ChangeColor(MagicMirrorCategory.FacialHair, args.marking, args.slot); _window.OnFacialHairSlotAdded += delegate () { AddSlot(MagicMirrorCategory.FacialHair); }; _window.OnFacialHairSlotRemoved += args => RemoveSlot(MagicMirrorCategory.FacialHair, args); - - _window.OnClose += Close; - _window.OpenCentered(); } private void SelectHair(MagicMirrorCategory category, string marking, int slot) @@ -65,14 +63,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.UpdateState(data); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _window?.Dispose(); - } } diff --git a/Content.Client/MassMedia/Ui/NewsWriterBoundUserInterface.cs b/Content.Client/MassMedia/Ui/NewsWriterBoundUserInterface.cs index 80eca82e324..22e5bc452a0 100644 --- a/Content.Client/MassMedia/Ui/NewsWriterBoundUserInterface.cs +++ b/Content.Client/MassMedia/Ui/NewsWriterBoundUserInterface.cs @@ -1,6 +1,7 @@ using JetBrains.Annotations; using Content.Shared.MassMedia.Systems; using Content.Shared.MassMedia.Components; +using Robust.Client.UserInterface; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -9,8 +10,6 @@ namespace Content.Client.MassMedia.Ui; [UsedImplicitly] public sealed class NewsWriterBoundUserInterface : BoundUserInterface { - [Dependency] private readonly IGameTiming _gameTiming = default!; - [ViewVariables] private NewsWriterMenu? _menu; @@ -21,10 +20,7 @@ public NewsWriterBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, u protected override void Open() { - _menu = new NewsWriterMenu(_gameTiming); - - _menu.OpenCentered(); - _menu.OnClose += Close; + _menu = this.CreateWindow(); _menu.ArticleEditorPanel.PublishButtonPressed += OnPublishButtonPressed; _menu.DeleteButtonPressed += OnDeleteButtonPressed; @@ -32,16 +28,6 @@ protected override void Open() SendMessage(new NewsWriterArticlesRequestMessage()); } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _menu?.Close(); - _menu?.Dispose(); - } - protected override void UpdateState(BoundUserInterfaceState state) { base.UpdateState(state); diff --git a/Content.Client/MassMedia/Ui/NewsWriterMenu.xaml.cs b/Content.Client/MassMedia/Ui/NewsWriterMenu.xaml.cs index e2d57935e3a..c059ce785af 100644 --- a/Content.Client/MassMedia/Ui/NewsWriterMenu.xaml.cs +++ b/Content.Client/MassMedia/Ui/NewsWriterMenu.xaml.cs @@ -10,17 +10,17 @@ namespace Content.Client.MassMedia.Ui; [GenerateTypedNameReferences] public sealed partial class NewsWriterMenu : FancyWindow { - private readonly IGameTiming _gameTiming; + [Dependency] private readonly IGameTiming _gameTiming = default!; private TimeSpan? _nextPublish; public event Action? DeleteButtonPressed; - public NewsWriterMenu(IGameTiming gameTiming) + public NewsWriterMenu() { RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); - _gameTiming = gameTiming; ContentsContainer.RectClipContent = false; // Customize scrollbar width and margin. This is not possible in xaml diff --git a/Content.Client/Mech/Ui/MechBoundUserInterface.cs b/Content.Client/Mech/Ui/MechBoundUserInterface.cs index 4172bdc90f1..2130a8c6099 100644 --- a/Content.Client/Mech/Ui/MechBoundUserInterface.cs +++ b/Content.Client/Mech/Ui/MechBoundUserInterface.cs @@ -3,6 +3,7 @@ using Content.Shared.Mech.Components; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Mech.Ui; @@ -20,9 +21,8 @@ protected override void Open() { base.Open(); - _menu = new(Owner); - - _menu.OnClose += Close; + _menu = this.CreateWindow(); + _menu.SetEntity(Owner); _menu.OpenCenteredLeft(); _menu.OnRemoveButtonPressed += uid => @@ -60,16 +60,6 @@ public void UpdateEquipmentControls(MechBoundUiState state) } } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (!disposing) - return; - - _menu?.Close(); - } - public UIFragment? GetEquipmentUi(EntityUid? uid) { var component = EntMan.GetComponentOrNull(uid); diff --git a/Content.Client/Mech/Ui/MechMenu.xaml.cs b/Content.Client/Mech/Ui/MechMenu.xaml.cs index fad76488086..6f39bc386ee 100644 --- a/Content.Client/Mech/Ui/MechMenu.xaml.cs +++ b/Content.Client/Mech/Ui/MechMenu.xaml.cs @@ -16,14 +16,15 @@ public sealed partial class MechMenu : FancyWindow public event Action? OnRemoveButtonPressed; - public MechMenu(EntityUid mech) + public MechMenu() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); + } - _mech = mech; - - MechView.SetEntity(mech); + public void SetEntity(EntityUid uid) + { + MechView.SetEntity(uid); } public void UpdateMechStats() diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs index 39788809871..b1f239cd78e 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs @@ -1,4 +1,5 @@ using Content.Shared.Medical.CrewMonitoring; +using Robust.Client.UserInterface; namespace Content.Client.Medical.CrewMonitoring; @@ -14,7 +15,7 @@ public CrewMonitoringBoundUserInterface(EntityUid owner, Enum uiKey) : base(owne protected override void Open() { EntityUid? gridUid = null; - string stationName = string.Empty; + var stationName = string.Empty; if (EntMan.TryGetComponent(Owner, out var xform)) { @@ -26,10 +27,8 @@ protected override void Open() } } - _menu = new CrewMonitoringWindow(stationName, gridUid); - - _menu.OpenCentered(); - _menu.OnClose += Close; + _menu = this.CreateWindow(); + _menu.Set(stationName, gridUid); } protected override void UpdateState(BoundUserInterfaceState state) @@ -44,13 +43,4 @@ protected override void UpdateState(BoundUserInterfaceState state) break; } } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _menu?.Dispose(); - } } diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs index 863412e5532..e861864c144 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs @@ -23,22 +23,27 @@ namespace Content.Client.Medical.CrewMonitoring; [GenerateTypedNameReferences] public sealed partial class CrewMonitoringWindow : FancyWindow { - private readonly IEntityManager _entManager; - private readonly IPrototypeManager _prototypeManager; + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; private readonly SpriteSystem _spriteSystem; private NetEntity? _trackedEntity; private bool _tryToScrollToListFocus; private Texture? _blipTexture; - public CrewMonitoringWindow(string stationName, EntityUid? mapUid) + public CrewMonitoringWindow() { RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); - _entManager = IoCManager.Resolve(); - _prototypeManager = IoCManager.Resolve(); _spriteSystem = _entManager.System(); + NavMap.TrackedEntitySelectedAction += SetTrackedEntityFromNavMap; + + } + + public void Set(string stationName, EntityUid? mapUid) + { _blipTexture = _spriteSystem.Frame0(new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png"))); if (_entManager.TryGetComponent(mapUid, out var xform)) @@ -49,8 +54,6 @@ public CrewMonitoringWindow(string stationName, EntityUid? mapUid) StationName.AddStyleClass("LabelBig"); StationName.Text = stationName; - - NavMap.TrackedEntitySelectedAction += SetTrackedEntityFromNavMap; NavMap.ForceNavMapUpdate(); } diff --git a/Content.Client/NetworkConfigurator/NetworkConfiguratorBoundUserInterface.cs b/Content.Client/NetworkConfigurator/NetworkConfiguratorBoundUserInterface.cs index 80c98f143b9..f85220a9266 100644 --- a/Content.Client/NetworkConfigurator/NetworkConfiguratorBoundUserInterface.cs +++ b/Content.Client/NetworkConfigurator/NetworkConfiguratorBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Client.NetworkConfigurator.Systems; using Content.Shared.DeviceNetwork; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; namespace Content.Client.NetworkConfigurator; @@ -35,14 +36,12 @@ protected override void Open() switch (UiKey) { case NetworkConfiguratorUiKey.List: - _listMenu = new NetworkConfiguratorListMenu(this); - _listMenu.OnClose += Close; + _listMenu = this.CreateWindow(); _listMenu.ClearButton.OnPressed += _ => OnClearButtonPressed(); - _listMenu.OpenCenteredRight(); + _listMenu.OnRemoveAddress += OnRemoveButtonPressed; break; case NetworkConfiguratorUiKey.Configure: - _configurationMenu = new NetworkConfiguratorConfigurationMenu(); - _configurationMenu.OnClose += Close; + _configurationMenu = this.CreateWindow(); _configurationMenu.Set.OnPressed += _ => OnConfigButtonPressed(NetworkConfiguratorButtonKey.Set); _configurationMenu.Add.OnPressed += _ => OnConfigButtonPressed(NetworkConfiguratorButtonKey.Add); //_configurationMenu.Edit.OnPressed += _ => OnConfigButtonPressed(NetworkConfiguratorButtonKey.Edit); @@ -50,12 +49,24 @@ protected override void Open() _configurationMenu.Copy.OnPressed += _ => OnConfigButtonPressed(NetworkConfiguratorButtonKey.Copy); _configurationMenu.Show.OnPressed += OnShowPressed; _configurationMenu.Show.Pressed = _netConfig.ConfiguredListIsTracked(Owner); - _configurationMenu.OpenCentered(); + _configurationMenu.OnRemoveAddress += OnRemoveButtonPressed; break; case NetworkConfiguratorUiKey.Link: - _linkMenu = new NetworkConfiguratorLinkMenu(this); - _linkMenu.OnClose += Close; - _linkMenu.OpenCentered(); + _linkMenu = this.CreateWindow(); + _linkMenu.OnLinkDefaults += args => + { + SendMessage(new NetworkConfiguratorLinksSaveMessage(args)); + }; + + _linkMenu.OnToggleLink += (left, right) => + { + SendMessage(new NetworkConfiguratorToggleLinkMessage(left, right)); + }; + + _linkMenu.OnClearLinks += () => + { + SendMessage(new NetworkConfiguratorClearLinksMessage()); + }; break; } } @@ -83,16 +94,6 @@ protected override void UpdateState(BoundUserInterfaceState state) } } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - - _linkMenu?.Dispose(); - _listMenu?.Dispose(); - _configurationMenu?.Dispose(); - } - private void OnClearButtonPressed() { SendMessage(new NetworkConfiguratorClearDevicesMessage()); diff --git a/Content.Client/NetworkConfigurator/NetworkConfiguratorConfigurationMenu.xaml.cs b/Content.Client/NetworkConfigurator/NetworkConfiguratorConfigurationMenu.xaml.cs index 19d04cd3464..fcd2f759187 100644 --- a/Content.Client/NetworkConfigurator/NetworkConfiguratorConfigurationMenu.xaml.cs +++ b/Content.Client/NetworkConfigurator/NetworkConfiguratorConfigurationMenu.xaml.cs @@ -9,17 +9,23 @@ namespace Content.Client.NetworkConfigurator; [GenerateTypedNameReferences] public sealed partial class NetworkConfiguratorConfigurationMenu : FancyWindow { + public event Action? OnRemoveAddress; + public NetworkConfiguratorConfigurationMenu() { RobustXamlLoader.Load(this); Clear.StyleClasses.Add(StyleBase.ButtonOpenLeft); Clear.StyleClasses.Add(StyleNano.StyleClassButtonColorRed); + DeviceList.OnRemoveAddress += args => + { + OnRemoveAddress?.Invoke(args); + }; } public void UpdateState(DeviceListUserInterfaceState state) { - DeviceList.UpdateState(null, state.DeviceList); + DeviceList.UpdateState(state.DeviceList, false); Count.Text = Loc.GetString("network-configurator-ui-count-label", ("count", state.DeviceList.Count)); } diff --git a/Content.Client/NetworkConfigurator/NetworkConfiguratorDeviceList.xaml.cs b/Content.Client/NetworkConfigurator/NetworkConfiguratorDeviceList.xaml.cs index 8cfa97dc6c2..e75c60058cb 100644 --- a/Content.Client/NetworkConfigurator/NetworkConfiguratorDeviceList.xaml.cs +++ b/Content.Client/NetworkConfigurator/NetworkConfiguratorDeviceList.xaml.cs @@ -7,17 +7,19 @@ namespace Content.Client.NetworkConfigurator; [GenerateTypedNameReferences] public sealed partial class NetworkConfiguratorDeviceList : ScrollContainer { - public void UpdateState(NetworkConfiguratorBoundUserInterface? ui, HashSet<(string address, string name)> devices) + public event Action? OnRemoveAddress; + + public void UpdateState(HashSet<(string address, string name)> devices, bool ui) { DeviceList.RemoveAllChildren(); foreach (var device in devices) { - DeviceList.AddChild(BuildDeviceListRow(ui, device)); + DeviceList.AddChild(BuildDeviceListRow(device, ui)); } } - private static BoxContainer BuildDeviceListRow(NetworkConfiguratorBoundUserInterface? ui, (string address, string name) savedDevice) + private BoxContainer BuildDeviceListRow((string address, string name) savedDevice, bool ui) { var row = new BoxContainer() { @@ -48,10 +50,10 @@ private static BoxContainer BuildDeviceListRow(NetworkConfiguratorBoundUserInter row.AddChild(name); row.AddChild(address); - if (ui != null) + if (ui) { row.AddChild(removeButton); - removeButton.OnPressed += _ => ui.OnRemoveButtonPressed(savedDevice.address); + removeButton.OnPressed += _ => OnRemoveAddress?.Invoke(savedDevice.address); } return row; diff --git a/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkMenu.xaml.cs b/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkMenu.xaml.cs index c04b42f249b..8cdffd16af6 100644 --- a/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkMenu.xaml.cs +++ b/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkMenu.xaml.cs @@ -18,20 +18,20 @@ public sealed partial class NetworkConfiguratorLinkMenu : FancyWindow private readonly LinksRender _links; - private readonly List _sources = new(); private readonly List _sinks = new(); - private readonly NetworkConfiguratorBoundUserInterface _userInterface; - private (ButtonPosition position, string id, int index)? _selectedButton; private List<(string left, string right)>? _defaults; - public NetworkConfiguratorLinkMenu(NetworkConfiguratorBoundUserInterface userInterface) + public event Action? OnClearLinks; + public event Action? OnToggleLink; + public event Action>? OnLinkDefaults; + + public NetworkConfiguratorLinkMenu() { - _userInterface = userInterface; RobustXamlLoader.Load(this); var footerStyleBox = new StyleBoxFlat() @@ -52,7 +52,7 @@ public NetworkConfiguratorLinkMenu(NetworkConfiguratorBoundUserInterface userInt ButtonOk.OnPressed += _ => Close(); ButtonLinkDefault.OnPressed += _ => LinkDefaults(); - ButtonClear.OnPressed += _ => _userInterface.SendMessage(new NetworkConfiguratorClearLinksMessage()); + ButtonClear.OnPressed += _ => OnClearLinks?.Invoke(); } public void UpdateState(DeviceLinkUserInterfaceState linkState) @@ -98,7 +98,7 @@ private void LinkDefaults() if (_defaults == default) return; - _userInterface.SendMessage(new NetworkConfiguratorLinksSaveMessage(_defaults)); + OnLinkDefaults?.Invoke(_defaults); } private Button CreateButton(ButtonPosition position, string name, string description, string id, int index) @@ -138,7 +138,7 @@ private void OnButtonPressed(BaseButton.ButtonEventArgs args, ButtonPosition pos var left = _selectedButton.Value.position == ButtonPosition.Left ? _selectedButton.Value.id : id; var right = _selectedButton.Value.position == ButtonPosition.Left ? id : _selectedButton.Value.id; - _userInterface.SendMessage(new NetworkConfiguratorToggleLinkMessage(left, right)); + OnToggleLink?.Invoke(left, right); args.Button.Pressed = false; diff --git a/Content.Client/NetworkConfigurator/NetworkConfiguratorListMenu.xaml.cs b/Content.Client/NetworkConfigurator/NetworkConfiguratorListMenu.xaml.cs index fb4aec1974b..6294facaeed 100644 --- a/Content.Client/NetworkConfigurator/NetworkConfiguratorListMenu.xaml.cs +++ b/Content.Client/NetworkConfigurator/NetworkConfiguratorListMenu.xaml.cs @@ -9,17 +9,20 @@ namespace Content.Client.NetworkConfigurator; [GenerateTypedNameReferences] public sealed partial class NetworkConfiguratorListMenu : FancyWindow { - private readonly NetworkConfiguratorBoundUserInterface _ui; - public NetworkConfiguratorListMenu(NetworkConfiguratorBoundUserInterface ui) + public event Action? OnRemoveAddress; + + public NetworkConfiguratorListMenu() { RobustXamlLoader.Load(this); - - _ui = ui; + DeviceList.OnRemoveAddress += args => + { + OnRemoveAddress?.Invoke(args); + }; } public void UpdateState(NetworkConfiguratorUserInterfaceState state) { DeviceCountLabel.Text = Loc.GetString("network-configurator-ui-count-label", ("count", state.DeviceList.Count)); - DeviceList.UpdateState(_ui, state.DeviceList); + DeviceList.UpdateState(state.DeviceList, true); } } diff --git a/Content.Client/Nuke/NukeBoundUserInterface.cs b/Content.Client/Nuke/NukeBoundUserInterface.cs index 59fbc5b319b..2e150423734 100644 --- a/Content.Client/Nuke/NukeBoundUserInterface.cs +++ b/Content.Client/Nuke/NukeBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Nuke; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Nuke { @@ -11,15 +12,13 @@ public sealed class NukeBoundUserInterface : BoundUserInterface [ViewVariables] private NukeMenu? _menu; - public NukeBoundUserInterface([NotNull] EntityUid owner, [NotNull] Enum uiKey) : base(owner, uiKey) + public NukeBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } protected override void Open() { - _menu = new NukeMenu(); - _menu.OpenCentered(); - _menu.OnClose += Close; + _menu = this.CreateWindow(); _menu.OnKeypadButtonPressed += i => { @@ -62,15 +61,5 @@ protected override void UpdateState(BoundUserInterfaceState state) break; } } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _menu?.Close(); - _menu?.Dispose(); - } } } diff --git a/Content.Client/NukeOps/WarDeclaratorBoundUserInterface.cs b/Content.Client/NukeOps/WarDeclaratorBoundUserInterface.cs index ec055b3240c..ad4f1a75d47 100644 --- a/Content.Client/NukeOps/WarDeclaratorBoundUserInterface.cs +++ b/Content.Client/NukeOps/WarDeclaratorBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Chat; using Content.Shared.NukeOps; using JetBrains.Annotations; +using Robust.Client.UserInterface; using Robust.Shared.Configuration; using Robust.Shared.Timing; @@ -11,8 +12,6 @@ namespace Content.Client.NukeOps; public sealed class WarDeclaratorBoundUserInterface : BoundUserInterface { [Dependency] private readonly IConfigurationManager _cfg = default!; - [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly ILocalizationManager _localizationManager = default!; [ViewVariables] private WarDeclaratorWindow? _window; @@ -23,13 +22,7 @@ protected override void Open() { base.Open(); - _window = new WarDeclaratorWindow(_gameTiming, _localizationManager); - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.OnActivated += OnWarDeclaratorActivated; } @@ -42,13 +35,6 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.UpdateState(cast); } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (disposing) - _window?.Dispose(); - } - private void OnWarDeclaratorActivated(string message) { var maxLength = _cfg.GetCVar(CCVars.ChatMaxAnnouncementLength); diff --git a/Content.Client/NukeOps/WarDeclaratorWindow.xaml.cs b/Content.Client/NukeOps/WarDeclaratorWindow.xaml.cs index b4a3f1c7fa5..e191e821c22 100644 --- a/Content.Client/NukeOps/WarDeclaratorWindow.xaml.cs +++ b/Content.Client/NukeOps/WarDeclaratorWindow.xaml.cs @@ -11,7 +11,8 @@ namespace Content.Client.NukeOps; [GenerateTypedNameReferences] public sealed partial class WarDeclaratorWindow : FancyWindow { - private readonly IGameTiming _gameTiming; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly ILocalizationManager _localizationManager = default!; public event Action? OnActivated; @@ -19,15 +20,14 @@ public sealed partial class WarDeclaratorWindow : FancyWindow private TimeSpan _shuttleDisabledTime; private WarConditionStatus _status; - public WarDeclaratorWindow(IGameTiming gameTiming, ILocalizationManager localizationManager) + public WarDeclaratorWindow() { RobustXamlLoader.Load(this); - - _gameTiming = gameTiming; + IoCManager.InjectDependencies(this); WarButton.OnPressed += (_) => OnActivated?.Invoke(Rope.Collapse(MessageEdit.TextRope)); - MessageEdit.Placeholder = new Rope.Leaf(localizationManager.GetString("war-declarator-message-placeholder")); + MessageEdit.Placeholder = new Rope.Leaf(_localizationManager.GetString("war-declarator-message-placeholder")); } protected override void FrameUpdate(FrameEventArgs args) diff --git a/Content.Client/PDA/PdaBoundUserInterface.cs b/Content.Client/PDA/PdaBoundUserInterface.cs index f8f4c67076c..37ce9c4280f 100644 --- a/Content.Client/PDA/PdaBoundUserInterface.cs +++ b/Content.Client/PDA/PdaBoundUserInterface.cs @@ -24,14 +24,13 @@ protected override void Open() if (_menu == null) CreateMenu(); - - _menu?.OpenCenteredLeft(); } private void CreateMenu() { - _menu = new PdaMenu(); - _menu.OnClose += Close; + _menu = this.CreateWindow(); + _menu.OpenCenteredLeft(); + _menu.FlashLightToggleButton.OnToggled += _ => { SendMessage(new PdaToggleFlashlightMessage()); @@ -96,7 +95,6 @@ protected override void UpdateState(BoundUserInterfaceState state) _menu?.UpdateState(updateState); } - protected override void AttachCartridgeUI(Control cartridgeUIFragment, string? title) { _menu?.ProgramView.AddChild(cartridgeUIFragment); @@ -118,15 +116,6 @@ protected override void UpdateAvailablePrograms(List<(EntityUid, CartridgeCompon _menu?.UpdateAvailablePrograms(programs); } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _menu?.Dispose(); - } - private PdaBorderColorComponent? GetBorderColorComponent() { return EntMan.GetComponentOrNull(Owner); diff --git a/Content.Client/PDA/Ringer/RingerBoundUserInterface.cs b/Content.Client/PDA/Ringer/RingerBoundUserInterface.cs index a0688523f1e..170a296ac2e 100644 --- a/Content.Client/PDA/Ringer/RingerBoundUserInterface.cs +++ b/Content.Client/PDA/Ringer/RingerBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.PDA; using Content.Shared.PDA.Ringer; using JetBrains.Annotations; +using Robust.Client.UserInterface; using Robust.Shared.Timing; namespace Content.Client.PDA.Ringer @@ -18,9 +19,8 @@ public RingerBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey protected override void Open() { base.Open(); - _menu = new RingtoneMenu(); + _menu = this.CreateWindow(); _menu.OpenToLeft(); - _menu.OnClose += Close; _menu.TestRingerButton.OnPressed += _ => { diff --git a/Content.Client/Paper/UI/PaperBoundUserInterface.cs b/Content.Client/Paper/UI/PaperBoundUserInterface.cs index 4b0ac868f01..f3ad1e347e7 100644 --- a/Content.Client/Paper/UI/PaperBoundUserInterface.cs +++ b/Content.Client/Paper/UI/PaperBoundUserInterface.cs @@ -1,4 +1,5 @@ using JetBrains.Annotations; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Utility; using static Content.Shared.Paper.SharedPaperComponent; @@ -19,16 +20,13 @@ protected override void Open() { base.Open(); - _window = new PaperWindow(); - _window.OnClose += Close; - _window.OnSaved += Input_OnTextEntered; + _window = this.CreateWindow(); + _window.OnSaved += InputOnTextEntered; if (EntMan.TryGetComponent(Owner, out var visuals)) { _window.InitVisuals(Owner, visuals); } - - _window.OpenCentered(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -37,7 +35,7 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.Populate((PaperBoundUserInterfaceState) state); } - private void Input_OnTextEntered(string text) + private void InputOnTextEntered(string text) { SendMessage(new PaperInputTextMessage(text)); @@ -47,11 +45,4 @@ private void Input_OnTextEntered(string text) _window.Input.CursorPosition = new TextEdit.CursorPos(0, TextEdit.LineBreakBias.Top); } } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } } diff --git a/Content.Client/Paper/UI/PaperWindow.xaml.cs b/Content.Client/Paper/UI/PaperWindow.xaml.cs index 7a5fd652643..f7cace642ce 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml.cs +++ b/Content.Client/Paper/UI/PaperWindow.xaml.cs @@ -17,6 +17,7 @@ namespace Content.Client.Paper.UI public sealed partial class PaperWindow : BaseWindow { [Dependency] private readonly IInputManager _inputManager = default!; + [Dependency] private readonly IResourceCache _resCache = default!; private static Color DefaultTextColor = new(25, 25, 25); @@ -85,11 +86,10 @@ public void InitVisuals(EntityUid entity, PaperVisualsComponent visuals) // Randomize the placement of any stamps based on the entity UID // so that there's some variety in different papers. StampDisplay.PlacementSeed = (int)entity; - var resCache = IoCManager.Resolve(); // Initialize the background: PaperBackground.ModulateSelfOverride = visuals.BackgroundModulate; - var backgroundImage = visuals.BackgroundImagePath != null? resCache.GetResource(visuals.BackgroundImagePath) : null; + var backgroundImage = visuals.BackgroundImagePath != null? _resCache.GetResource(visuals.BackgroundImagePath) : null; if (backgroundImage != null) { var backgroundImageMode = visuals.BackgroundImageTile ? StyleBoxTexture.StretchMode.Tile : StyleBoxTexture.StretchMode.Stretch; @@ -127,7 +127,7 @@ public void InitVisuals(EntityUid entity, PaperVisualsComponent visuals) PaperContent.ModulateSelfOverride = visuals.ContentImageModulate; WrittenTextLabel.ModulateSelfOverride = visuals.FontAccentColor; - var contentImage = visuals.ContentImagePath != null ? resCache.GetResource(visuals.ContentImagePath) : null; + var contentImage = visuals.ContentImagePath != null ? _resCache.GetResource(visuals.ContentImagePath) : null; if (contentImage != null) { // Setup the paper content texture, but keep a reference to it, as we can't set diff --git a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorBoundUserInterface.cs b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorBoundUserInterface.cs index cde5ba9ef79..93306f2fd1f 100644 --- a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorBoundUserInterface.cs +++ b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorBoundUserInterface.cs @@ -1,5 +1,5 @@ using Content.Shared.Singularity.Components; -using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.ParticleAccelerator.UI { @@ -16,9 +16,12 @@ protected override void Open() { base.Open(); - _menu = new ParticleAcceleratorControlMenu(this); - _menu.OnClose += Close; - _menu.OpenCentered(); + _menu = this.CreateWindow(); + _menu.SetEntity(Owner); + + _menu.OnOverallState += SendEnableMessage; + _menu.OnPowerState += SendPowerStateMessage; + _menu.OnScan += SendScanPartsMessage; } public void SendEnableMessage(bool enable) @@ -40,13 +43,5 @@ protected override void UpdateState(BoundUserInterfaceState state) { _menu?.DataUpdate((ParticleAcceleratorUIState) state); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - _menu?.Dispose(); - _menu = null; - } } } diff --git a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.cs b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.cs deleted file mode 100644 index c69e0271372..00000000000 --- a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.cs +++ /dev/null @@ -1,521 +0,0 @@ -using System.Numerics; -using Content.Client.Resources; -using Content.Client.Stylesheets; -using Content.Client.UserInterface.Controls; -using Content.Shared.Singularity.Components; -using Robust.Client.Animations; -using Robust.Client.Graphics; -using Robust.Client.ResourceManagement; -using Robust.Client.UserInterface; -using Robust.Client.UserInterface.Controls; -using Robust.Client.UserInterface.CustomControls; -using Robust.Shared.Noise; -using Robust.Shared.Prototypes; -using Robust.Shared.Timing; -using static Robust.Client.UserInterface.Controls.BoxContainer; - -namespace Content.Client.ParticleAccelerator.UI -{ - public sealed class ParticleAcceleratorControlMenu : BaseWindow - { - private readonly ShaderInstance _greyScaleShader; - - private readonly ParticleAcceleratorBoundUserInterface _owner; - - private readonly Label _drawLabel; - private readonly FastNoiseLite _drawNoiseGenerator; - private readonly Button _onButton; - private readonly Button _offButton; - private readonly Button _scanButton; - private readonly Label _statusLabel; - private readonly SpinBox _stateSpinBox; - - private readonly BoxContainer _alarmControl; - private readonly Animation _alarmControlAnimation; - - private readonly PASegmentControl _endCapTexture; - private readonly PASegmentControl _fuelChamberTexture; - private readonly PASegmentControl _controlBoxTexture; - private readonly PASegmentControl _powerBoxTexture; - private readonly PASegmentControl _emitterForeTexture; - private readonly PASegmentControl _emitterPortTexture; - private readonly PASegmentControl _emitterStarboardTexture; - - private float _time; - private int _lastDraw; - private int _lastReceive; - - private bool _blockSpinBox; - private bool _assembled; - private bool _shouldContinueAnimating; - private int _maxStrength = 3; - - public ParticleAcceleratorControlMenu(ParticleAcceleratorBoundUserInterface owner) - { - SetSize = new Vector2(400, 320); - _greyScaleShader = IoCManager.Resolve().Index("Greyscale").Instance(); - - _owner = owner; - _drawNoiseGenerator = new(); - _drawNoiseGenerator.SetFractalType(FastNoiseLite.FractalType.FBm); - _drawNoiseGenerator.SetFrequency(0.5f); - - var resourceCache = IoCManager.Resolve(); - var font = resourceCache.GetFont("/Fonts/Boxfont-round/Boxfont Round.ttf", 13); - var panelTex = resourceCache.GetTexture("/Textures/Interface/Nano/button.svg.96dpi.png"); - - MouseFilter = MouseFilterMode.Stop; - - _alarmControlAnimation = new Animation - { - Length = TimeSpan.FromSeconds(1), - AnimationTracks = - { - new AnimationTrackControlProperty - { - Property = nameof(Control.Visible), - KeyFrames = - { - new AnimationTrackProperty.KeyFrame(true, 0), - new AnimationTrackProperty.KeyFrame(false, 0.75f), - } - } - } - }; - - var back = new StyleBoxTexture - { - Texture = panelTex, - Modulate = Color.FromHex("#25252A"), - }; - back.SetPatchMargin(StyleBox.Margin.All, 10); - - var back2 = new StyleBoxTexture(back) - { - Modulate = Color.FromHex("#202023") - }; - - AddChild(new PanelContainer - { - PanelOverride = back, - MouseFilter = MouseFilterMode.Pass - }); - - _stateSpinBox = new SpinBox { Value = 0, IsValid = StrengthSpinBoxValid }; - _stateSpinBox.InitDefaultButtons(); - _stateSpinBox.ValueChanged += PowerStateChanged; - _stateSpinBox.LineEditDisabled = true; - - _offButton = new Button - { - ToggleMode = false, - Text = Loc.GetString("particle-accelerator-control-menu-off-button"), - StyleClasses = { StyleBase.ButtonOpenRight }, - }; - _offButton.OnPressed += args => owner.SendEnableMessage(false); - - _onButton = new Button - { - ToggleMode = false, - Text = Loc.GetString("particle-accelerator-control-menu-on-button"), - StyleClasses = { StyleBase.ButtonOpenLeft }, - }; - _onButton.OnPressed += args => owner.SendEnableMessage(true); - - var closeButton = new TextureButton - { - StyleClasses = { "windowCloseButton" }, - HorizontalAlignment = HAlignment.Right, - Margin = new Thickness(0, 0, 8, 0) - }; - closeButton.OnPressed += args => Close(); - - var serviceManual = new Label - { - HorizontalAlignment = HAlignment.Center, - StyleClasses = { StyleBase.StyleClassLabelSubText }, - Text = Loc.GetString("particle-accelerator-control-menu-service-manual-reference") - }; - _drawLabel = new Label(); - var imgSize = new Vector2(32, 32); - AddChild(new BoxContainer - { - Orientation = LayoutOrientation.Vertical, - Children = - { - new Control - { - Margin = new Thickness(2, 2, 0, 0), - Children = - { - new Label - { - Text = Loc.GetString("particle-accelerator-control-menu-device-version-label"), - FontOverride = font, - FontColorOverride = StyleNano.NanoGold, - }, - closeButton - } - }, - new PanelContainer - { - PanelOverride = new StyleBoxFlat {BackgroundColor = StyleNano.NanoGold}, - MinSize = new Vector2(0, 2), - }, - new Control - { - MinSize = new Vector2(0, 4) - }, - - new BoxContainer - { - Orientation = LayoutOrientation.Horizontal, - VerticalExpand = true, - Children = - { - new BoxContainer - { - Orientation = LayoutOrientation.Vertical, - Margin = new Thickness(4, 0, 0, 0), - HorizontalExpand = true, - Children = - { - new BoxContainer - { - Orientation = LayoutOrientation.Horizontal, - Children = - { - new Label - { - Text = Loc.GetString("particle-accelerator-control-menu-power-label") + " ", - HorizontalExpand = true, - HorizontalAlignment = HAlignment.Left, - }, - _offButton, - _onButton - } - }, - new BoxContainer - { - Orientation = LayoutOrientation.Horizontal, - Children = - { - new Label - { - Text = Loc.GetString("particle-accelerator-control-menu-strength-label") + " ", - HorizontalExpand = true, - HorizontalAlignment = HAlignment.Left, - }, - _stateSpinBox - } - }, - new Control - { - MinSize = new Vector2(0, 10), - }, - _drawLabel, - new Control - { - VerticalExpand = true, - }, - (_alarmControl = new BoxContainer - { - Orientation = LayoutOrientation.Vertical, - Children = - { - new Label - { - Text = Loc.GetString("particle-accelerator-control-menu-alarm-control"), - FontColorOverride = Color.Red, - Align = Label.AlignMode.Center - }, - serviceManual - }, - Visible = false, - }), - } - }, - new BoxContainer - { - Orientation = LayoutOrientation.Vertical, - MinSize = new Vector2(186, 0), - Children = - { - (_statusLabel = new Label - { - HorizontalAlignment = HAlignment.Center - }), - new Control - { - MinSize = new Vector2(0, 20) - }, - new PanelContainer - { - HorizontalAlignment = HAlignment.Center, - PanelOverride = back2, - Children = - { - new GridContainer - { - Columns = 3, - VSeparationOverride = 0, - HSeparationOverride = 0, - Children = - { - new Control {MinSize = imgSize}, - (_endCapTexture = Segment("end_cap")), - new Control {MinSize = imgSize}, - (_controlBoxTexture = Segment("control_box")), - (_fuelChamberTexture = Segment("fuel_chamber")), - new Control {MinSize = imgSize}, - new Control {MinSize = imgSize}, - (_powerBoxTexture = Segment("power_box")), - new Control {MinSize = imgSize}, - (_emitterStarboardTexture = Segment("emitter_starboard")), - (_emitterForeTexture = Segment("emitter_fore")), - (_emitterPortTexture = Segment("emitter_port")), - } - } - } - }, - (_scanButton = new Button - { - Text = Loc.GetString("particle-accelerator-control-menu-scan-parts-button"), - HorizontalAlignment = HAlignment.Center - }) - } - } - } - }, - new StripeBack - { - Children = - { - new Label - { - Margin = new Thickness(4, 4, 0, 4), - Text = Loc.GetString("particle-accelerator-control-menu-check-containment-field-warning"), - HorizontalAlignment = HAlignment.Center, - StyleClasses = {StyleBase.StyleClassLabelSubText}, - } - } - }, - new BoxContainer - { - Orientation = LayoutOrientation.Horizontal, - Margin = new Thickness(12, 0, 0, 0), - Children = - { - new Label - { - Text = Loc.GetString("particle-accelerator-control-menu-foo-bar-baz"), - StyleClasses = {StyleBase.StyleClassLabelSubText} - } - } - }, - } - }); - - _scanButton.OnPressed += args => _owner.SendScanPartsMessage(); - - _alarmControl.AnimationCompleted += s => - { - if (_shouldContinueAnimating) - { - _alarmControl.PlayAnimation(_alarmControlAnimation, "warningAnim"); - } - else - { - _alarmControl.Visible = false; - } - }; - - PASegmentControl Segment(string name) - { - return new(this, resourceCache, name); - } - - UpdateUI(false, false, false, false); - } - - private bool StrengthSpinBoxValid(int n) - { - return n >= 0 && n <= _maxStrength && !_blockSpinBox; - } - - private void PowerStateChanged(ValueChangedEventArgs e) - { - ParticleAcceleratorPowerState newState; - switch (e.Value) - { - case 0: - newState = ParticleAcceleratorPowerState.Standby; - break; - case 1: - newState = ParticleAcceleratorPowerState.Level0; - break; - case 2: - newState = ParticleAcceleratorPowerState.Level1; - break; - case 3: - newState = ParticleAcceleratorPowerState.Level2; - break; - case 4: - newState = ParticleAcceleratorPowerState.Level3; - break; - default: - return; - } - - _stateSpinBox.SetButtonDisabled(true); - _owner.SendPowerStateMessage(newState); - } - - protected override DragMode GetDragModeFor(Vector2 relativeMousePos) - { - return DragMode.Move; - } - - public void DataUpdate(ParticleAcceleratorUIState uiState) - { - _assembled = uiState.Assembled; - UpdateUI(uiState.Assembled, uiState.InterfaceBlock, uiState.Enabled, - uiState.WirePowerBlock); - _statusLabel.Text = Loc.GetString("particle-accelerator-control-menu-status-label", - ("status", Loc.GetString(uiState.Assembled ? "particle-accelerator-control-menu-status-operational" : - "particle-accelerator-control-menu-status-incomplete"))); - UpdatePowerState(uiState.State, uiState.Enabled, uiState.Assembled, - uiState.MaxLevel); - UpdatePreview(uiState); - _lastDraw = uiState.PowerDraw; - _lastReceive = uiState.PowerReceive; - } - - private void UpdatePowerState(ParticleAcceleratorPowerState state, bool enabled, bool assembled, - ParticleAcceleratorPowerState maxState) - { - _stateSpinBox.OverrideValue(state switch - { - ParticleAcceleratorPowerState.Standby => 0, - ParticleAcceleratorPowerState.Level0 => 1, - ParticleAcceleratorPowerState.Level1 => 2, - ParticleAcceleratorPowerState.Level2 => 3, - ParticleAcceleratorPowerState.Level3 => 4, - _ => 0 - }); - - - _maxStrength = maxState == ParticleAcceleratorPowerState.Level3 ? 4 : 3; - if (_maxStrength > 3 && enabled && assembled) - { - _shouldContinueAnimating = true; - if (!_alarmControl.HasRunningAnimation("warningAnim")) - _alarmControl.PlayAnimation(_alarmControlAnimation, "warningAnim"); - } - else - _shouldContinueAnimating = false; - } - - private void UpdateUI(bool assembled, bool blocked, bool enabled, bool powerBlock) - { - _onButton.Pressed = enabled; - _offButton.Pressed = !enabled; - - var cantUse = !assembled || blocked || powerBlock; - _onButton.Disabled = cantUse; - _offButton.Disabled = cantUse; - _scanButton.Disabled = blocked; - - var cantChangeLevel = !assembled || blocked; - _stateSpinBox.SetButtonDisabled(cantChangeLevel); - _blockSpinBox = cantChangeLevel; - } - - private void UpdatePreview(ParticleAcceleratorUIState updateMessage) - { - _endCapTexture.SetPowerState(updateMessage, updateMessage.EndCapExists); - _controlBoxTexture.SetPowerState(updateMessage, true); - _fuelChamberTexture.SetPowerState(updateMessage, updateMessage.FuelChamberExists); - _powerBoxTexture.SetPowerState(updateMessage, updateMessage.PowerBoxExists); - _emitterStarboardTexture.SetPowerState(updateMessage, updateMessage.EmitterStarboardExists); - _emitterForeTexture.SetPowerState(updateMessage, updateMessage.EmitterForeExists); - _emitterPortTexture.SetPowerState(updateMessage, updateMessage.EmitterPortExists); - } - - protected override void FrameUpdate(FrameEventArgs args) - { - base.FrameUpdate(args); - - if (!_assembled) - { - _drawLabel.Text = Loc.GetString("particle-accelerator-control-menu-draw-not-available"); - return; - } - - _time += args.DeltaSeconds; - - var watts = 0; - if (_lastDraw != 0) - { - var val = _drawNoiseGenerator.GetNoise(_time, 0f); - watts = (int) (_lastDraw + val * 5); - } - - _drawLabel.Text = Loc.GetString("particle-accelerator-control-menu-draw", - ("watts", $"{watts:##,##0}"), - ("lastReceive", $"{_lastReceive:##,##0}")); - } - - private sealed class PASegmentControl : Control - { - private readonly ParticleAcceleratorControlMenu _menu; - private readonly string _baseState; - private readonly TextureRect _base; - private readonly TextureRect _unlit; - private readonly RSI _rsi; - - public PASegmentControl(ParticleAcceleratorControlMenu menu, IResourceCache cache, string name) - { - _menu = menu; - _baseState = name; - _rsi = cache.GetResource($"/Textures/Structures/Power/Generation/PA/{name}.rsi").RSI; - - AddChild(_base = new TextureRect { Texture = _rsi[$"completed"].Frame0 }); - AddChild(_unlit = new TextureRect()); - MinSize = _rsi.Size; - } - - public void SetPowerState(ParticleAcceleratorUIState state, bool exists) - { - _base.ShaderOverride = exists ? null : _menu._greyScaleShader; - _base.ModulateSelfOverride = exists ? null : new Color(127, 127, 127); - - if (!state.Enabled || !exists) - { - _unlit.Visible = false; - return; - } - - _unlit.Visible = true; - - var suffix = state.State switch - { - ParticleAcceleratorPowerState.Standby => "_unlitp", - ParticleAcceleratorPowerState.Level0 => "_unlitp0", - ParticleAcceleratorPowerState.Level1 => "_unlitp1", - ParticleAcceleratorPowerState.Level2 => "_unlitp2", - ParticleAcceleratorPowerState.Level3 => "_unlitp3", - _ => "" - }; - - if (!_rsi.TryGetState(_baseState + suffix, out var rState)) - { - _unlit.Visible = false; - return; - } - - _unlit.Texture = rState.Frame0; - } - } - } -} diff --git a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml new file mode 100644 index 00000000000..63f15837068 --- /dev/null +++ b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml @@ -0,0 +1,74 @@ + + + + + + + + + + + + [DataField(required: true)] - public ComponentRegistry ChasingComponent = default!; + public ComponentRegistry ChasingComponent = []; /// /// The maximum radius in which the entity chooses the target component to follow diff --git a/Content.Server/Physics/Controllers/ChasingWalkSystem.cs b/Content.Server/Physics/Controllers/ChasingWalkSystem.cs index 618dd4156fc..fa55ce024e4 100644 --- a/Content.Server/Physics/Controllers/ChasingWalkSystem.cs +++ b/Content.Server/Physics/Controllers/ChasingWalkSystem.cs @@ -61,6 +61,9 @@ public override void UpdateBeforeSolve(bool prediction, float frameTime) private void ChangeTarget(EntityUid uid, ChasingWalkComponent component) { + if (component.ChasingComponent.Count <= 0) + return; + //We find our coordinates and calculate the radius of the target search. var xform = Transform(uid); var range = component.MaxChaseRadius; diff --git a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs index 09956e313f3..ea6f0ad3f45 100644 --- a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs +++ b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs @@ -35,7 +35,6 @@ public sealed class PlayTimeTrackingSystem : EntitySystem [Dependency] private readonly MindSystem _minds = default!; [Dependency] private readonly PlayTimeTrackingManager _tracking = default!; [Dependency] private readonly IAdminManager _adminManager = default!; - [Dependency] private readonly SharedRoleSystem _role = default!; public override void Initialize() { diff --git a/Content.Server/Pointing/EntitySystems/PointingSystem.cs b/Content.Server/Pointing/EntitySystems/PointingSystem.cs index 4b7f50fb86c..f2f60f3063e 100644 --- a/Content.Server/Pointing/EntitySystems/PointingSystem.cs +++ b/Content.Server/Pointing/EntitySystems/PointingSystem.cs @@ -152,9 +152,7 @@ public bool TryPoint(ICommonSession? session, EntityCoordinates coordsPointed, E if (TryComp(arrow, out var pointing)) { - if (TryComp(player, out TransformComponent? xformPlayer)) - pointing.StartPosition = _transform.ToCoordinates((player, xformPlayer), _transform.ToMapCoordinates(xformPlayer.Coordinates)).Position; - + pointing.StartPosition = _transform.ToCoordinates((arrow, Transform(arrow)), _transform.ToMapCoordinates(Transform(player).Coordinates)).Position; pointing.EndTime = _gameTiming.CurTime + PointDuration; Dirty(arrow, pointing); diff --git a/Content.Server/Power/EntitySystems/PowerNetSystem.cs b/Content.Server/Power/EntitySystems/PowerNetSystem.cs index 6c35ba20083..a7098649cef 100644 --- a/Content.Server/Power/EntitySystems/PowerNetSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerNetSystem.cs @@ -22,7 +22,6 @@ public sealed class PowerNetSystem : EntitySystem [Dependency] private readonly PowerNetConnectorSystem _powerNetConnector = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IParallelManager _parMan = default!; - [Dependency] private readonly PowerReceiverSystem _powerReceiver = default!; private readonly PowerState _powerState = new(); private readonly HashSet _powerNetReconnectQueue = new(); diff --git a/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs b/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs index 51520f04644..191d3fc4bdb 100644 --- a/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs @@ -21,7 +21,6 @@ public sealed class PowerReceiverSystem : SharedPowerReceiverSystem { [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly IAdminManager _adminManager = default!; - [Dependency] private readonly AppearanceSystem _appearance = default!; [Dependency] private readonly AudioSystem _audio = default!; private EntityQuery _recQuery; private EntityQuery _provQuery; diff --git a/Content.Server/Power/EntitySystems/StaticPowerSystem.cs b/Content.Server/Power/EntitySystems/StaticPowerSystem.cs index 9e11d9311af..61a23e501df 100644 --- a/Content.Server/Power/EntitySystems/StaticPowerSystem.cs +++ b/Content.Server/Power/EntitySystems/StaticPowerSystem.cs @@ -9,7 +9,7 @@ public static class StaticPowerSystem public static bool IsPowered(this EntitySystem system, EntityUid uid, IEntityManager entManager, ApcPowerReceiverComponent? receiver = null) { if (receiver == null && !entManager.TryGetComponent(uid, out receiver)) - return false; + return true; return receiver.Powered; } diff --git a/Content.Server/Procedural/DungeonSystem.cs b/Content.Server/Procedural/DungeonSystem.cs index b73e843fffd..9a7abb7e334 100644 --- a/Content.Server/Procedural/DungeonSystem.cs +++ b/Content.Server/Procedural/DungeonSystem.cs @@ -33,7 +33,6 @@ public sealed partial class DungeonSystem : SharedDungeonSystem [Dependency] private readonly AnchorableSystem _anchorable = default!; [Dependency] private readonly DecalSystem _decals = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; - [Dependency] private readonly TagSystem _tag = default!; [Dependency] private readonly TileSystem _tile = default!; [Dependency] private readonly MapLoaderSystem _loader = default!; [Dependency] private readonly SharedMapSystem _maps = default!; diff --git a/Content.Server/Silicons/Borgs/BorgSystem.cs b/Content.Server/Silicons/Borgs/BorgSystem.cs index 1c40e9489eb..3f32afbffbd 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.cs @@ -40,7 +40,6 @@ public sealed partial class BorgSystem : SharedBorgSystem [Dependency] private readonly IBanManager _banManager = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly SharedAccessSystem _access = default!; [Dependency] private readonly ActionsSystem _actions = default!; [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!; diff --git a/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs b/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs index e145e233e9e..8a918bd2fd0 100644 --- a/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs +++ b/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs @@ -17,7 +17,6 @@ public sealed partial class StationJobsSystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IBanManager _banManager = default!; - [Dependency] private readonly PlayTimeTrackingSystem _playTime = default!; private Dictionary> _jobsByWeight = default!; private List _orderedWeights = default!; diff --git a/Content.Server/Station/Systems/StationSystem.cs b/Content.Server/Station/Systems/StationSystem.cs index 84e44b6469c..5930eef39bd 100644 --- a/Content.Server/Station/Systems/StationSystem.cs +++ b/Content.Server/Station/Systems/StationSystem.cs @@ -27,10 +27,8 @@ namespace Content.Server.Station.Systems; [PublicAPI] public sealed class StationSystem : EntitySystem { - [Dependency] private readonly IConfigurationManager _cfgManager = default!; [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IPlayerManager _player = default!; - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ChatSystem _chatSystem = default!; [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; diff --git a/Content.Server/StationEvents/Components/MassHallucinationsComponent.cs b/Content.Server/StationEvents/Components/MassHallucinationsComponent.cs deleted file mode 100644 index 99b893cad51..00000000000 --- a/Content.Server/StationEvents/Components/MassHallucinationsComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Content.Server.StationEvents.Events; - -namespace Content.Server.StationEvents.Components; - -/// -/// This is used to keep track of hallucinated entities to remove effects when event ends -/// -[RegisterComponent, Access(typeof(MassHallucinationsRule))] -public sealed partial class MassHallucinationsComponent : Component -{ -} diff --git a/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs b/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs index 63a1f872513..a5268f97a62 100644 --- a/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs +++ b/Content.Server/StationEvents/Components/MassHallucinationsRuleComponent.cs @@ -1,5 +1,6 @@ using Content.Server.StationEvents.Events; using Robust.Shared.Audio; +using Robust.Shared.Collections; namespace Content.Server.StationEvents.Components; @@ -23,4 +24,7 @@ public sealed partial class MassHallucinationsRuleComponent : Component [DataField("sounds", required: true)] public SoundSpecifier Sounds = default!; + + [DataField, ViewVariables(VVAccess.ReadOnly)] + public List AffectedEntities = new(); } diff --git a/Content.Server/StationEvents/Events/MassHallucinationsRule.cs b/Content.Server/StationEvents/Events/MassHallucinationsRule.cs index bfb7699e9d6..b03231b5bcd 100644 --- a/Content.Server/StationEvents/Events/MassHallucinationsRule.cs +++ b/Content.Server/StationEvents/Events/MassHallucinationsRule.cs @@ -2,9 +2,11 @@ using Content.Server.StationEvents.Components; using Content.Server.Traits.Assorted; using Content.Shared.GameTicking.Components; +using Content.Shared.Humanoid; using Content.Shared.Mind.Components; using Content.Shared.Traits.Assorted; + namespace Content.Server.StationEvents.Events; public sealed class MassHallucinationsRule : StationEventSystem @@ -14,16 +16,17 @@ public sealed class MassHallucinationsRule : StationEventSystem(); - while (query.MoveNext(out var ent, out _)) + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ent, out _, out _)) { - if (!HasComp(ent)) + if (!EnsureComp(ent, out var paracusia)) { - EnsureComp(ent); - var paracusia = EnsureComp(ent); _paracusia.SetSounds(ent, component.Sounds, paracusia); _paracusia.SetTime(ent, component.MinTimeBetweenIncidents, component.MaxTimeBetweenIncidents, paracusia); _paracusia.SetDistance(ent, component.MaxSoundDistance); + + component.AffectedEntities.Add(ent); } } } @@ -31,10 +34,12 @@ protected override void Started(EntityUid uid, MassHallucinationsRuleComponent c protected override void Ended(EntityUid uid, MassHallucinationsRuleComponent component, GameRuleComponent gameRule, GameRuleEndedEvent args) { base.Ended(uid, component, gameRule, args); - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var ent, out _)) + + foreach (var ent in component.AffectedEntities) { RemComp(ent); } + + component.AffectedEntities.Clear(); } } diff --git a/Content.Server/Traits/TraitSystem.cs b/Content.Server/Traits/TraitSystem.cs index f41512b6ac2..3bd540a3049 100644 --- a/Content.Server/Traits/TraitSystem.cs +++ b/Content.Server/Traits/TraitSystem.cs @@ -11,7 +11,6 @@ namespace Content.Server.Traits; public sealed class TraitSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly ISerializationManager _serializationManager = default!; [Dependency] private readonly SharedHandsSystem _sharedHandsSystem = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; diff --git a/Content.Server/Zombies/ZombieSystem.Transform.cs b/Content.Server/Zombies/ZombieSystem.Transform.cs index a8952009e66..74adea6cd69 100644 --- a/Content.Server/Zombies/ZombieSystem.Transform.cs +++ b/Content.Server/Zombies/ZombieSystem.Transform.cs @@ -9,7 +9,6 @@ using Content.Server.Mind; using Content.Server.Mind.Commands; using Content.Server.NPC; -using Content.Server.NPC.Components; using Content.Server.NPC.HTN; using Content.Server.NPC.Systems; using Content.Server.Roles; @@ -24,10 +23,8 @@ using Content.Shared.Interaction.Components; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; -using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Pulling.Components; using Content.Shared.Movement.Systems; -using Content.Shared.NPC.Components; using Content.Shared.NPC.Systems; using Content.Shared.Nutrition.AnimalHusbandry; using Content.Shared.Nutrition.Components; @@ -38,6 +35,7 @@ using Content.Shared.Prying.Components; using Content.Shared.Traits.Assorted; using Robust.Shared.Audio.Systems; +using Content.Shared.Ghost.Roles.Components; namespace Content.Server.Zombies { diff --git a/Content.Shared/Access/Systems/AccessReaderSystem.cs b/Content.Shared/Access/Systems/AccessReaderSystem.cs index 5d1932a959c..2e0737c6ab2 100644 --- a/Content.Shared/Access/Systems/AccessReaderSystem.cs +++ b/Content.Shared/Access/Systems/AccessReaderSystem.cs @@ -155,7 +155,12 @@ public bool IsAllowed( return IsAllowedInternal(access, stationKeys, reader); if (!_containerSystem.TryGetContainer(target, reader.ContainerAccessProvider, out var container)) - return Paused(target); // when mapping, containers with electronics arent spawned + return false; + + // If entity is paused then always allow it at this point. + // Door electronics is kind of a mess but yeah, it should only be an unpaused ent interacting with it + if (Paused(target)) + return true; foreach (var entity in container.ContainedEntities) { diff --git a/Content.Shared/ActionBlocker/ActionBlockerSystem.cs b/Content.Shared/ActionBlocker/ActionBlockerSystem.cs index 005c7dc78ec..afa1e19eade 100644 --- a/Content.Shared/ActionBlocker/ActionBlockerSystem.cs +++ b/Content.Shared/ActionBlocker/ActionBlockerSystem.cs @@ -120,7 +120,13 @@ public bool CanThrow(EntityUid user, EntityUid itemUid) var ev = new ThrowAttemptEvent(user, itemUid); RaiseLocalEvent(user, ev); - return !ev.Cancelled; + if (ev.Cancelled) + return false; + + var itemEv = new ThrowItemAttemptEvent(user); + RaiseLocalEvent(itemUid, ref itemEv); + + return !itemEv.Cancelled; } public bool CanSpeak(EntityUid uid) diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 013348eb4f7..0033078b1b7 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -25,7 +25,6 @@ public abstract class SharedActionsSystem : EntitySystem [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; - [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly RotateToFaceSystem _rotateToFaceSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; @@ -238,7 +237,7 @@ private void OnRejuventate(EntityUid uid, ActionsComponent component, Rejuvenate } #region ComponentStateManagement - protected virtual void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null) + public virtual void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null) { // See client-side code. } diff --git a/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs b/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs index ed3c6366c13..9830e165e56 100644 --- a/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs +++ b/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs @@ -12,8 +12,6 @@ namespace Content.Shared.Beeper.Systems; /// public sealed class ProximityBeeperSystem : EntitySystem { - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly ProximityDetectionSystem _proximity = default!; [Dependency] private readonly BeeperSystem _beeper = default!; /// diff --git a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs index c1efe0b3ddd..897f3791561 100644 --- a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs +++ b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs @@ -14,13 +14,10 @@ namespace Content.Shared.Clothing; public sealed class ClothingSpeedModifierSystem : EntitySystem { - [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 ItemToggleSystem _toggle = default!; - [Dependency] private readonly SharedPowerCellSystem _powerCell = default!; public override void Initialize() { diff --git a/Content.Shared/Friends/Systems/PettableFriendSystem.cs b/Content.Shared/Friends/Systems/PettableFriendSystem.cs index 00a4ddd155c..6e41f4bdea9 100644 --- a/Content.Shared/Friends/Systems/PettableFriendSystem.cs +++ b/Content.Shared/Friends/Systems/PettableFriendSystem.cs @@ -32,23 +32,23 @@ private void OnUseInHand(Entity ent, ref UseInHandEvent { var (uid, comp) = ent; var user = args.User; - if (args.Handled || !_exceptionQuery.TryGetComponent(uid, out var exceptionComp)) - return; - - if (_useDelayQuery.TryGetComponent(uid, out var useDelay) && !_useDelay.TryResetDelay((uid, useDelay), true)) + if (args.Handled || !_exceptionQuery.TryComp(uid, out var exceptionComp)) return; var exception = (uid, exceptionComp); - if (_factionException.IsIgnored(exception, user)) + if (!_factionException.IsIgnored(exception, user)) { - _popup.PopupClient(Loc.GetString(comp.FailureString, ("target", uid)), user, user); + // you have made a new friend :) + _popup.PopupClient(Loc.GetString(comp.SuccessString, ("target", uid)), user, user); + _factionException.IgnoreEntity(exception, user); + args.Handled = true; return; } - // you have made a new friend :) - _popup.PopupClient(Loc.GetString(comp.SuccessString, ("target", uid)), user, user); - _factionException.IgnoreEntity(exception, user); - args.Handled = true; + if (_useDelayQuery.TryComp(uid, out var useDelay) && !_useDelay.TryResetDelay((uid, useDelay), true)) + return; + + _popup.PopupClient(Loc.GetString(comp.FailureString, ("target", uid)), user, user); } private void OnRehydrated(Entity ent, ref GotRehydratedEvent args) diff --git a/Content.Shared/Ghost/GhostRoleRadioEvents.cs b/Content.Shared/Ghost/GhostRoleRadioEvents.cs new file mode 100644 index 00000000000..8bdd6e58375 --- /dev/null +++ b/Content.Shared/Ghost/GhostRoleRadioEvents.cs @@ -0,0 +1,21 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Ghost.Roles; + +[Serializable, NetSerializable] +public sealed class GhostRoleRadioMessage : BoundUserInterfaceMessage +{ + public ProtoId ProtoId; + + public GhostRoleRadioMessage(ProtoId protoId) + { + ProtoId = protoId; + } +} + +[Serializable, NetSerializable] +public enum GhostRoleRadioUiKey : byte +{ + Key +} diff --git a/Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs b/Content.Shared/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs similarity index 85% rename from Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs rename to Content.Shared/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs index 6116173f904..2e44effad96 100644 --- a/Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs +++ b/Content.Shared/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs @@ -1,12 +1,11 @@ -using Robust.Shared.Prototypes; +using Robust.Shared.Prototypes; -namespace Content.Server.Ghost.Roles.Components +namespace Content.Shared.Ghost.Roles.Components { /// /// Allows a ghost to take this role, spawning a new entity. /// [RegisterComponent, EntityCategory("Spawner")] - [Access(typeof(GhostRoleSystem))] public sealed partial class GhostRoleMobSpawnerComponent : Component { [DataField] diff --git a/Content.Shared/Ghost/Roles/GhostRolePrototype.cs b/Content.Shared/Ghost/Roles/GhostRolePrototype.cs index bc36774ea8b..3e81b5e46e8 100644 --- a/Content.Shared/Ghost/Roles/GhostRolePrototype.cs +++ b/Content.Shared/Ghost/Roles/GhostRolePrototype.cs @@ -30,6 +30,13 @@ public sealed partial class GhostRolePrototype : IPrototype [DataField(required: true)] public EntProtoId EntityPrototype; + /// + /// The entity prototype's sprite to use to represent the ghost role + /// Use this if you don't want to use the entity itself + /// + [DataField] + public EntProtoId? IconPrototype = null; + /// /// Rules of the ghostrole /// diff --git a/Content.Shared/IconSmoothing/RandomIconSmoothComponent.cs b/Content.Shared/IconSmoothing/RandomIconSmoothComponent.cs new file mode 100644 index 00000000000..6cdf167b295 --- /dev/null +++ b/Content.Shared/IconSmoothing/RandomIconSmoothComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.IconSmoothing; + +/// +/// Allow randomize StateBase of IconSmoothComponent for random visual variation +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class RandomIconSmoothComponent : Component +{ + /// + /// StateBase will be randomly selected from this list. Allows to randomize the visual. + /// + [DataField(required: true)] + public List RandomStates = new(); +} diff --git a/Content.Shared/IconSmoothing/SharedRandomIconSmoothSystem.cs b/Content.Shared/IconSmoothing/SharedRandomIconSmoothSystem.cs new file mode 100644 index 00000000000..5cb5299858c --- /dev/null +++ b/Content.Shared/IconSmoothing/SharedRandomIconSmoothSystem.cs @@ -0,0 +1,12 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.IconSmoothing; + +public abstract class SharedRandomIconSmoothSystem : EntitySystem +{ +} +[Serializable, NetSerializable] +public enum RandomIconSmoothState : byte +{ + State +} diff --git a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs index f563440af04..557c316e26d 100644 --- a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs +++ b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs @@ -43,7 +43,6 @@ public sealed class PullingSystem : EntitySystem [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly HeldSpeedModifierSystem _clothingMoveSpeed = default!; public override void Initialize() diff --git a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs index 1385219e473..09be1085058 100644 --- a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs +++ b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs @@ -18,7 +18,6 @@ public sealed class DashAbilitySystem : EntitySystem { [Dependency] private readonly ActionContainerSystem _actionContainer = default!; [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedChargesSystem _charges = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; diff --git a/Content.Shared/Physics/CollisionGroup.cs b/Content.Shared/Physics/CollisionGroup.cs index 775ccb7c446..9f8c5ad9bef 100644 --- a/Content.Shared/Physics/CollisionGroup.cs +++ b/Content.Shared/Physics/CollisionGroup.cs @@ -58,7 +58,7 @@ public enum CollisionGroup // Tabletop machines, windoors, firelocks TabletopMachineMask = Impassable | HighImpassable, // Tabletop machines - TabletopMachineLayer = Opaque | HighImpassable | BulletImpassable, + TabletopMachineLayer = Opaque | BulletImpassable, // Airlocks, windoors, firelocks GlassAirlockLayer = HighImpassable | MidImpassable | BulletImpassable | InteractImpassable, diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index b718c3a6900..1f6f2b6918f 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -120,7 +120,10 @@ private void Embed(EntityUid uid, EntityUid target, EntityUid? user, EmbeddableP if (component.Offset != Vector2.Zero) { - _transform.SetLocalPosition(uid, xform.LocalPosition + xform.LocalRotation.RotateVec(component.Offset), + var rotation = xform.LocalRotation; + if (TryComp(uid, out var throwingAngleComp)) + rotation += throwingAngleComp.Angle; + _transform.SetLocalPosition(uid, xform.LocalPosition + rotation.RotateVec(component.Offset), xform); } diff --git a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs index cfa553661a3..7b050273db6 100644 --- a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs +++ b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs @@ -239,14 +239,14 @@ public void AddChannelsExamine(HashSet channels, string? defaultChannel, { var msg = Loc.GetString("examine-headset-default-channel", ("prefix", SharedChatSystem.DefaultChannelPrefix), - ("channel", defaultChannel), + ("channel", proto.LocalizedName), ("color", proto.Color)); examineEvent.PushMarkup(msg); } if (HasComp(examineEvent.Examined)) { var msg = Loc.GetString("examine-encryption-default-channel", - ("channel", defaultChannel), + ("channel", proto.LocalizedName), ("color", proto.Color)); examineEvent.PushMarkup(msg); } diff --git a/Content.Shared/Radio/RadioChannelPrototype.cs b/Content.Shared/Radio/RadioChannelPrototype.cs index cc65f885375..166db0577ea 100644 --- a/Content.Shared/Radio/RadioChannelPrototype.cs +++ b/Content.Shared/Radio/RadioChannelPrototype.cs @@ -9,7 +9,7 @@ public sealed partial class RadioChannelPrototype : IPrototype /// Human-readable name for the channel. /// [DataField("name")] - public string Name { get; private set; } = string.Empty; + public LocId Name { get; private set; } = string.Empty; [ViewVariables(VVAccess.ReadOnly)] public string LocalizedName => Loc.GetString(Name); diff --git a/Content.Shared/Storage/Components/ItemCounterComponent.cs b/Content.Shared/Storage/Components/ItemCounterComponent.cs index 890bc84e721..6a1444ebf62 100644 --- a/Content.Shared/Storage/Components/ItemCounterComponent.cs +++ b/Content.Shared/Storage/Components/ItemCounterComponent.cs @@ -1,4 +1,4 @@ -using Content.Shared.Storage.EntitySystems; +using Content.Shared.Storage.EntitySystems; using Content.Shared.Whitelist; namespace Content.Shared.Storage.Components diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 5c2e0080a69..4bb4192fc45 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -806,7 +806,11 @@ public void UpdateAppearance(Entity ent _appearance.SetData(uid, StorageVisuals.Capacity, capacity, appearance); _appearance.SetData(uid, StorageVisuals.Open, isOpen, appearance); _appearance.SetData(uid, SharedBagOpenVisuals.BagState, isOpen ? SharedBagState.Open : SharedBagState.Closed, appearance); - _appearance.SetData(uid, StackVisuals.Hide, !isOpen, appearance); + + // HideClosedStackVisuals true sets the StackVisuals.Hide to the open state of the storage. + // This is for containers that only show their contents when open. (e.g. donut boxes) + if (storage.HideStackVisualsWhenClosed) + _appearance.SetData(uid, StackVisuals.Hide, !isOpen, appearance); } /// diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs index 2860f8dacfe..a666169f529 100644 --- a/Content.Shared/Storage/StorageComponent.cs +++ b/Content.Shared/Storage/StorageComponent.cs @@ -123,6 +123,14 @@ public sealed partial class StorageComponent : Component [DataField, ViewVariables(VVAccess.ReadWrite)] public StorageDefaultOrientation? DefaultStorageOrientation; + /// + /// If true, sets StackVisuals.Hide to true when the container is closed + /// Used in cases where there are sprites that are shown when the container is open but not + /// when it is closed + /// + [DataField] + public bool HideStackVisualsWhenClosed = true; + [Serializable, NetSerializable] public enum StorageUiKey : byte { diff --git a/Content.Shared/Throwing/ThrowAttemptEvent.cs b/Content.Shared/Throwing/ThrowAttemptEvent.cs index bf8cad6c746..dfb3dca5c7d 100644 --- a/Content.Shared/Throwing/ThrowAttemptEvent.cs +++ b/Content.Shared/Throwing/ThrowAttemptEvent.cs @@ -13,6 +13,14 @@ public ThrowAttemptEvent(EntityUid uid, EntityUid itemUid) public EntityUid ItemUid { get; } } + /// + /// Raised on the item entity that is thrown. + /// + /// The user that threw this entity. + /// Whether or not the throw should be cancelled. + [ByRefEvent] + public record struct ThrowItemAttemptEvent(EntityUid User, bool Cancelled = false); + /// /// Raised when we try to pushback an entity from throwing /// diff --git a/Content.Shared/Weapons/Melee/Events/AttemptMeleeEvent.cs b/Content.Shared/Weapons/Melee/Events/AttemptMeleeEvent.cs index 2800e3b34da..cbcadcd19f9 100644 --- a/Content.Shared/Weapons/Melee/Events/AttemptMeleeEvent.cs +++ b/Content.Shared/Weapons/Melee/Events/AttemptMeleeEvent.cs @@ -4,4 +4,4 @@ namespace Content.Shared.Weapons.Melee.Events; /// Raised directed on a weapon when attempt a melee attack. /// [ByRefEvent] -public record struct AttemptMeleeEvent(bool Cancelled, string? Message); +public record struct AttemptMeleeEvent(EntityUid User, bool Cancelled = false, string? Message = null); diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index c2a50fe7733..0cc87f62f8e 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -478,7 +478,7 @@ protected void MuzzleFlash(EntityUid gun, AmmoComponent component, Angle worldAn return; var ev = new MuzzleFlashEvent(GetNetEntity(gun), sprite, worldAngle); - CreateEffect(gun, ev, user); + CreateEffect(gun, ev, gun); } public void CauseImpulse(EntityCoordinates fromCoordinates, EntityCoordinates toCoordinates, EntityUid user, PhysicsComponent userPhysics) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2ba6a098e0e..3066419802b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,219 +1,4 @@ Entries: -- author: FungiFellow - changes: - - message: Truncheon now fits in SecBelt - type: Tweak - id: 6432 - time: '2024-04-24T13:43:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27281 -- author: pigeonpeas - changes: - - message: Adds a trash bag to the advanced cleaning module. - type: Add - id: 6433 - time: '2024-04-24T21:27:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27226 -- author: Beck Thompson - changes: - - message: Radio jammer now has 3 selectable power operating levels and a battery - level led indicator! - type: Tweak - id: 6434 - time: '2024-04-25T02:19:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25912 -- author: cooldolphin - changes: - - message: Three variants of glasses are now available in the loadout menu. - type: Add - id: 6435 - time: '2024-04-25T23:18:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27286 -- author: EmoGarbage404 - changes: - - message: Traitors now have the correct number of objectives. - type: Fix - - message: Declaring war now gives TC again. - type: Fix - - message: Latejoining antagonists will now properly exclude command and security - staff. - type: Fix - id: 6436 - time: '2024-04-26T00:25:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27319 -- author: Tayrtahn - changes: - - message: Fixed Bibles not healing. - type: Fix - - message: Fixed quick insert and area insert not working on ore/plant/trash bags. - type: Fix - id: 6437 - time: '2024-04-26T02:25:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27234 -- author: SkaldetSkaeg - changes: - - message: The handheld radio no longer plays a message spoken into it. - type: Tweak - id: 6438 - time: '2024-04-26T07:34:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27046 -- author: FungiFellow - changes: - - message: Added SecBelt whitelist to Sec webbing - type: Tweak - - message: Added more Ammo holders to SecBelt whitelist - type: Tweak - id: 6439 - time: '2024-04-26T07:44:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27303 -- author: IlyaElDunaev - changes: - - message: Ammonia heal blood loss in the Rat King - type: Add - id: 6440 - time: '2024-04-26T07:47:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26887 -- author: FungiFellow - changes: - - message: Added Quiver Recipe, go wild Robin Hood. - type: Add - id: 6441 - time: '2024-04-26T07:48:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27198 -- author: Boaz1111 - changes: - - message: Refactored Cluster's medbay, including cryo in the bottom left room - type: Tweak - id: 6442 - time: '2024-04-26T08:01:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27293 -- author: metalgearsloth - changes: - - message: Add predicted UI opening for storage and PDAs. - type: Add - id: 6443 - time: '2024-04-26T08:16:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27214 -- author: DrSmugleaf - changes: - - message: Fixed mobs that are able to pry doors not being able to do so by just - left clicking on them. - type: Fix - id: 6444 - time: '2024-04-26T12:17:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27349 -- author: WarMechanic - changes: - - message: Fixed unwielding overruling gun cycling - type: Fix - id: 6445 - time: '2024-04-26T12:31:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27307 -- author: wafehling - changes: - - message: You can now reopen the end of round summary window with F9. - type: Tweak - id: 6446 - time: '2024-04-26T12:39:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25884 -- author: DrSmugleaf - changes: - - message: Fixed the game never starting again if it fails to start once. - type: Fix - id: 6447 - time: '2024-04-26T13:02:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27359 -- author: Dutch-VanDerLinde - changes: - - message: Monkey reinforcement teleporters can now select between kobold and monkey - operative with a verb. - type: Tweak - - message: Monkey reinforcement teleporters have been renamed to "genetic ancestor - reinforcement teleporter". - type: Tweak - id: 6448 - time: '2024-04-26T13:06:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25982 -- author: fujiwaranao - changes: - - message: Players may now select the Creepy Long hairstyle and an appropriately - creepy dress to go with it can be found in theatrical performances crates. - type: Add - id: 6449 - time: '2024-04-26T18:51:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27333 -- author: Pgriha - changes: - - message: Increase limit of characters 10 -> 30. - type: Tweak - id: 6450 - time: '2024-04-26T22:58:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27361 -- author: AllenTheGreat - changes: - - message: The Agent ID card will no longer reset the selected job icon between - UI loads - type: Fix - id: 6451 - time: '2024-04-27T05:13:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27379 -- author: Slava0135 - changes: - - message: added cancer mouse! (for real this time) - type: Add - id: 6452 - time: '2024-04-27T05:46:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26768 -- author: EmoGarbage404 - changes: - - message: Added the welding gas mask to salvage equipment research. - type: Add - id: 6453 - time: '2024-04-27T05:47:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27108 -- author: VigersRay - changes: - - message: Angered NPC now can unbuckle, unpull and escape from containers. - type: Fix - id: 6454 - time: '2024-04-27T05:58:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26868 -- author: Lukasz825700516 - changes: - - message: Fixed undeconstructable objects showing deconstruct verb. - type: Fix - id: 6455 - time: '2024-04-27T06:30:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27387 -- author: ps3moira - changes: - - message: Added Canes to the CuraDrobe and Cane Blades for Syndicate Librarians - type: Add - id: 6456 - time: '2024-04-27T10:22:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25873 -- author: Lukasz825700516 - changes: - - message: Fixed books containing localization keys. - type: Fix - id: 6457 - time: '2024-04-27T10:23:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27390 -- author: Errant - changes: - - message: Vox now take significant damage over time while inhaling oxygen. - type: Tweak - id: 6458 - time: '2024-04-27T10:33:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26705 -- author: TheShuEd - changes: - - message: Added tomato killers in floral anomaly berries - type: Add - - message: tweak size and damage of killer tomatoes - type: Tweak - id: 6459 - time: '2024-04-27T10:35:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27265 - author: Plykiya changes: - message: You can no longer print singular bullets at the security techfab. @@ -3805,3 +3590,211 @@ id: 6931 time: '2024-07-18T00:48:09.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30136 +- author: Sh18RW + changes: + - message: Moth can't eat boots with an item more + type: Fix + id: 6932 + time: '2024-07-18T22:34:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30019 +- author: portfiend + changes: + - message: Reptilians display correct mask sprites in character customization screen. + type: Fix + id: 6933 + time: '2024-07-18T22:36:53.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30095 +- author: Plykiya + changes: + - message: You no longer deal double damage to your first target when throwing an + item. + type: Fix + id: 6934 + time: '2024-07-19T01:08:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30115 +- author: deepdarkdepths + changes: + - message: Removed the description about geras in the Slime guidebook section. + type: Remove + id: 6935 + time: '2024-07-19T09:04:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30140 +- author: Blackern5000 + changes: + - message: Nuclear operatives are now able to purchase durable armor which is NOT + space-proof. + type: Add + id: 6936 + time: '2024-07-19T09:38:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29845 +- author: Plykiya, slarticodefast + changes: + - message: Explosive pens now correctly embed into their target. + type: Fix + id: 6937 + time: '2024-07-19T09:42:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30112 +- author: ThatOneEnby1337 + changes: + - message: News Reporters are now able to use markup tags in their reports without + bricking the PDAs of readers + type: Fix + id: 6938 + time: '2024-07-19T14:18:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30169 +- author: themias + changes: + - message: Mailing units are functional again + type: Fix + id: 6939 + time: '2024-07-20T02:31:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30174 +- author: Ghagliiarghii + changes: + - message: Nuclear Operatives' Reinforcements now have a PDA! + type: Tweak + id: 6940 + time: '2024-07-20T02:59:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28088 +- author: Plykiya + changes: + - message: Chameleon scarves now work again. + type: Fix + id: 6941 + time: '2024-07-20T03:00:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30156 +- author: Aidenkrz + changes: + - message: The mass hallucinations event no longer affects non-humanoids. + type: Fix + id: 6942 + time: '2024-07-20T05:53:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28748 +- author: buntobaggins + changes: + - message: Increased light radius on the Spationaut Hardsuit + type: Tweak + id: 6943 + time: '2024-07-21T03:29:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30049 +- author: EmoGarbage404 + changes: + - message: Fixed wires not updating UI on the Particle Accelerator. + type: Fix + id: 6944 + time: '2024-07-21T05:27:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28750 +- author: CroilBird + changes: + - message: 6-pack of cola displays correctly when not being handled + type: Fix + id: 6945 + time: '2024-07-21T05:49:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29309 +- author: metalgearsloth + changes: + - message: Fix muzzle flashes not tracking properly. + type: Fix + id: 6946 + time: '2024-07-21T06:09:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30163 +- author: metalgearsloth + changes: + - message: Fix being able to throw items while your cursor is off-screen. + type: Fix + id: 6947 + time: '2024-07-21T06:13:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30164 +- author: metalgearsloth + changes: + - message: Reset the scroll bar in the ghost warp menu whenever you search for a + role. Previously it remained at your previous position and you would have to + scroll up to see the first entry. + type: Tweak + id: 6948 + time: '2024-07-21T06:38:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30159 +- author: Blackern5000 + changes: + - message: The syndicate agent's cyborg weapons module now uses syndicate weaponry + rather than NT weaponry. + type: Tweak + id: 6949 + time: '2024-07-21T07:04:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26947 +- author: Winkarst-cpu + changes: + - message: Added ambience to the camera routers and telecommunication servers. + type: Add + - message: Now server's and router's ambience stops once they are unpowered. + type: Fix + id: 6950 + time: '2024-07-21T07:22:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30091 +- author: Scott Dimeling + changes: + - message: Reduced the number of botanists in some stations, for optimal _workflow_ + type: Tweak + id: 6951 + time: '2024-07-21T07:23:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29581 +- author: metalgearsloth + changes: + - message: Escape pods won't show up on shuttle map anymore. + type: Tweak + id: 6952 + time: '2024-07-21T07:23:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29758 +- author: IProduceWidgets + changes: + - message: an arabian lamp! + type: Add + id: 6953 + time: '2024-07-21T07:24:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27270 +- author: osjarw + changes: + - message: NPCs no longer get stuck trying to pick up anchored pipes. + type: Fix + id: 6954 + time: '2024-07-21T07:28:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30061 +- author: The Hands Leader - JoJo cat + changes: + - message: Train map is back into rotation + type: Tweak + id: 6955 + time: '2024-07-21T07:44:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30145 +- author: Plykiya + changes: + - message: Syndicate traitor reinforcements are now specialized to be medics, spies, + or thieves. + type: Add + - message: Reinforcement radios with options now have a radial menu, similar to + RCDs. + type: Tweak + id: 6956 + time: '2024-07-21T10:32:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29853 +- author: Cojoke-dot + changes: + - message: Dead Space Dragons no long despawn + type: Fix + id: 6957 + time: '2024-07-21T10:46:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29842 +- author: slarticodefast + changes: + - message: Fixed microwave construction. + type: Fix + id: 6958 + time: '2024-07-21T16:20:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30232 +- author: Sphiral&Kezu + changes: + - message: 'Added a variety of new wall based storages: Shelfs! Build some today!' + type: Add + id: 6959 + time: '2024-07-21T17:16:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27858 diff --git a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl index 98f31e0ab07..b2082f77280 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -197,6 +197,16 @@ ghost-role-information-syndicate-reinforcement-name = Syndicate Agent ghost-role-information-syndicate-reinforcement-description = Someone needs reinforcements. You, the first person the syndicate could find, will help them. ghost-role-information-syndicate-reinforcement-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with the agent who summoned you. +ghost-role-information-syndicate-reinforcement-medic-name = Syndicate Medic +ghost-role-information-syndicate-reinforcement-medic-description = Someone needs reinforcements. Your task is to keep the agent who called you alive. + +ghost-role-information-syndicate-reinforcement-spy-name = Syndicate Spy +ghost-role-information-syndicate-reinforcement-spy-description = Someone needs reinforcements. Your speciality lies in espionage, do not be discovered. + +ghost-role-information-syndicate-reinforcement-thief-name = Syndicate Thief +ghost-role-information-syndicate-reinforcement-thief-description = Someone needs reinforcements. Your job is to break in and retrieve something valuable for your agent. + + ghost-role-information-syndicate-monkey-reinforcement-name = Syndicate Monkey Agent ghost-role-information-syndicate-monkey-reinforcement-description = Someone needs reinforcements. You, a trained monkey, will help them. ghost-role-information-syndicate-monkey-reinforcement-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with the agent who summoned you. diff --git a/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl b/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl index 6bc3ec50684..da3221e4f85 100644 --- a/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl +++ b/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl @@ -2,15 +2,21 @@ particle-accelerator-control-menu-on-button = On particle-accelerator-control-menu-off-button = Off particle-accelerator-control-menu-service-manual-reference = Refer to p.132 of service manual particle-accelerator-control-menu-device-version-label = Mark 2 Particle Accelerator -particle-accelerator-control-menu-power-label = Power: -particle-accelerator-control-menu-strength-label = Strength: -particle-accelerator-control-menu-alarm-control = PARTICLE STRENGTH - LIMITER FAILURE +particle-accelerator-control-menu-power-label = [bold]Power:[/bold] +particle-accelerator-control-menu-strength-label = [bold]Strength:[/bold] +particle-accelerator-control-menu-alarm-control-1 = [bold][color=red]PARTICLE STRENGTH[/bold][/color] +particle-accelerator-control-menu-alarm-control-2 = [bold][color=red]LIMITER FAILURE[/bold][/color] particle-accelerator-control-menu-scan-parts-button = Scan Parts particle-accelerator-control-menu-check-containment-field-warning = Ensure containment field is active before operation particle-accelerator-control-menu-foo-bar-baz = FOO-BAR-BAZ -particle-accelerator-control-menu-status-label = Status: {$status} -particle-accelerator-control-menu-status-operational = Operational -particle-accelerator-control-menu-status-incomplete = Incomplete -particle-accelerator-control-menu-draw-not-available = Draw: N/A -particle-accelerator-control-menu-draw = Draw: {$watts}/{$lastReceive} \ No newline at end of file +particle-accelerator-control-menu-status-label = [bold]Status:[/bold] +particle-accelerator-control-menu-status-unknown = [font="Monospace"][color=red]Unknown[/color][/bold] +particle-accelerator-control-menu-status-operational = [font="Monospace"][color=green]Operational[/color][/bold] +particle-accelerator-control-menu-status-incomplete = [font="Monospace"][color=red]Incomplete[/color][/bold] +particle-accelerator-control-menu-draw = [bold]Draw:[/bold] +particle-accelerator-control-menu-draw-value = [font="Monospace"]{$watts}/{$lastReceive}[/font] +particle-accelerator-control-menu-draw-not-available = [font="Monospace"][color=gray]N/A[/color][/font] + +particle-accelerator-radio-message-on = PA power has been switched on. +particle-accelerator-radio-message-off = PA power has been switched off. +particle-accelerator-radio-message-num = PA strength has been set to level {$level}. diff --git a/Resources/Locale/en-US/prayers/prayers.ftl b/Resources/Locale/en-US/prayers/prayers.ftl index 532ba4954f0..313de6322fd 100644 --- a/Resources/Locale/en-US/prayers/prayers.ftl +++ b/Resources/Locale/en-US/prayers/prayers.ftl @@ -1,16 +1,19 @@ prayer-verbs-subtle-message = Subtle Message prayer-verbs-pray = Pray prayer-verbs-call = Call +prayer-verbs-rub = Rub prayer-chat-notify-pray = PRAYER prayer-chat-notify-honkmother = HONKMOTHER prayer-chat-notify-centcom = CENTCOM prayer-chat-notify-syndicate = SYNDICATE +prayer-chat-notify-lamp = LAMP prayer-popup-subtle-default = You hear a voice in your head... prayer-popup-notify-honkmother-sent = You left a voicemail message for the Honkmother... prayer-popup-notify-centcom-sent = You left a voicemail message for Central Command... prayer-popup-notify-syndicate-sent = You left a voicemail message for Syndicate High Command... +prayer-popup-notify-lamp-sent = Your thoughts seem to echo... prayer-popup-notify-pray-sent = Your message has been sent to the gods... prayer-popup-notify-pray-locked = You don't feel worthy enough... prayer-popup-notify-pray-ui-message = Message diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 02ce44b1555..70a307977b7 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -124,8 +124,10 @@ uplink-black-jetpack-desc = A black jetpack. It allows you to fly around in spac uplink-reinforcement-radio-ancestor-name = Genetic Ancestor Reinforcement Teleporter uplink-reinforcement-radio-ancestor-desc = Call in a trained ancestor of your choosing to assist you. Comes with a single syndicate cigarette. + uplink-reinforcement-radio-name = Reinforcement Teleporter -uplink-reinforcement-radio-desc = Radio in a reinforcement agent of extremely questionable quality. No off button, buy this if you're ready to party. They have a pistol with no reserve ammo, and a knife. That's it. +uplink-reinforcement-radio-traitor-desc = Radio in a reinforcement agent of extremely questionable quality. No off button, buy this if you're ready to party. Call in a medic or spy or thief to help you out. Good luck. +uplink-reinforcement-radio-nukeops-desc = Radio in a reinforcement agent of extremely questionable quality. No off button, buy this if you're ready to party. They have a pistol with no reserve ammo, and a knife. That's it. uplink-reinforcement-radio-cyborg-assault-name = Syndicate Assault Cyborg Teleporter uplink-reinforcement-radio-cyborg-assault-desc = A lean, mean killing machine with access to an Energy Sword, LMG, Cryptographic Sequencer, and a Pinpointer. @@ -317,6 +319,9 @@ uplink-hardsuit-carp-desc = Looks like an ordinary carp suit, except fully space uplink-hardsuit-syndie-name = Syndicate Hardsuit uplink-hardsuit-syndie-desc = The Syndicate's well known armored blood red hardsuit, capable of space walks and bullet resistant. +uplink-syndie-raid-name = Syndicate Raid Suit +uplink-syndie-raid-desc = A very durable and reasonably flexible suit of blood-red armor, reinforced against all common forms of damage but not capable of space walks. Comes with a sick helmet. + uplink-hardsuit-syndieelite-name = Syndicate Elite Hardsuit uplink-hardsuit-syndieelite-desc = An elite version of the blood-red hardsuit, with improved mobility and fireproofing. Property of Gorlex Marauders. diff --git a/Resources/Maps/Dungeon/snowy_labs.yml b/Resources/Maps/Dungeon/snowy_labs.yml index 1211d7a6642..3ce318951c9 100644 --- a/Resources/Maps/Dungeon/snowy_labs.yml +++ b/Resources/Maps/Dungeon/snowy_labs.yml @@ -10731,7 +10731,7 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,14.5 parent: 1653 -- proto: MagicalLamp +- proto: ArabianLamp entities: - uid: 1204 components: diff --git a/Resources/Maps/Nonstations/nukieplanet.yml b/Resources/Maps/Nonstations/nukieplanet.yml index 8fea2a6cfc2..2e6076182d2 100644 --- a/Resources/Maps/Nonstations/nukieplanet.yml +++ b/Resources/Maps/Nonstations/nukieplanet.yml @@ -1625,8 +1625,6 @@ entities: - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding - - type: BecomesStation - id: SyndicateOutpost - uid: 1295 components: - type: MetaData @@ -11002,13 +11000,6 @@ entities: - type: Transform pos: 18.918644,6.663283 parent: 104 -- proto: SyndicateMicrowave - entities: - - uid: 10 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 104 - proto: KitchenReagentGrinder entities: - uid: 1257 @@ -13234,6 +13225,13 @@ entities: - SurveillanceCameraEntertainment nameSet: True id: Weeh +- proto: SyndicateMicrowave + entities: + - uid: 10 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 104 - proto: SyndicatePersonalAI entities: - uid: 160 diff --git a/Resources/Maps/Shuttles/emergency_cluster.yml b/Resources/Maps/Shuttles/emergency_cluster.yml index 8707b14ca02..3cc14505fee 100644 --- a/Resources/Maps/Shuttles/emergency_cluster.yml +++ b/Resources/Maps/Shuttles/emergency_cluster.yml @@ -38,7 +38,7 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACcQAAAAABeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAbAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACJgAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAAAcQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAABIgAAAAACeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAABHQAAAAADZAAAAAADZAAAAAACHQAAAAAAZAAAAAACHQAAAAABZAAAAAACZAAAAAACHQAAAAACJgAAAAADJgAAAAAA + tiles: AAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACcQAAAAABeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAbAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACJgAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAAAcQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAABIgAAAAACeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAABHQAAAAADZAAAAAADZAAAAAACHQAAAAAAZAAAAAACHQAAAAABZAAAAAACZAAAAAACHQAAAAACJgAAAAADJgAAAAAA version: 6 0,0: ind: 0,0 diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index c5b3f107d99..ba4c444e663 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -385,11 +385,11 @@ entities: - type: Transform - type: Map - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Broadphase - type: OccluderTree - type: LoadedMap - - type: GridTree - - type: MovedGrids - proto: AirAlarm entities: - uid: 800 @@ -401,8 +401,6 @@ entities: - type: DeviceList devices: - 801 - - type: AtmosDevice - joinedGrid: 179 - proto: AirCanister entities: - uid: 458 @@ -410,8 +408,6 @@ entities: - type: Transform pos: 7.5,-0.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: Airlock entities: - uid: 48 @@ -901,33 +897,21 @@ entities: - type: Transform pos: -2.5,-14.5 parent: 179 - - type: DeviceLinkSink - links: - - 1013 - uid: 697 components: - type: Transform pos: 1.5,-14.5 parent: 179 - - type: DeviceLinkSink - links: - - 1014 - uid: 698 components: - type: Transform pos: 1.5,-16.5 parent: 179 - - type: DeviceLinkSink - links: - - 1014 - uid: 984 components: - type: Transform pos: -2.5,-16.5 parent: 179 - - type: DeviceLinkSink - links: - - 1013 - proto: BoozeDispenser entities: - uid: 752 @@ -2660,13 +2644,6 @@ entities: - type: Transform pos: 24.5,5.5 parent: 179 -- proto: chem_master - entities: - - uid: 311 - components: - - type: Transform - pos: 8.5,11.5 - parent: 179 - proto: ChemDispenser entities: - uid: 583 @@ -2704,6 +2681,13 @@ entities: - type: Transform pos: 6.4651074,9.828774 parent: 179 +- proto: ChemMaster + entities: + - uid: 311 + components: + - type: Transform + pos: 8.5,11.5 + parent: 179 - proto: ChemMasterMachineCircuitboard entities: - uid: 718 @@ -3031,27 +3015,18 @@ entities: - type: Transform pos: -2.5,-15.5 parent: 179 - - type: DeviceLinkSink - links: - - 699 - uid: 259 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-14.5 parent: 179 - - type: DeviceLinkSink - links: - - 983 - uid: 463 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-16.5 parent: 179 - - type: DeviceLinkSink - links: - - 983 - uid: 677 components: - type: Transform @@ -3063,61 +3038,40 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,11.5 parent: 179 - - type: DeviceLinkSink - links: - - 722 - uid: 720 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,11.5 parent: 179 - - type: DeviceLinkSink - links: - - 722 - uid: 721 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,11.5 parent: 179 - - type: DeviceLinkSink - links: - - 722 - uid: 985 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 179 - - type: DeviceLinkSink - links: - - 983 - uid: 989 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-15.5 parent: 179 - - type: DeviceLinkSink - links: - - 983 - uid: 990 components: - type: Transform pos: -2.5,-13.5 parent: 179 - - type: DeviceLinkSink - links: - - 699 - uid: 991 components: - type: Transform pos: -2.5,-16.5 parent: 179 - - type: DeviceLinkSink - links: - - 699 - proto: CrateEngineeringToolbox entities: - uid: 692 @@ -3575,8 +3529,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasMixer entities: - uid: 747 @@ -3585,8 +3537,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasOutletInjector entities: - uid: 429 @@ -3595,8 +3545,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasPipeBend entities: - uid: 727 @@ -3635,8 +3583,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasPressurePump entities: - uid: 171 @@ -3645,8 +3591,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasValve entities: - uid: 168 @@ -3655,8 +3599,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasVentPump entities: - uid: 729 @@ -3665,8 +3607,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-3.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasVentScrubber entities: - uid: 452 @@ -3675,8 +3615,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasVolumePump entities: - uid: 160 @@ -3685,8 +3623,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GeigerCounter entities: - uid: 759 @@ -4223,9 +4159,6 @@ entities: - type: Transform pos: 12.5,24.5 parent: 179 - - type: DeviceLinkSink - links: - - 1083 - proto: MachineFrame entities: - uid: 533 @@ -4379,8 +4312,6 @@ entities: - type: Transform pos: 7.5,-1.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: Ointment entities: - uid: 148 @@ -4400,8 +4331,6 @@ entities: - type: Transform pos: 7.5,-3.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: PaperBin10 entities: - uid: 977 @@ -4435,8 +4364,6 @@ entities: - type: Transform pos: 7.5,-2.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: PlasticFlapsAirtightClear entities: - uid: 997 @@ -5112,7 +5039,7 @@ entities: - type: Transform pos: -6.5,-12.5 parent: 179 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 751 components: @@ -5178,20 +5105,6 @@ entities: - type: Transform pos: -3.5,4.5 parent: 179 -- proto: SpawnVehicleATV - entities: - - uid: 1176 - components: - - type: Transform - pos: -7.5,1.5 - parent: 179 -- proto: SpawnVehicleJanicart - entities: - - uid: 904 - components: - - type: Transform - pos: 5.5,16.5 - parent: 179 - proto: Spear entities: - uid: 185 @@ -5823,20 +5736,6 @@ entities: - type: Transform pos: -7.5,4.5 parent: 179 -- proto: VehicleKeyATV - entities: - - uid: 1187 - components: - - type: Transform - pos: -6.8905525,1.5128828 - parent: 179 -- proto: VehicleKeyJanicart - entities: - - uid: 14 - components: - - type: Transform - pos: 6.5,16.5 - parent: 179 - proto: VendingMachineCigs entities: - uid: 870 diff --git a/Resources/Maps/atlas.yml b/Resources/Maps/atlas.yml index d49fdbd2baa..1702375660e 100644 --- a/Resources/Maps/atlas.yml +++ b/Resources/Maps/atlas.yml @@ -3718,9 +3718,6 @@ entities: - type: Transform pos: -9.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 5310 - type: DeviceLinkSource linkedPorts: 5310: @@ -3730,9 +3727,6 @@ entities: - type: Transform pos: -7.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 1339 - type: DeviceLinkSource linkedPorts: 1339: @@ -3742,9 +3736,6 @@ entities: - type: Transform pos: -37.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 5993 - type: DeviceLinkSource linkedPorts: 5993: @@ -3754,9 +3745,6 @@ entities: - type: Transform pos: -37.5,20.5 parent: 30 - - type: DeviceLinkSink - links: - - 5990 - type: DeviceLinkSource linkedPorts: 5990: @@ -3767,12 +3755,24 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-22.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8258: + - DoorStatus: DoorBolt - uid: 8258 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-20.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8223: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 7628 @@ -3844,9 +3844,6 @@ entities: - type: Transform pos: -8.5,-20.5 parent: 30 - - type: DeviceLinkSink - links: - - 4577 - type: DeviceLinkSource linkedPorts: 4577: @@ -3856,9 +3853,6 @@ entities: - type: Transform pos: -8.5,-17.5 parent: 30 - - type: DeviceLinkSink - links: - - 4576 - type: DeviceLinkSource linkedPorts: 4576: @@ -3869,12 +3863,24 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,0.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7904: + - DoorStatus: DoorBolt - uid: 7904 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-1.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6809: + - DoorStatus: DoorBolt - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 5503 @@ -4302,9 +4308,6 @@ entities: - type: Transform pos: 3.5,-1.5 parent: 30 - - type: DeviceLinkSink - links: - - 7475 - uid: 2403 components: - type: Transform @@ -4497,8 +4500,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - uid: 893 components: - type: MetaData @@ -4565,8 +4566,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - uid: 3101 components: - type: MetaData @@ -4669,8 +4668,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - proto: APCHyperCapacity entities: - uid: 8318 @@ -4712,18 +4709,13 @@ entities: - type: Transform pos: -50.5,12.5 parent: 30 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 750 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,34.5 - parent: 30 - - uid: 2442 - components: - - type: Transform - pos: -15.5,4.5 + pos: 22.5,34.5 parent: 30 - uid: 6874 components: @@ -4740,45 +4732,48 @@ entities: - uid: 6968 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,-24.5 parent: 30 - uid: 6971 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,-24.5 parent: 30 - uid: 6990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-24.5 + pos: 23.5,-24.5 parent: 30 - uid: 7003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-24.5 + pos: 21.5,-24.5 parent: 30 - uid: 7942 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,34.5 + pos: 15.5,34.5 parent: 30 - - uid: 8507 + - uid: 8364 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-10.5 parent: 30 - - uid: 8508 + - uid: 8507 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,30.5 parent: 30 +- proto: AtmosDeviceFanTiny + entities: + - uid: 2442 + components: + - type: Transform + pos: -15.5,4.5 + parent: 30 - proto: AtmosFixBlockerMarker entities: - uid: 4894 @@ -5344,139 +5339,87 @@ entities: - type: Transform pos: 23.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 346 - uid: 1590 components: - type: Transform pos: -29.5,-8.5 parent: 30 - - type: DeviceLinkSink - links: - - 1585 - uid: 4291 components: - type: Transform pos: 28.5,-16.5 parent: 30 - - type: DeviceLinkSink - links: - - 7519 - uid: 4651 components: - type: Transform pos: -27.5,-23.5 parent: 30 - - type: DeviceLinkSink - links: - - 6651 - uid: 5196 components: - type: Transform pos: 28.5,-14.5 parent: 30 - - type: DeviceLinkSink - links: - - 7520 - uid: 5836 components: - type: Transform pos: -18.5,26.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5838 components: - type: Transform pos: -22.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5929 components: - type: Transform pos: -22.5,26.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5935 components: - type: Transform pos: -18.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5971 components: - type: Transform pos: -39.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 5972 components: - type: Transform pos: -40.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 5973 components: - type: Transform pos: -41.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 5974 components: - type: Transform pos: -42.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 5975 components: - type: Transform pos: -43.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 6223 components: - type: Transform pos: -28.5,-8.5 parent: 30 - - type: DeviceLinkSink - links: - - 1585 - uid: 8171 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 30 - - type: DeviceLinkSink - links: - - 8208 - uid: 8660 components: - type: Transform pos: 7.5,19.5 parent: 30 - - type: DeviceLinkSink - links: - - 8661 - - 6089 - proto: BookshelfFilled entities: - uid: 246 @@ -20408,161 +20351,104 @@ entities: - type: Transform pos: 28.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3521 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3522 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3523 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3524 components: - type: Transform pos: 28.5,-12.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3525 components: - type: Transform pos: 28.5,-13.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3526 components: - type: Transform pos: 28.5,-15.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3527 components: - type: Transform pos: 28.5,-14.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 4148 components: - type: Transform pos: 28.5,-16.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 5580 components: - type: Transform pos: -22.5,25.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5591 components: - type: Transform pos: -22.5,26.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5598 components: - type: Transform pos: -22.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5599 components: - type: Transform pos: -22.5,23.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5609 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,23.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5940 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5941 components: - type: Transform pos: -22.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5942 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,25.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5943 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5944 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,26.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - proto: CowToolboxFilled entities: - uid: 6210 @@ -39415,9 +39301,6 @@ entities: - type: Transform pos: -27.5,-21.5 parent: 30 - - type: DeviceLinkSink - links: - - 4694 - proto: MachineCentrifuge entities: - uid: 2461 @@ -41939,9 +41822,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 5803 - uid: 6284 components: - type: Transform @@ -41949,9 +41829,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 5551 - uid: 6456 components: - type: Transform @@ -41966,9 +41843,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-17.5 parent: 30 - - type: DeviceLinkSink - links: - - 7923 - proto: PoweredSmallLight entities: - uid: 65 @@ -42936,9 +42810,6 @@ entities: - type: Transform pos: 28.5,-15.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - proto: ReinforcedPlasmaWindow entities: - uid: 251 @@ -44693,358 +44564,232 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-4.5 parent: 30 - - type: DeviceLinkSink - links: - - 2277 - uid: 265 components: - type: Transform pos: 7.5,0.5 parent: 30 - - type: DeviceLinkSink - links: - - 3951 - uid: 266 components: - type: Transform pos: 9.5,0.5 parent: 30 - - type: DeviceLinkSink - links: - - 2566 - uid: 330 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,1.5 parent: 30 - - type: DeviceLinkSink - links: - - 706 - uid: 332 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,3.5 parent: 30 - - type: DeviceLinkSink - links: - - 706 - uid: 497 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 parent: 30 - - type: DeviceLinkSink - links: - - 507 - uid: 711 components: - type: Transform pos: 11.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 714 components: - type: Transform pos: 12.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 1282 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-4.5 parent: 30 - - type: DeviceLinkSink - links: - - 507 - uid: 1379 components: - type: Transform pos: -14.5,-3.5 parent: 30 - - type: DeviceLinkSink - links: - - 2158 - uid: 1380 components: - type: Transform pos: -16.5,-3.5 parent: 30 - - type: DeviceLinkSink - links: - - 2158 - uid: 1496 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,10.5 parent: 30 - - type: DeviceLinkSink - links: - - 1491 - uid: 1568 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-5.5 parent: 30 - - type: DeviceLinkSink - links: - - 507 - uid: 1981 components: - type: Transform pos: 6.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 1982 components: - type: Transform pos: 5.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 1983 components: - type: Transform pos: 9.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 1985 components: - type: Transform pos: 8.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 2154 components: - type: Transform pos: -15.5,-3.5 parent: 30 - - type: DeviceLinkSink - links: - - 2158 - uid: 2248 components: - type: Transform pos: -39.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 1491 - uid: 2443 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,9.5 parent: 30 - - type: DeviceLinkSink - links: - - 1491 - uid: 2511 components: - type: Transform pos: 5.5,0.5 parent: 30 - - type: DeviceLinkSink - links: - - 3541 - uid: 2579 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-5.5 parent: 30 - - type: DeviceLinkSink - links: - - 2277 - uid: 2699 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,8.5 parent: 30 - - type: DeviceLinkSink - links: - - 1491 - uid: 2770 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,11.5 parent: 30 - - type: DeviceLinkSink - links: - - 6389 - uid: 2821 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 2277 - uid: 2919 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-9.5 parent: 30 - - type: DeviceLinkSink - links: - - 4478 - uid: 3272 components: - type: Transform pos: 12.5,0.5 parent: 30 - - type: DeviceLinkSink - links: - - 2271 - uid: 3685 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-8.5 parent: 30 - - type: DeviceLinkSink - links: - - 4478 - uid: 3931 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,11.5 parent: 30 - - type: DeviceLinkSink - links: - - 6389 - uid: 5144 components: - type: Transform pos: -21.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 4478 - uid: 6321 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,11.5 parent: 30 - - type: DeviceLinkSink - links: - - 6389 - uid: 6358 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 6399 - uid: 6376 components: - type: Transform pos: 30.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 6709 - uid: 6401 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,6.5 parent: 30 - - type: DeviceLinkSink - links: - - 6399 - uid: 6649 components: - type: Transform pos: 32.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 6709 - uid: 6699 components: - type: Transform pos: 31.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 6709 - uid: 8445 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,17.5 parent: 30 - - type: DeviceLinkSink - links: - - 8447 - uid: 8446 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,16.5 parent: 30 - - type: DeviceLinkSink - links: - - 8447 - uid: 8635 components: - type: Transform pos: 2.5,19.5 parent: 30 - - type: DeviceLinkSink - links: - - 8447 - uid: 8676 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,16.5 parent: 30 - - type: DeviceLinkSink - links: - - 8389 - uid: 8677 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,15.5 parent: 30 - - type: DeviceLinkSink - links: - - 8389 - uid: 8678 components: - type: Transform pos: 10.5,14.5 parent: 30 - - type: DeviceLinkSink - links: - - 8389 - proto: ShuttersRadiationOpen entities: - uid: 6112 @@ -45054,8 +44799,6 @@ entities: parent: 30 - type: DeviceLinkSink invokeCounter: 4 - links: - - 6357 - uid: 7854 components: - type: Transform @@ -45063,8 +44806,6 @@ entities: parent: 30 - type: DeviceLinkSink invokeCounter: 4 - links: - - 6357 - uid: 7927 components: - type: Transform @@ -45072,8 +44813,6 @@ entities: parent: 30 - type: DeviceLinkSink invokeCounter: 2 - links: - - 6357 - uid: 7995 components: - type: Transform @@ -45081,8 +44820,6 @@ entities: parent: 30 - type: DeviceLinkSink invokeCounter: 2 - links: - - 6357 - proto: ShuttersWindowOpen entities: - uid: 331 @@ -45091,18 +44828,12 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,2.5 parent: 30 - - type: DeviceLinkSink - links: - - 706 - uid: 7384 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,17.5 parent: 30 - - type: DeviceLinkSink - links: - - 8447 - proto: SignalButton entities: - uid: 7519 @@ -45598,17 +45329,15 @@ entities: parent: 30 - proto: SignChem entities: - - uid: 2476 + - uid: 2465 components: - type: Transform - pos: -4.5,-3.5 + pos: -0.5,-3.5 parent: 30 -- proto: SignChemistry2 - entities: - - uid: 2465 + - uid: 2476 components: - type: Transform - pos: -0.5,-3.5 + pos: -4.5,-3.5 parent: 30 - proto: SignDirectionalBridge entities: @@ -45891,15 +45620,13 @@ entities: - type: Transform pos: 26.5,5.5 parent: 30 -- proto: SignHydro2 +- proto: SignHydro1 entities: - uid: 1557 components: - type: Transform pos: -8.5,7.5 parent: 30 -- proto: SignHydro3 - entities: - uid: 1558 components: - type: Transform @@ -45924,18 +45651,6 @@ entities: - type: Transform pos: 14.5,0.5 parent: 30 -- proto: SignMinerDock - entities: - - uid: 5802 - components: - - type: Transform - pos: -34.5,14.5 - parent: 30 - - uid: 6865 - components: - - type: Transform - pos: -37.5,29.5 - parent: 30 - proto: SignMorgue entities: - uid: 2438 @@ -45972,8 +45687,6 @@ entities: - type: Transform pos: -24.5,-7.5 parent: 30 -- proto: SignScience2 - entities: - uid: 5165 components: - type: Transform @@ -45994,6 +45707,18 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,9.5 parent: 30 +- proto: SignShipDock + entities: + - uid: 5802 + components: + - type: Transform + pos: -34.5,14.5 + parent: 30 + - uid: 6865 + components: + - type: Transform + pos: -37.5,29.5 + parent: 30 - proto: SignSpace entities: - uid: 5088 @@ -55437,17 +55162,11 @@ entities: - type: Transform pos: 6.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 1476 - uid: 57 components: - type: Transform pos: 12.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 2252 - uid: 624 components: - type: Transform @@ -55459,9 +55178,6 @@ entities: - type: Transform pos: 9.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 1640 - proto: WindoorServiceLocked entities: - uid: 4707 diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index ca242d629c8..69613da76f8 100755 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -10651,9 +10651,6 @@ entities: - type: Transform pos: -44.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 13899 - uid: 14521 components: - type: MetaData @@ -10661,9 +10658,6 @@ entities: - type: Transform pos: -56.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 2511 - uid: 17448 components: - type: MetaData @@ -10671,9 +10665,6 @@ entities: - type: Transform pos: -56.5,24.5 parent: 60 - - type: DeviceLinkSink - links: - - 21611 - uid: 17459 components: - type: MetaData @@ -10681,9 +10672,6 @@ entities: - type: Transform pos: -44.5,24.5 parent: 60 - - type: DeviceLinkSink - links: - - 20425 - uid: 17460 components: - type: MetaData @@ -10691,9 +10679,6 @@ entities: - type: Transform pos: -35.5,22.5 parent: 60 - - type: DeviceLinkSink - links: - - 20979 - uid: 19905 components: - type: MetaData @@ -11028,9 +11013,6 @@ entities: - type: Transform pos: 0.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 18404 - type: DeviceLinkSource linkedPorts: 18404: @@ -11042,9 +11024,6 @@ entities: - type: Transform pos: 0.5,-8.5 parent: 60 - - type: DeviceLinkSink - links: - - 18403 - type: DeviceLinkSource linkedPorts: 18403: @@ -11070,9 +11049,6 @@ entities: - type: Transform pos: 5.5,-3.5 parent: 60 - - type: DeviceLinkSink - links: - - 18076 - type: DeviceLinkSource linkedPorts: 18076: @@ -11131,9 +11107,6 @@ entities: - type: Transform pos: 0.5,12.5 parent: 60 - - type: DeviceLinkSink - links: - - 13069 - type: DeviceLinkSource linkedPorts: 13805: @@ -11165,10 +11138,6 @@ entities: - type: Transform pos: -1.5,14.5 parent: 60 - - type: DeviceLinkSink - links: - - 5859 - - 13069 - uid: 15490 components: - type: MetaData @@ -11315,9 +11284,6 @@ entities: - type: Transform pos: 10.5,-14.5 parent: 60 - - type: DeviceLinkSink - links: - - 1435 - type: DeviceLinkSource linkedPorts: 1435: @@ -11330,12 +11296,24 @@ entities: rot: 3.141592653589793 rad pos: -6.5,37.5 parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23570: + - DoorStatus: DoorBolt - uid: 23570 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,39.5 parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23569: + - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: - uid: 227 @@ -11343,9 +11321,6 @@ entities: - type: Transform pos: 44.5,27.5 parent: 60 - - type: DeviceLinkSink - links: - - 21532 - type: DeviceLinkSource linkedPorts: 21532: @@ -11356,12 +11331,11 @@ entities: pos: -20.5,-54.5 parent: 60 - type: DeviceLinkSink - links: - - 4889 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 4889: - - DoorStatus: DoorBolt + - DoorStatus: Close - uid: 5168 components: - type: Transform @@ -11377,9 +11351,6 @@ entities: - type: Transform pos: -31.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 6673 - type: DeviceLinkSource linkedPorts: 6673: @@ -11389,9 +11360,6 @@ entities: - type: Transform pos: 52.5,27.5 parent: 60 - - type: DeviceLinkSink - links: - - 21534 - type: DeviceLinkSource linkedPorts: 21534: @@ -11401,9 +11369,6 @@ entities: - type: Transform pos: 46.5,27.5 parent: 60 - - type: DeviceLinkSink - links: - - 21533 - type: DeviceLinkSource linkedPorts: 21533: @@ -11413,9 +11378,6 @@ entities: - type: Transform pos: 54.5,27.5 parent: 60 - - type: DeviceLinkSink - links: - - 21535 - type: DeviceLinkSource linkedPorts: 21535: @@ -11425,9 +11387,6 @@ entities: - type: Transform pos: -47.5,-35.5 parent: 60 - - type: DeviceLinkSink - links: - - 7332 - type: DeviceLinkSource linkedPorts: 7332: @@ -11459,9 +11418,6 @@ entities: - type: Transform pos: 52.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 12706 - type: DeviceLinkSource linkedPorts: 12706: @@ -11471,9 +11427,6 @@ entities: - type: Transform pos: 55.5,2.5 parent: 60 - - type: DeviceLinkSink - links: - - 12018 - type: DeviceLinkSource linkedPorts: 12018: @@ -11483,9 +11436,6 @@ entities: - type: Transform pos: 52.5,2.5 parent: 60 - - type: DeviceLinkSink - links: - - 9242 - type: DeviceLinkSource linkedPorts: 9242: @@ -11495,9 +11445,6 @@ entities: - type: Transform pos: 55.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 8358 - type: DeviceLinkSource linkedPorts: 8358: @@ -11519,9 +11466,6 @@ entities: - type: Transform pos: 31.5,-56.5 parent: 60 - - type: DeviceLinkSink - links: - - 3335 - type: DeviceLinkSource linkedPorts: 3335: @@ -11531,9 +11475,6 @@ entities: - type: Transform pos: 31.5,-59.5 parent: 60 - - type: DeviceLinkSink - links: - - 3334 - type: DeviceLinkSource linkedPorts: 3334: @@ -11543,9 +11484,6 @@ entities: - type: Transform pos: -66.5,-18.5 parent: 60 - - type: DeviceLinkSink - links: - - 7692 - type: DeviceLinkSource linkedPorts: 7692: @@ -11555,9 +11493,6 @@ entities: - type: Transform pos: -69.5,-18.5 parent: 60 - - type: DeviceLinkSink - links: - - 5497 - type: DeviceLinkSource linkedPorts: 5497: @@ -11588,9 +11523,6 @@ entities: - type: Transform pos: -25.5,47.5 parent: 60 - - type: DeviceLinkSink - links: - - 17490 - type: DeviceLinkSource linkedPorts: 17490: @@ -11600,9 +11532,6 @@ entities: - type: Transform pos: -25.5,50.5 parent: 60 - - type: DeviceLinkSink - links: - - 17481 - type: DeviceLinkSource linkedPorts: 17481: @@ -11612,9 +11541,6 @@ entities: - type: Transform pos: 64.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 20108 - type: DeviceLinkSource linkedPorts: 20108: @@ -11624,9 +11550,6 @@ entities: - type: Transform pos: 66.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 20107 - type: DeviceLinkSource linkedPorts: 20107: @@ -11648,9 +11571,6 @@ entities: - type: Transform pos: 31.5,-47.5 parent: 60 - - type: DeviceLinkSink - links: - - 3080 - type: DeviceLinkSource linkedPorts: 3080: @@ -11660,9 +11580,6 @@ entities: - type: Transform pos: 31.5,-49.5 parent: 60 - - type: DeviceLinkSink - links: - - 3071 - type: DeviceLinkSource linkedPorts: 3071: @@ -11672,9 +11589,6 @@ entities: - type: Transform pos: 58.5,-16.5 parent: 60 - - type: DeviceLinkSink - links: - - 4596 - type: DeviceLinkSource linkedPorts: 4596: @@ -11684,9 +11598,6 @@ entities: - type: Transform pos: 58.5,-20.5 parent: 60 - - type: DeviceLinkSink - links: - - 4595 - type: DeviceLinkSource linkedPorts: 4595: @@ -11696,9 +11607,6 @@ entities: - type: Transform pos: -31.5,-36.5 parent: 60 - - type: DeviceLinkSink - links: - - 5312 - type: DeviceLinkSource linkedPorts: 5312: @@ -11709,20 +11617,16 @@ entities: pos: 0.5,-78.5 parent: 60 - type: DeviceLinkSink - links: - - 7364 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 7364: - - DoorStatus: DoorBolt + - DoorStatus: Close - uid: 8522 components: - type: Transform pos: -18.5,-35.5 parent: 60 - - type: DeviceLinkSink - links: - - 3900 - type: DeviceLinkSource linkedPorts: 3900: @@ -11732,9 +11636,6 @@ entities: - type: Transform pos: 13.5,-54.5 parent: 60 - - type: DeviceLinkSink - links: - - 10942 - type: DeviceLinkSource linkedPorts: 10942: @@ -11744,9 +11645,6 @@ entities: - type: Transform pos: 11.5,-54.5 parent: 60 - - type: DeviceLinkSink - links: - - 10940 - type: DeviceLinkSource linkedPorts: 10940: @@ -11756,9 +11654,6 @@ entities: - type: Transform pos: -52.5,-31.5 parent: 60 - - type: DeviceLinkSink - links: - - 12584 - type: DeviceLinkSource linkedPorts: 12584: @@ -11768,9 +11663,6 @@ entities: - type: Transform pos: 16.5,29.5 parent: 60 - - type: DeviceLinkSink - links: - - 19100 - type: DeviceLinkSource linkedPorts: 19100: @@ -11780,9 +11672,6 @@ entities: - type: Transform pos: 16.5,31.5 parent: 60 - - type: DeviceLinkSink - links: - - 19087 - type: DeviceLinkSource linkedPorts: 19087: @@ -11792,9 +11681,6 @@ entities: - type: Transform pos: -72.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 21236 - type: DeviceLinkSource linkedPorts: 21236: @@ -11804,9 +11690,6 @@ entities: - type: Transform pos: -74.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 21235 - type: DeviceLinkSource linkedPorts: 21235: @@ -11816,10 +11699,6 @@ entities: - type: Transform pos: -95.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 22429 - - 22428 - type: DeviceLinkSource linkedPorts: 22428: @@ -11831,10 +11710,6 @@ entities: - type: Transform pos: -95.5,21.5 parent: 60 - - type: DeviceLinkSink - links: - - 22428 - - 22429 - type: DeviceLinkSource linkedPorts: 22429: @@ -11846,10 +11721,6 @@ entities: - type: Transform pos: -98.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 22426 - - 22427 - type: DeviceLinkSource linkedPorts: 22427: @@ -11861,10 +11732,6 @@ entities: - type: Transform pos: -98.5,21.5 parent: 60 - - type: DeviceLinkSink - links: - - 22426 - - 22427 - type: DeviceLinkSource linkedPorts: 22427: @@ -11897,9 +11764,6 @@ entities: linkedPorts: 227: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 227 - uid: 21533 components: - type: Transform @@ -11910,9 +11774,6 @@ entities: linkedPorts: 6695: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 6695 - uid: 21534 components: - type: Transform @@ -11923,9 +11784,6 @@ entities: linkedPorts: 6693: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 6693 - uid: 21535 components: - type: Transform @@ -11936,9 +11794,6 @@ entities: linkedPorts: 6767: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 6767 - proto: AirlockExternalGlassShuttleEscape entities: - uid: 2733 @@ -11975,10 +11830,9 @@ entities: - type: DeviceLinkSource linkedPorts: 4890: - - DoorStatus: DoorBolt + - DoorStatus: Close - type: DeviceLinkSink - links: - - 4890 + invokeCounter: 1 - uid: 7364 components: - type: Transform @@ -11987,10 +11841,9 @@ entities: - type: DeviceLinkSource linkedPorts: 7362: - - DoorStatus: DoorBolt + - DoorStatus: Close - type: DeviceLinkSink - links: - - 7362 + invokeCounter: 1 - uid: 13181 components: - type: Transform @@ -12037,9 +11890,6 @@ entities: - type: Transform pos: 11.5,-16.5 parent: 60 - - type: DeviceLinkSink - links: - - 1441 - type: DeviceLinkSource linkedPorts: 1441: @@ -12049,9 +11899,6 @@ entities: - type: Transform pos: -18.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 8522 - type: DeviceLinkSource linkedPorts: 8522: @@ -12061,9 +11908,6 @@ entities: - type: Transform pos: -58.5,28.5 parent: 60 - - type: DeviceLinkSink - links: - - 11631 - type: DeviceLinkSource linkedPorts: 11631: @@ -12073,9 +11917,6 @@ entities: - type: Transform pos: -58.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 11630 - type: DeviceLinkSource linkedPorts: 11630: @@ -12085,9 +11926,6 @@ entities: - type: Transform pos: 10.5,-3.5 parent: 60 - - type: DeviceLinkSink - links: - - 18033 - type: DeviceLinkSource linkedPorts: 18033: @@ -13360,9 +13198,6 @@ entities: lastSignals: DoorStatus: False DockStatus: True - - type: DeviceLinkSink - links: - - 7316 - uid: 12584 components: - type: Transform @@ -13373,9 +13208,6 @@ entities: linkedPorts: 12842: - DoorStatus: DoorBolt - - type: DeviceLinkSink - links: - - 12842 - proto: AirlockSyndicateGlassLocked entities: - uid: 5333 @@ -13444,9 +13276,6 @@ entities: - type: Transform pos: 46.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 2970 - type: DeviceLinkSource linkedPorts: 2970: @@ -13456,9 +13285,6 @@ entities: - type: Transform pos: 49.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 2963 - type: DeviceLinkSource linkedPorts: 2963: @@ -14493,142 +14319,128 @@ entities: - type: Transform pos: 32.2979,26.45987 parent: 60 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 297 components: - type: Transform - pos: 52.5,31.5 - parent: 60 - - uid: 5477 - components: - - type: Transform + rot: 3.141592653589793 rad pos: 46.5,31.5 parent: 60 - - uid: 6129 + - uid: 3189 components: - type: Transform - pos: -11.5,-0.5 - parent: 7536 - - uid: 6130 + rot: 3.141592653589793 rad + pos: 44.5,31.5 + parent: 60 + - uid: 5477 components: - type: Transform - pos: -11.5,-4.5 - parent: 7536 + rot: 1.5707963267948966 rad + pos: 59.5,14.5 + parent: 60 - uid: 6768 components: - type: Transform - pos: 54.5,31.5 + rot: 1.5707963267948966 rad + pos: 59.5,12.5 parent: 60 - uid: 6769 components: - type: Transform - pos: 44.5,31.5 + rot: -1.5707963267948966 rad + pos: 7.5,-70.5 parent: 60 - uid: 6788 components: - type: Transform - pos: 59.5,14.5 + rot: -1.5707963267948966 rad + pos: 7.5,-63.5 parent: 60 - uid: 7581 components: - type: Transform - pos: 59.5,12.5 - parent: 60 - - uid: 9110 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 7536 - - uid: 9214 - components: - - type: Transform - pos: 23.5,-29.5 + rot: -1.5707963267948966 rad + pos: -5.5,-70.5 parent: 60 - uid: 12269 components: - type: Transform - pos: 39.5,-46.5 - parent: 60 - - uid: 13825 - components: - - type: Transform - pos: 25.5,-25.5 + rot: 1.5707963267948966 rad + pos: 6.5,-70.5 parent: 60 - uid: 19688 components: - type: Transform - pos: 7.5,-70.5 + rot: 1.5707963267948966 rad + pos: 6.5,-63.5 parent: 60 - uid: 19689 components: - type: Transform - pos: 7.5,-63.5 + rot: -1.5707963267948966 rad + pos: -5.5,-63.5 parent: 60 - uid: 19690 components: - type: Transform - pos: -4.5,-70.5 + pos: -24.5,-36.5 parent: 60 - uid: 19691 components: - type: Transform - pos: 5.5,-70.5 + rot: 3.141592653589793 rad + pos: 52.5,31.5 parent: 60 - uid: 19692 components: - type: Transform - pos: 5.5,-63.5 + rot: 3.141592653589793 rad + pos: 54.5,31.5 parent: 60 - uid: 19694 components: - type: Transform - pos: -4.5,-63.5 + rot: 1.5707963267948966 rad + pos: 15.5,-63.5 parent: 60 - uid: 19786 components: - type: Transform - pos: -24.5,-35.5 - parent: 60 - - uid: 19800 - components: - - type: Transform - pos: 23.5,-46.5 - parent: 60 - - uid: 19808 - components: - - type: Transform - pos: 20.5,28.5 + rot: 1.5707963267948966 rad + pos: 15.5,-70.5 parent: 60 - - uid: 21130 +- proto: AtmosDeviceFanTiny + entities: + - uid: 6129 components: - type: Transform - pos: 44.5,31.5 - parent: 60 - - uid: 23380 + pos: -11.5,-0.5 + parent: 7536 + - uid: 6130 components: - type: Transform - pos: 46.5,31.5 - parent: 60 - - uid: 23381 + pos: -11.5,-4.5 + parent: 7536 + - uid: 9110 components: - type: Transform - pos: 52.5,31.5 - parent: 60 - - uid: 23382 + pos: 0.5,-0.5 + parent: 7536 + - uid: 9214 components: - type: Transform - pos: 54.5,31.5 + pos: 23.5,-29.5 parent: 60 - - uid: 23969 + - uid: 13825 components: - type: Transform - pos: 15.5,-63.5 + pos: 25.5,-25.5 parent: 60 - - uid: 23970 + - uid: 19808 components: - type: Transform - pos: 15.5,-70.5 + pos: 20.5,28.5 parent: 60 - proto: AtmosFixBlockerMarker entities: @@ -15792,183 +15604,111 @@ entities: - type: Transform pos: -23.5,34.5 parent: 60 - - type: DeviceLinkSink - links: - - 16396 - - 14910 - uid: 2404 components: - type: Transform pos: -23.5,35.5 parent: 60 - - type: DeviceLinkSink - links: - - 16396 - - 14910 - uid: 2506 components: - type: Transform pos: -23.5,36.5 parent: 60 - - type: DeviceLinkSink - links: - - 16396 - - 14910 - uid: 7728 components: - type: Transform pos: -18.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 7746 - uid: 7729 components: - type: Transform pos: -16.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 3803 - uid: 11697 components: - type: Transform pos: 55.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 19108 - uid: 11830 components: - type: Transform pos: 55.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 19107 - uid: 12598 components: - type: Transform pos: -55.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 12596 - uid: 13175 components: - type: Transform pos: 59.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 17876 - uid: 13176 components: - type: Transform pos: 57.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 18802 - uid: 13177 components: - type: Transform pos: 57.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 18802 - uid: 13178 components: - type: Transform pos: 59.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 17876 - uid: 13901 components: - type: Transform pos: -50.5,18.5 parent: 60 - - type: DeviceLinkSink - links: - - 14622 - uid: 15089 components: - type: Transform pos: -31.5,47.5 parent: 60 - - type: DeviceLinkSink - links: - - 14913 - - 14914 - uid: 16541 components: - type: Transform pos: -5.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 4260 - - 18295 - uid: 16542 components: - type: Transform pos: -6.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 4260 - - 18295 - uid: 16973 components: - type: Transform pos: -20.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15426 - uid: 16976 components: - type: Transform pos: -19.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15426 - uid: 16977 components: - type: Transform pos: -18.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15426 - uid: 16978 components: - type: Transform pos: -14.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15424 - uid: 16979 components: - type: Transform pos: -12.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15424 - uid: 16980 components: - type: Transform pos: -13.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15424 - proto: BlastDoorBridgeOpen entities: - uid: 21763 @@ -15976,65 +15716,41 @@ entities: - type: Transform pos: -0.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 14726 - uid: 21764 components: - type: Transform pos: 1.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 14726 - uid: 21765 components: - type: Transform pos: 1.5,-8.5 parent: 60 - - type: DeviceLinkSink - links: - - 14726 - uid: 21766 components: - type: Transform pos: -0.5,-8.5 parent: 60 - - type: DeviceLinkSink - links: - - 14726 - uid: 21767 components: - type: Transform pos: 5.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 19170 - uid: 21768 components: - type: Transform pos: 5.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 19170 - uid: 21769 components: - type: Transform pos: -4.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 19170 - uid: 21770 components: - type: Transform pos: -4.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 19170 - proto: BlastDoorOpen entities: - uid: 5344 @@ -16043,63 +15759,42 @@ entities: rot: 3.141592653589793 rad pos: -115.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5345 components: - type: Transform rot: 3.141592653589793 rad pos: -107.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5352 components: - type: Transform rot: 3.141592653589793 rad pos: -107.5,9.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5358 components: - type: Transform rot: 3.141592653589793 rad pos: -111.5,7.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5359 components: - type: Transform rot: 3.141592653589793 rad pos: -107.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5360 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5361 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,9.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - proto: BlastDoorWindowsOpen entities: - uid: 21780 @@ -59372,19 +59067,19 @@ entities: - type: Transform pos: 9.573504,-55.474518 parent: 60 -- proto: ClothingOuterCoatGentle +- proto: ClothingOuterCoatDetectiveLoadout entities: - - uid: 3530 + - uid: 6787 components: - type: Transform - pos: 51.556362,-34.423466 + pos: 19.394547,-50.426735 parent: 60 -- proto: ClothingOuterCoatInspector +- proto: ClothingOuterCoatGentle entities: - - uid: 6787 + - uid: 3530 components: - type: Transform - pos: 19.394547,-50.426735 + pos: 51.556362,-34.423466 parent: 60 - proto: ClothingOuterCoatJensen entities: @@ -60507,135 +60202,90 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 3894 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 3895 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 3896 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 5284 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 5285 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 5489 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 6730 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 6978 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 7723 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 7724 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 7725 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 8360 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 9238 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 11722 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - type: Construction edge: 0 - uid: 11757 @@ -60644,162 +60294,108 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 11881 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 12283 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 12703 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 12705 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 12889 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 13162 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13163 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13164 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13165 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13166 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13167 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13168 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13169 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13170 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13171 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13221 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13222 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - proto: CowToolboxFilled entities: - uid: 7795 @@ -106506,60 +106102,39 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-24.5 parent: 60 - - type: DeviceLinkSink - links: - - 24347 - uid: 24333 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-2.5 parent: 60 - - type: DeviceLinkSink - links: - - 24334 - uid: 24335 components: - type: Transform pos: -17.5,-18.5 parent: 60 - - type: DeviceLinkSink - links: - - 24336 - uid: 24337 components: - type: Transform pos: 35.5,-22.5 parent: 60 - - type: DeviceLinkSink - links: - - 24365 - uid: 24350 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 24351 - uid: 24352 components: - type: Transform pos: 2.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 24353 - uid: 24355 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,7.5 parent: 60 - - type: DeviceLinkSink - links: - - 24354 - proto: JetpackBlueFilled entities: - uid: 4705 @@ -108113,9 +107688,6 @@ entities: - type: Transform pos: -50.5,17.5 parent: 60 - - type: DeviceLinkSink - links: - - 466 - proto: MachineCentrifuge entities: - uid: 2457 @@ -117128,9 +116700,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 24108 - proto: ReinforcedGirder entities: - uid: 11134 @@ -121917,73 +121486,46 @@ entities: - type: Transform pos: -3.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 1189 - uid: 920 components: - type: Transform pos: -2.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 1189 - uid: 2307 components: - type: Transform pos: 30.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 4513 - uid: 5626 components: - type: Transform pos: -32.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 9480 - uid: 5627 components: - type: Transform pos: -33.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 9480 - uid: 5628 components: - type: Transform pos: -31.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 9480 - uid: 7697 components: - type: Transform pos: -4.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 1189 - uid: 11253 components: - type: Transform pos: 29.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 4513 - uid: 17449 components: - type: Transform pos: -52.5,17.5 parent: 60 - - type: DeviceLinkSink - links: - - 2508 - proto: ShuttersNormalOpen entities: - uid: 147 @@ -121992,621 +121534,402 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 148 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 10622 - uid: 188 components: - type: Transform pos: -17.5,-7.5 parent: 60 - - type: DeviceLinkSink - links: - - 10622 - uid: 552 components: - type: Transform pos: -17.5,-13.5 parent: 60 - - type: DeviceLinkSink - links: - - 11555 - uid: 1022 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 4522 - uid: 1352 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-30.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 1353 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-31.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 1354 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 1357 components: - type: Transform pos: 14.5,-29.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 1454 components: - type: Transform pos: 41.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 1631 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 1240 - uid: 2250 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,2.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 2381 components: - type: Transform pos: 24.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 2877 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-35.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 2892 components: - type: Transform pos: 13.5,-29.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 3093 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-36.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 3106 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 3200 components: - type: Transform pos: 40.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 3208 components: - type: Transform pos: 38.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 2882 - uid: 3493 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-33.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 3737 components: - type: Transform pos: -18.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 4522 - uid: 4034 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-28.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 4045 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,2.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 4355 components: - type: Transform pos: 35.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 1603 - uid: 4487 components: - type: Transform pos: 32.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 1603 - uid: 4496 components: - type: Transform pos: 34.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 1603 - uid: 5149 components: - type: Transform pos: -11.5,-52.5 parent: 60 - - type: DeviceLinkSink - links: - - 14549 - uid: 5560 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 14550 - uid: 6203 components: - type: Transform pos: -35.5,-7.5 parent: 60 - - type: DeviceLinkSink - links: - - 19870 - uid: 6206 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-12.5 parent: 60 - - type: DeviceLinkSink - links: - - 4898 - uid: 6467 components: - type: Transform pos: -17.5,-10.5 parent: 60 - - type: DeviceLinkSink - links: - - 11098 - uid: 6522 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,17.5 parent: 60 - - type: DeviceLinkSink - links: - - 11477 - uid: 6524 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 11477 - uid: 6526 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 60 - - type: DeviceLinkSink - links: - - 11477 - uid: 6733 components: - type: Transform pos: -35.5,-13.5 parent: 60 - - type: DeviceLinkSink - links: - - 4898 - uid: 6746 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 19870 - uid: 6772 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-33.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 6773 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-30.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 6774 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-31.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 6775 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-34.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 6796 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 10621 - uid: 6813 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-34.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 7032 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 11098 - uid: 7045 components: - type: Transform pos: -35.5,-10.5 parent: 60 - - type: DeviceLinkSink - links: - - 10621 - uid: 7131 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-7.5 parent: 60 - - type: DeviceLinkSink - links: - - 14550 - uid: 7132 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-4.5 parent: 60 - - type: DeviceLinkSink - links: - - 14550 - uid: 7664 components: - type: Transform pos: 39.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 2882 - uid: 8002 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-12.5 parent: 60 - - type: DeviceLinkSink - links: - - 11555 - uid: 8381 components: - type: Transform pos: -13.5,-52.5 parent: 60 - - type: DeviceLinkSink - links: - - 14549 - uid: 8382 components: - type: Transform pos: -12.5,-52.5 parent: 60 - - type: DeviceLinkSink - links: - - 14549 - uid: 12303 components: - type: Transform pos: 23.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 12509 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 14208 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 14548 components: - type: Transform pos: -36.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 14551 - uid: 15575 components: - type: Transform pos: 13.5,21.5 parent: 60 - - type: DeviceLinkSink - links: - - 13095 - uid: 16058 components: - type: Transform pos: 12.5,21.5 parent: 60 - - type: DeviceLinkSink - links: - - 13095 - uid: 16129 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 16134 components: - type: Transform pos: 22.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 17671 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 18517 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-5.5 parent: 60 - - type: DeviceLinkSink - links: - - 18438 - uid: 18518 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-4.5 parent: 60 - - type: DeviceLinkSink - links: - - 18438 - uid: 18519 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-3.5 parent: 60 - - type: DeviceLinkSink - links: - - 18438 - uid: 19155 components: - type: Transform pos: -33.5,-21.5 parent: 60 - - type: DeviceLinkSink - links: - - 19130 - uid: 21334 components: - type: Transform pos: 40.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 2882 - uid: 21340 components: - type: Transform pos: 4.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 1240 - uid: 21341 components: - type: Transform pos: 5.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 1240 - uid: 21342 components: - type: Transform pos: 6.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 1240 - uid: 21753 components: - type: Transform pos: 43.5,16.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21754 components: - type: Transform pos: 44.5,16.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21755 components: - type: Transform pos: 45.5,16.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21758 components: - type: Transform pos: 45.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21759 components: - type: Transform pos: 43.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21760 components: - type: Transform pos: 44.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 22463 components: - type: Transform @@ -122622,57 +121945,36 @@ entities: - type: Transform pos: 38.5,-21.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24367 components: - type: Transform pos: 39.5,-21.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24368 components: - type: Transform pos: 40.5,-21.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24369 components: - type: Transform pos: 42.5,-20.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24370 components: - type: Transform pos: 36.5,-20.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24371 components: - type: Transform pos: 36.5,-16.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24372 components: - type: Transform pos: 42.5,-16.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - proto: ShuttersRadiationOpen entities: - uid: 16309 @@ -122680,113 +121982,71 @@ entities: - type: Transform pos: -10.5,33.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16335 components: - type: Transform pos: -12.5,33.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16336 components: - type: Transform pos: -15.5,31.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16337 components: - type: Transform pos: -16.5,31.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16363 components: - type: Transform pos: -17.5,31.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16364 components: - type: Transform pos: -20.5,33.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16365 components: - type: Transform pos: -22.5,33.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16369 components: - type: Transform pos: -0.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 16370 - uid: 16398 components: - type: Transform pos: 1.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 16370 - uid: 18610 components: - type: Transform pos: 1.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - uid: 18611 components: - type: Transform pos: 2.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - uid: 18643 components: - type: Transform pos: 0.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - uid: 18644 components: - type: Transform pos: -0.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - uid: 18706 components: - type: Transform pos: -1.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - proto: ShuttersWindow entities: - uid: 11471 @@ -122794,55 +122054,31 @@ entities: - type: Transform pos: -51.5,26.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11568 components: - type: Transform pos: -51.5,28.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11574 components: - type: Transform pos: -49.5,28.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11575 components: - type: Transform pos: -49.5,26.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11582 components: - type: Transform pos: -50.5,26.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11583 components: - type: Transform pos: -50.5,28.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - proto: ShuttersWindowOpen entities: - uid: 6771 @@ -122851,75 +122087,48 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 14547 components: - type: Transform pos: -37.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 14551 - uid: 16527 components: - type: Transform pos: 42.5,-27.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 17379 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 17491 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 19158 components: - type: Transform pos: 32.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 11678 - uid: 19159 components: - type: Transform pos: 31.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 11678 - uid: 19161 components: - type: Transform pos: 30.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 11678 - uid: 21068 components: - type: Transform pos: -40.5,-5.5 parent: 60 - - type: DeviceLinkSink - links: - - 14550 - proto: ShuttleWindow entities: - uid: 21608 @@ -123892,8 +123101,6 @@ entities: - type: Transform pos: -56.5,35.5 parent: 60 -- proto: SignAtmosMinsky - entities: - uid: 24214 components: - type: Transform @@ -123983,32 +123190,21 @@ entities: parent: 60 - proto: SignChem entities: + - uid: 2661 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 60 - uid: 2809 components: - type: Transform pos: 42.5,-29.5 parent: 60 -- proto: SignChemistry1 - entities: - uid: 8932 components: - type: Transform pos: 42.5,-25.5 parent: 60 -- proto: SignChemistry2 - entities: - - uid: 2661 - components: - - type: Transform - pos: 37.5,-25.5 - parent: 60 -- proto: SignCourt - entities: - - uid: 24097 - components: - - type: Transform - pos: -39.5,-18.5 - parent: 60 - proto: SignCryogenicsMed entities: - uid: 4111 @@ -124628,13 +123824,6 @@ entities: - type: Transform pos: -15.5,-38.5 parent: 60 -- proto: SignDrones - entities: - - uid: 7203 - components: - - type: Transform - pos: 3.5,-46.5 - parent: 60 - proto: SignElectricalMed entities: - uid: 161 @@ -124861,7 +124050,7 @@ entities: - type: Transform pos: -39.5,-17.5 parent: 60 -- proto: SignHydro3 +- proto: SignHydro1 entities: - uid: 1959 components: @@ -124903,6 +124092,11 @@ entities: - type: Transform pos: -47.5,-19.5 parent: 60 + - uid: 24097 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 60 - proto: SignLibrary entities: - uid: 14057 @@ -124915,6 +124109,13 @@ entities: - type: Transform pos: -7.5,10.5 parent: 60 +- proto: SignMaterials + entities: + - uid: 7203 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 60 - proto: SignMedical entities: - uid: 2632 @@ -124927,14 +124128,6 @@ entities: - type: Transform pos: 36.5,-21.5 parent: 60 -- proto: SignMinerDock - entities: - - uid: 13251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,3.5 - parent: 60 - proto: SignMorgue entities: - uid: 265 @@ -125239,6 +124432,14 @@ entities: - type: Transform pos: -17.5,-21.5 parent: 60 +- proto: SignShipDock + entities: + - uid: 13251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,3.5 + parent: 60 - proto: SignSmoking entities: - uid: 5791 @@ -150871,54 +150072,36 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-12.5 parent: 60 - - type: DeviceLinkSink - links: - - 6972 - uid: 151 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 1488 - uid: 230 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 1468 - uid: 243 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-12.5 parent: 60 - - type: DeviceLinkSink - links: - - 1486 - uid: 268 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 1485 - uid: 843 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 6971 - uid: 4078 components: - type: Transform diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 5a3a761baa5..91a6a35c59f 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -10103,9 +10103,6 @@ entities: - type: Transform pos: 16.5,13.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27664 - uid: 6413 components: - type: MetaData @@ -10113,9 +10110,6 @@ entities: - type: Transform pos: 12.5,13.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27663 - uid: 6414 components: - type: MetaData @@ -10123,9 +10117,6 @@ entities: - type: Transform pos: 7.5,14.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27662 - uid: 6415 components: - type: MetaData @@ -10133,9 +10124,6 @@ entities: - type: Transform pos: 7.5,11.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27661 - uid: 6416 components: - type: MetaData @@ -10143,9 +10131,6 @@ entities: - type: Transform pos: 7.5,8.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27660 - uid: 6417 components: - type: MetaData @@ -10153,9 +10138,6 @@ entities: - type: Transform pos: 7.5,5.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27659 - uid: 7533 components: - type: MetaData @@ -10827,9 +10809,6 @@ entities: - type: Transform pos: -61.5,17.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13669 - type: DeviceLinkSource linkedPorts: 13669: @@ -10839,9 +10818,6 @@ entities: - type: Transform pos: -61.5,15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 431 - type: DeviceLinkSource linkedPorts: 431: @@ -10854,10 +10830,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-60.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3707 - - 3858 - type: DeviceLinkSource linkedPorts: 3707: @@ -10869,9 +10841,6 @@ entities: - type: Transform pos: 9.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 23210 - type: DeviceLinkSource linkedPorts: 23210: @@ -10881,9 +10850,6 @@ entities: - type: Transform pos: 9.5,-79.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11000 - type: DeviceLinkSource linkedPorts: 11000: @@ -10895,6 +10861,12 @@ entities: - type: Transform pos: 91.5,-29.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5209: + - DoorStatus: Close - uid: 8807 components: - type: Transform @@ -10930,6 +10902,12 @@ entities: - type: Transform pos: 91.5,-26.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12644: + - DoorStatus: Close - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 3858 @@ -10937,9 +10915,6 @@ entities: - type: Transform pos: 23.5,-60.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3852 - type: DeviceLinkSource linkedPorts: 3852: @@ -10951,9 +10926,6 @@ entities: - type: Transform pos: -33.5,-37.5 parent: 8364 - - type: DeviceLinkSink - links: - - 15002 - type: DeviceLinkSource linkedPorts: 15002: @@ -10963,9 +10935,6 @@ entities: - type: Transform pos: -30.5,-37.5 parent: 8364 - - type: DeviceLinkSink - links: - - 7010 - type: DeviceLinkSource linkedPorts: 7010: @@ -10988,9 +10957,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-61.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3852 - type: DeviceLinkSource linkedPorts: 3852: @@ -11000,9 +10966,6 @@ entities: - type: Transform pos: -41.5,-61.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14449 - type: DeviceLinkSource linkedPorts: 14449: @@ -11012,9 +10975,6 @@ entities: - type: Transform pos: -39.5,-61.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14448 - type: DeviceLinkSource linkedPorts: 14448: @@ -11032,9 +10992,6 @@ entities: - type: Transform pos: -20.5,20.5 parent: 8364 - - type: DeviceLinkSink - links: - - 509 - type: DeviceLinkSource linkedPorts: 509: @@ -11044,9 +11001,6 @@ entities: - type: Transform pos: -22.5,20.5 parent: 8364 - - type: DeviceLinkSink - links: - - 508 - type: DeviceLinkSource linkedPorts: 508: @@ -11056,9 +11010,6 @@ entities: - type: Transform pos: -66.5,19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 562 - type: DeviceLinkSource linkedPorts: 562: @@ -11068,9 +11019,6 @@ entities: - type: Transform pos: -33.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 15592 - type: DeviceLinkSource linkedPorts: 15592: @@ -11080,9 +11028,6 @@ entities: - type: Transform pos: 28.5,26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9810 - type: DeviceLinkSource linkedPorts: 9810: @@ -11092,9 +11037,6 @@ entities: - type: Transform pos: -77.5,-13.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1110 - type: DeviceLinkSource linkedPorts: 1110: @@ -11104,9 +11046,6 @@ entities: - type: Transform pos: -68.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 12470 - type: DeviceLinkSource linkedPorts: 12470: @@ -11116,9 +11055,6 @@ entities: - type: Transform pos: -75.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 12469 - type: DeviceLinkSource linkedPorts: 12469: @@ -11128,9 +11064,6 @@ entities: - type: Transform pos: -49.5,26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13139 - type: DeviceLinkSource linkedPorts: 13139: @@ -11140,9 +11073,6 @@ entities: - type: Transform pos: -49.5,24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13138 - type: DeviceLinkSource linkedPorts: 13138: @@ -11152,9 +11082,6 @@ entities: - type: Transform pos: 49.5,-66.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19366 - type: DeviceLinkSource linkedPorts: 19366: @@ -11164,9 +11091,6 @@ entities: - type: Transform pos: 62.5,-71.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19987 - type: DeviceLinkSource linkedPorts: 19987: @@ -11176,9 +11100,6 @@ entities: - type: Transform pos: 87.5,-57.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19989 - type: DeviceLinkSource linkedPorts: 19989: @@ -11209,25 +11130,25 @@ entities: parent: 8364 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 27618 + - uid: 682 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-13.5 + pos: 87.5,-5.5 parent: 8364 - - uid: 27619 + - uid: 5094 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-11.5 + pos: 87.5,-13.5 parent: 8364 - - uid: 27620 + - uid: 20798 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-5.5 + pos: 87.5,-11.5 parent: 8364 - - uid: 27621 + - uid: 20799 components: - type: Transform rot: 1.5707963267948966 rad @@ -11269,9 +11190,6 @@ entities: rot: 3.141592653589793 rad pos: -79.5,-4.5 parent: 8364 - - type: DeviceLinkSink - links: - - 12486 - type: DeviceLinkSource linkedPorts: 12486: @@ -11282,9 +11200,6 @@ entities: rot: 3.141592653589793 rad pos: -79.5,9.5 parent: 8364 - - type: DeviceLinkSink - links: - - 593 - type: DeviceLinkSource linkedPorts: 593: @@ -11294,9 +11209,6 @@ entities: - type: Transform pos: 82.5,-19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22633 - type: DeviceLinkSource linkedPorts: 22633: @@ -11306,9 +11218,6 @@ entities: - type: Transform pos: 30.5,26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9436 - type: DeviceLinkSource linkedPorts: 9436: @@ -11318,9 +11227,6 @@ entities: - type: Transform pos: 47.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11652 - type: DeviceLinkSource linkedPorts: 11652: @@ -11330,9 +11236,6 @@ entities: - type: Transform pos: 47.5,21.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11651 - type: DeviceLinkSource linkedPorts: 11651: @@ -11342,9 +11245,6 @@ entities: - type: Transform pos: -35.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4758 - type: DeviceLinkSource linkedPorts: 4758: @@ -11354,9 +11254,6 @@ entities: - type: Transform pos: 49.5,-68.5 parent: 8364 - - type: DeviceLinkSink - links: - - 18669 - type: DeviceLinkSource linkedPorts: 18669: @@ -11366,9 +11263,6 @@ entities: - type: Transform pos: 81.5,-66.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19986 - type: DeviceLinkSource linkedPorts: 19986: @@ -11378,9 +11272,6 @@ entities: - type: Transform pos: 81.5,-68.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19985 - type: DeviceLinkSource linkedPorts: 19985: @@ -11390,9 +11281,6 @@ entities: - type: Transform pos: 61.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19857 - type: DeviceLinkSource linkedPorts: 19857: @@ -11402,9 +11290,6 @@ entities: - type: Transform pos: 89.5,-57.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19988 - type: DeviceLinkSource linkedPorts: 19988: @@ -11414,9 +11299,6 @@ entities: - type: Transform pos: 80.5,-19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5626 - type: DeviceLinkSource linkedPorts: 5626: @@ -11433,9 +11315,6 @@ entities: linkedPorts: 655: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 655 - uid: 1110 components: - type: Transform @@ -11446,9 +11325,6 @@ entities: linkedPorts: 12466: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 12466 - uid: 12469 components: - type: Transform @@ -11458,9 +11334,6 @@ entities: linkedPorts: 12468: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 12468 - uid: 12470 components: - type: Transform @@ -11470,9 +11343,6 @@ entities: linkedPorts: 12467: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 12467 - uid: 12486 components: - type: Transform @@ -11483,9 +11353,6 @@ entities: linkedPorts: 610: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 610 - proto: AirlockFreezer entities: - uid: 25720 @@ -11541,7 +11408,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -706.3356 + secondsUntilStateChange: -1003.90155 state: Opening - type: DeviceLinkSource lastSignals: @@ -11895,21 +11762,30 @@ entities: DockStatus: True - type: Physics canCollide: False - - type: DeviceLinkSink - links: - - 1495 - uid: 5209 components: - type: Transform rot: 1.5707963267948966 rad pos: 93.5,-29.5 parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 1727: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 12644 components: - type: Transform rot: 1.5707963267948966 rad pos: 93.5,-26.5 parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 12643: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 21828 components: - type: Transform @@ -14781,92 +14657,105 @@ entities: - type: Transform pos: 56.5,-79.5 parent: 8364 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 556 components: - type: Transform - pos: -0.5,-0.5 - parent: 11906 + rot: 1.5707963267948966 rad + pos: 87.5,-11.5 + parent: 8364 - uid: 635 components: - type: Transform - pos: -77.5,7.5 + rot: 1.5707963267948966 rad + pos: 87.5,-3.5 parent: 8364 - - uid: 682 + - uid: 12475 components: - type: Transform - pos: -70.5,7.5 + rot: -1.5707963267948966 rad + pos: -22.5,24.5 parent: 8364 - - uid: 5094 + - uid: 12478 components: - type: Transform - pos: -21.5,24.5 + rot: 3.141592653589793 rad + pos: -77.5,-2.5 parent: 8364 - - uid: 7209 + - uid: 12679 components: - type: Transform - pos: 36.5,-3.5 + rot: 3.141592653589793 rad + pos: -70.5,-2.5 parent: 8364 - - uid: 9934 + - uid: 13779 components: - type: Transform - pos: 36.5,1.5 + rot: -1.5707963267948966 rad + pos: -67.5,-9.5 parent: 8364 - - uid: 12475 + - uid: 17910 components: - type: Transform - pos: -70.5,-2.5 + rot: 3.141592653589793 rad + pos: -66.5,21.5 parent: 8364 - - uid: 12478 + - uid: 18039 components: - type: Transform - pos: -77.5,-2.5 + rot: -1.5707963267948966 rad + pos: -44.5,-30.5 parent: 8364 - - uid: 12679 + - uid: 20699 components: - type: Transform - pos: -66.5,-9.5 + rot: -1.5707963267948966 rad + pos: -44.5,-28.5 parent: 8364 - - uid: 13399 + - uid: 20800 components: - type: Transform - pos: 41.5,-0.5 + rot: 1.5707963267948966 rad + pos: 87.5,-5.5 parent: 8364 - - uid: 13779 + - uid: 20801 components: - type: Transform - pos: -66.5,21.5 + rot: 1.5707963267948966 rad + pos: 87.5,-13.5 parent: 8364 - - uid: 17910 + - uid: 20825 components: - type: Transform - pos: -44.5,-28.5 + pos: -70.5,7.5 parent: 8364 - - uid: 18039 + - uid: 20854 components: - type: Transform - pos: -44.5,-30.5 + pos: -77.5,7.5 parent: 8364 - - uid: 27622 + - uid: 20855 components: - type: Transform - pos: 87.5,-3.5 - parent: 8364 - - uid: 27623 + pos: -0.5,-0.5 + parent: 11906 +- proto: AtmosDeviceFanTiny + entities: + - uid: 7209 components: - type: Transform - pos: 87.5,-5.5 + pos: 36.5,-3.5 parent: 8364 - - uid: 27624 + - uid: 9934 components: - type: Transform - pos: 87.5,-11.5 + pos: 36.5,1.5 parent: 8364 - - uid: 27625 + - uid: 13399 components: - type: Transform - pos: 87.5,-13.5 + pos: 41.5,-0.5 parent: 8364 - proto: AtmosFixBlockerMarker entities: @@ -16015,9 +15904,6 @@ entities: - type: Transform pos: 27.5,-41.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3807 - uid: 3568 components: - type: MetaData @@ -16030,25 +15916,16 @@ entities: - type: Transform pos: 15.5,-53.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3753 - uid: 3851 components: - type: Transform pos: -6.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22835 - uid: 4704 components: - type: Transform pos: 3.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17472 - uid: 4824 components: - type: MetaData @@ -16068,105 +15945,66 @@ entities: - type: Transform pos: 82.5,-26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5370 - uid: 5798 components: - type: Transform pos: 5.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17472 - uid: 9182 components: - type: Transform pos: 5.5,36.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19935 - uid: 9379 components: - type: Transform pos: 4.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17472 - uid: 10835 components: - type: Transform pos: -4.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22835 - uid: 11732 components: - type: Transform pos: -5.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22835 - uid: 13910 components: - type: Transform pos: -61.5,-21.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2638 - uid: 17676 components: - type: Transform pos: 19.5,-86.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 18326 components: - type: Transform pos: -44.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17791 - uid: 18327 components: - type: Transform pos: -44.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17791 - uid: 19078 components: - type: Transform pos: -10.5,-67.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5243 - uid: 19080 components: - type: Transform pos: -11.5,-67.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5243 - uid: 19090 components: - type: Transform pos: -12.5,-67.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5243 - uid: 19994 components: - type: Transform @@ -16182,41 +16020,26 @@ entities: - type: Transform pos: 19.5,-83.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 20134 components: - type: Transform pos: 19.5,-84.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 20180 components: - type: Transform pos: 70.5,-39.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19856 - uid: 20181 components: - type: Transform pos: 70.5,-40.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19856 - uid: 20182 components: - type: Transform pos: 70.5,-41.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19856 - uid: 20518 components: - type: Transform @@ -16227,49 +16050,31 @@ entities: - type: Transform pos: 15.5,-49.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3754 - uid: 26646 components: - type: Transform pos: 19.5,-85.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 26666 components: - type: Transform pos: -3.5,-74.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26671 - uid: 26667 components: - type: Transform pos: -3.5,-73.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26671 - uid: 26668 components: - type: Transform pos: 2.5,-74.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26670 - uid: 26669 components: - type: Transform pos: 2.5,-73.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26670 - proto: BlastDoorOpen entities: - uid: 3134 @@ -16278,107 +16083,68 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4214 - uid: 4212 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4214 - uid: 4494 components: - type: Transform pos: 7.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4213 - uid: 4495 components: - type: Transform pos: 9.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4213 - uid: 5898 components: - type: Transform pos: -10.5,-8.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11625 - uid: 5911 components: - type: Transform pos: -10.5,-9.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11625 - uid: 6086 components: - type: Transform pos: -10.5,-7.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11625 - uid: 6087 components: - type: Transform pos: 9.5,-7.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11628 - uid: 6098 components: - type: Transform pos: 9.5,-8.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11628 - uid: 6099 components: - type: Transform pos: 9.5,-9.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11628 - uid: 6970 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4214 - uid: 19930 components: - type: Transform pos: -4.5,33.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19933 - uid: 19932 components: - type: Transform pos: -5.5,33.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19933 - proto: BlockGameArcade entities: - uid: 1873 @@ -16433,7 +16199,7 @@ entities: - type: Transform pos: 60.576424,0.7512084 parent: 8364 -- proto: BookChefGaming +- proto: BookHowToCookForFortySpaceman entities: - uid: 11336 components: @@ -68722,7 +68488,7 @@ entities: - type: Transform pos: -46.493744,14.462048 parent: 8364 -- proto: ClothingOuterCoatInspector +- proto: ClothingOuterCoatDetectiveLoadout entities: - uid: 5116 components: @@ -70069,134 +69835,89 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 6226 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6227 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6228 components: - type: Transform pos: -57.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6229 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6230 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6231 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6232 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6233 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6234 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-17.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6235 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-18.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6236 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 7162 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 7213 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 7307 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 7622 components: - type: Transform @@ -70209,9 +69930,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 9475 components: - type: Transform @@ -70230,72 +69948,48 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 10535 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 10536 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 10804 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 11321 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 11325 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 13812 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-20.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 17202 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 20048 components: - type: Transform @@ -122989,9 +122683,6 @@ entities: - type: Transform pos: 71.5,-40.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17552 - proto: MachineCentrifuge entities: - uid: 16828 @@ -133040,9 +132731,6 @@ entities: - type: Transform pos: -58.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - proto: ReinforcedPlasmaWindow entities: - uid: 3494 @@ -138552,33 +138240,21 @@ entities: - type: Transform pos: 43.5,1.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27608 - uid: 20192 components: - type: Transform pos: 52.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4172 - uid: 20193 components: - type: Transform pos: 53.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4172 - uid: 20194 components: - type: Transform pos: 54.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4172 - proto: ShuttersNormalOpen entities: - uid: 1454 @@ -138587,225 +138263,144 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 1455 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 1918 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-61.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 1923 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-62.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 1924 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-63.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 2941 components: - type: Transform pos: 20.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 3001 components: - type: Transform pos: 19.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 5223 components: - type: Transform pos: -7.5,-66.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 5241 components: - type: Transform pos: -5.5,-66.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 5336 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5222 - uid: 5338 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-14.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5222 - uid: 5590 components: - type: Transform pos: -12.5,-24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20896 - uid: 5591 components: - type: Transform pos: -12.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20896 - uid: 5592 components: - type: Transform pos: -12.5,-22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20896 - uid: 8158 components: - type: Transform pos: 6.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 10732 - uid: 8606 components: - type: Transform pos: 3.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8607 components: - type: Transform pos: 3.5,24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8614 components: - type: Transform pos: 2.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8615 components: - type: Transform pos: 1.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 9639 components: - type: Transform pos: -2.5,16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9640 components: - type: Transform pos: -2.5,15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9641 components: - type: Transform pos: -2.5,14.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9642 components: - type: Transform pos: -5.5,18.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9923 components: - type: Transform pos: 10.5,-32.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5322 - uid: 14148 components: - type: Transform pos: 21.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 14850 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 15377 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 15391 components: - type: Transform @@ -138817,9 +138412,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-29.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 15426 components: - type: Transform @@ -138831,18 +138423,12 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 17669 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 17684 components: - type: Transform @@ -138853,146 +138439,92 @@ entities: - type: Transform pos: -0.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 18406 components: - type: Transform pos: -2.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 19022 components: - type: Transform pos: 23.5,-17.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 19023 components: - type: Transform pos: 23.5,-18.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 19024 components: - type: Transform pos: 23.5,-19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 22014 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5222 - uid: 22990 components: - type: Transform pos: -1.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 26786 components: - type: Transform pos: -5.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26787 components: - type: Transform pos: -4.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26788 components: - type: Transform pos: -2.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26789 components: - type: Transform pos: -1.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26790 components: - type: Transform pos: -0.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26791 components: - type: Transform pos: 0.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26792 components: - type: Transform pos: 1.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26793 components: - type: Transform pos: 4.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26794 components: - type: Transform pos: 3.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 27220 components: - type: Transform pos: 7.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 10732 - uid: 27221 components: - type: Transform pos: 8.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 10732 - proto: ShuttersRadiationOpen entities: - uid: 3788 @@ -139000,33 +138532,21 @@ entities: - type: Transform pos: 0.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - uid: 3789 components: - type: Transform pos: 1.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - uid: 3868 components: - type: Transform pos: -2.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - uid: 3875 components: - type: Transform pos: -1.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - proto: ShuttersWindow entities: - uid: 1416 @@ -139043,161 +138563,101 @@ entities: - type: Transform pos: 18.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8645 components: - type: Transform pos: 17.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8646 components: - type: Transform pos: 16.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8647 components: - type: Transform pos: 15.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8648 components: - type: Transform pos: 14.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8649 components: - type: Transform pos: 13.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8650 components: - type: Transform pos: 12.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8775 components: - type: Transform pos: -10.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8776 components: - type: Transform pos: -9.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8777 components: - type: Transform pos: -8.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8778 components: - type: Transform pos: -6.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8779 components: - type: Transform pos: -5.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8780 components: - type: Transform pos: -4.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8781 components: - type: Transform pos: -2.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8782 components: - type: Transform pos: -1.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8783 components: - type: Transform pos: -0.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 10454 components: - type: Transform pos: 35.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 10455 components: - type: Transform pos: 36.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 10456 components: - type: Transform pos: 37.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 10457 components: - type: Transform pos: 38.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 20837 components: - type: Transform @@ -139218,57 +138678,36 @@ entities: - type: Transform pos: 69.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20841 components: - type: Transform pos: 70.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20842 components: - type: Transform pos: 71.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20843 components: - type: Transform pos: 68.5,-22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20844 components: - type: Transform pos: 68.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20845 components: - type: Transform pos: 68.5,-24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20846 components: - type: Transform pos: 68.5,-28.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20847 components: - type: Transform @@ -139279,9 +138718,6 @@ entities: - type: Transform pos: 68.5,-30.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20849 components: - type: Transform @@ -139297,25 +138733,16 @@ entities: - type: Transform pos: 68.5,-33.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2468 - uid: 20852 components: - type: Transform pos: 68.5,-34.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2468 - uid: 20853 components: - type: Transform pos: 68.5,-35.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2468 - proto: ShuttleConsoleCircuitboard entities: - uid: 12454 @@ -139921,7 +139348,7 @@ entities: - type: Transform pos: 4.5,34.5 parent: 8364 -- proto: SignAtmosMinsky +- proto: SignAtmos entities: - uid: 22926 components: @@ -139990,17 +139417,15 @@ entities: parent: 8364 - proto: SignChem entities: - - uid: 18609 + - uid: 8023 components: - type: Transform - pos: 23.5,-16.5 + pos: 18.5,-23.5 parent: 8364 -- proto: SignChemistry1 - entities: - - uid: 8023 + - uid: 18609 components: - type: Transform - pos: 18.5,-23.5 + pos: 23.5,-16.5 parent: 8364 - proto: SignCloning entities: @@ -140340,13 +139765,6 @@ entities: rot: 3.141592653589793 rad pos: 17.490667,-11.707433 parent: 8364 -- proto: SignDrones - entities: - - uid: 21495 - components: - - type: Transform - pos: -51.5,-3.5 - parent: 8364 - proto: SignElectricalMed entities: - uid: 764 @@ -140495,7 +139913,7 @@ entities: - type: Transform pos: -8.5,-28.5 parent: 8364 -- proto: SignHydro3 +- proto: SignHydro1 entities: - uid: 13393 components: @@ -140572,6 +139990,13 @@ entities: - type: Transform pos: -18.5,-16.5 parent: 8364 +- proto: SignMaterials + entities: + - uid: 21495 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 8364 - proto: SignMedical entities: - uid: 1754 @@ -140768,15 +140193,13 @@ entities: - type: Transform pos: 64.5,-25.5 parent: 8364 -- proto: SignScience1 +- proto: SignScience entities: - uid: 11319 components: - type: Transform pos: 72.5,-15.5 parent: 8364 -- proto: SignScience2 - entities: - uid: 21761 components: - type: Transform @@ -141107,17 +140530,15 @@ entities: parent: 8364 - proto: SignToxins entities: - - uid: 5296 + - uid: 5295 components: - type: Transform - pos: 64.5,-34.5 + pos: 69.5,-43.5 parent: 8364 -- proto: SignToxins2 - entities: - - uid: 5295 + - uid: 5296 components: - type: Transform - pos: 69.5,-43.5 + pos: 64.5,-34.5 parent: 8364 - proto: SignVirology entities: @@ -170657,9 +170078,6 @@ entities: - type: Transform pos: -1.5,25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 8743 - uid: 8625 components: - type: MetaData @@ -170667,9 +170085,6 @@ entities: - type: Transform pos: -5.5,25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 25829 - uid: 8626 components: - type: MetaData @@ -170677,9 +170092,6 @@ entities: - type: Transform pos: -9.5,25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26575 - uid: 8973 components: - type: Transform diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index 9df7b348959..96cffb378be 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -54,39 +54,39 @@ entities: chunks: 0,0: ind: 0,0 - tiles: bAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACbAAAAAACbQAAAAABbQAAAAAAbQAAAAADbQAAAAACbAAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAYAAAAAAAWQAAAAABWQAAAAAAYAAAAAAAWQAAAAACbAAAAAADbQAAAAADbQAAAAAAbQAAAAACbQAAAAADbAAAAAADbAAAAAADWQAAAAADTAAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAADWQAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAACbAAAAAACbAAAAAABeQAAAAAAYAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADYAAAAAAAWQAAAAABWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAADeQAAAAAAWQAAAAADTAAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAACYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADYAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAdgAAAAABdgAAAAABdgAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAABYAAAAAAATAAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACdgAAAAAAdgAAAAABdgAAAAACDgAAAAABdgAAAAACdgAAAAACeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAYAAAAAAAWQAAAAABdgAAAAAAdgAAAAADdgAAAAAADgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAABeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAABDgAAAAABDgAAAAACDgAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADTAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABYAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAAAWQAAAAAATAAAAAAAYAAAAAAAWQAAAAADWQAAAAABTAAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAC + tiles: HQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACAQAAAAAAAQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAdgAAAAABdgAAAAABdgAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACdgAAAAAAdgAAAAABdgAAAAACDgAAAAABdgAAAAACdgAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABdgAAAAAAdgAAAAADdgAAAAAADgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAABDgAAAAABDgAAAAACDgAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAC version: 6 -1,0: ind: -1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADYAAAAAAAWQAAAAACeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABYAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABTAAAAAAAWQAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABWQAAAAADYAAAAAAAWQAAAAABeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAAAbAAAAAADcQAAAAADbQAAAAACbQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAACbAAAAAACcQAAAAADbQAAAAABbQAAAAACeQAAAAAAYAAAAAAATAAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAACbAAAAAABeQAAAAAAcQAAAAABcQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAADdgAAAAADdgAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAACWQAAAAACYAAAAAAAWQAAAAADDgAAAAADDgAAAAADDgAAAAABDgAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABcQAAAAABbAAAAAACbAAAAAAAbAAAAAAAWQAAAAACTAAAAAAAWQAAAAACDgAAAAABDgAAAAABDgAAAAADDgAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAcQAAAAACbAAAAAABbAAAAAABbAAAAAAAYAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAACDgAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABWQAAAAADWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACDgAAAAAAbAAAAAABeQAAAAAAeQAAAAAAcQAAAAACeQAAAAAAeQAAAAAAcQAAAAAAcQAAAAABeQAAAAAAWQAAAAABWQAAAAABYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAADbAAAAAACeQAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAABcAAAAAACcAAAAAADeQAAAAAAWQAAAAABTAAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACeQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAACYAAAAAAAYAAAAAAAWQAAAAAAbAAAAAAAcQAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADTAAAAAAAWQAAAAACWQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAAAbAAAAAADcQAAAAADbQAAAAACbQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAACbAAAAAACcQAAAAADbQAAAAABbQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAACbAAAAAABeQAAAAAAcQAAAAABcQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAADdgAAAAADdgAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAACWQAAAAACWQAAAAAAWQAAAAADDgAAAAADDgAAAAADDgAAAAABDgAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABcQAAAAABbAAAAAACbAAAAAAAbAAAAAAAWQAAAAACWQAAAAAAWQAAAAACDgAAAAABDgAAAAABDgAAAAADDgAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAcQAAAAACbAAAAAABbAAAAAABbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAACDgAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACDgAAAAAAbAAAAAABeQAAAAAAeQAAAAAAcQAAAAACeQAAAAAAeQAAAAAAcQAAAAAAcQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAADbAAAAAACeQAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAABcAAAAAACcAAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAbAAAAAAAcQAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAB version: 6 -1,-1: ind: -1,-1 - tiles: ZAAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYQAAAAADYQAAAAADeQAAAAAAWQAAAAAAYAAAAAAAHQAAAAACHQAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYQAAAAAAYQAAAAACeQAAAAAAWQAAAAABWQAAAAACHQAAAAAAHQAAAAADEQAAAAAAIQAAAAABEQAAAAAAHgAAAAACHgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYQAAAAADYQAAAAADeQAAAAAAWQAAAAABWQAAAAABHQAAAAACHQAAAAABEQAAAAAAIQAAAAADEQAAAAAAHgAAAAADHgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAZAAAAAABWQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAHQAAAAABHQAAAAABEQAAAAAAIQAAAAABEQAAAAAAHgAAAAABHgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYQAAAAAAYQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYQAAAAAAYQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACYAAAAAAAWQAAAAABYAAAAAAAWQAAAAABWQAAAAADWQAAAAABYAAAAAAAYQAAAAAAYQAAAAADeQAAAAAAYAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAADTAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAATAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACYAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADYAAAAAAAWQAAAAADeQAAAAAAJAAAAAACJAAAAAADOgAAAAAAWQAAAAADWQAAAAADeQAAAAAAIgAAAAABIgAAAAAAeQAAAAAAIgAAAAACIgAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAJAAAAAABJAAAAAACOgAAAAAAYAAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAYAAAAAAATAAAAAAAWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACLQAAAAAALQAAAAAALQAAAAAAHQAAAAACeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACIgAAAAABJAAAAAACJAAAAAADJAAAAAADWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADYAAAAAAAWQAAAAAAeQAAAAAAJAAAAAACJAAAAAADJAAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAJAAAAAADJAAAAAAAeQAAAAAA + tiles: IgAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAABWQAAAAACHQAAAAAAHQAAAAADEQAAAAAAIQAAAAABEQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAACHQAAAAABEQAAAAAAIQAAAAADEQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAHQAAAAABHQAAAAABEQAAAAAAIQAAAAABEQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAWQAAAAADWQAAAAADeQAAAAAAIgAAAAABIgAAAAAAeQAAAAAAIgAAAAACIgAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACLQAAAAAALQAAAAAALQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACIgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: WQAAAAACWQAAAAACWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACYAAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAATAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABTAAAAAAAWQAAAAABWQAAAAACWQAAAAADYAAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACYAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAZAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABZAAAAAAAWQAAAAABJAAAAAACJAAAAAAAJAAAAAADOgAAAAAAJAAAAAAAJAAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADYAAAAAAAWQAAAAADeQAAAAAAZAAAAAABJAAAAAABJAAAAAADJAAAAAABOgAAAAAAJAAAAAABJAAAAAABeQAAAAAAYAAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAABTAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAOgAAAAAAJAAAAAAAJAAAAAADeQAAAAAAWQAAAAABYAAAAAAAWQAAAAADeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAABHQAAAAAC + tiles: WQAAAAACWQAAAAACWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAABHQAAAAAC version: 6 -1,1: ind: -1,1 - tiles: bAAAAAAAeQAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADcQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbQAAAAADbQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbQAAAAAAbQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbQAAAAACbQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAABbQAAAAAAbQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACHQAAAAADTQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAD + tiles: bAAAAAAAeQAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADcQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbQAAAAADbQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbQAAAAAAbQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbQAAAAACbQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAABbQAAAAAAbQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACHQAAAAADTQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAD version: 6 0,1: ind: 0,1 - tiles: WQAAAAACWQAAAAADWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABHQAAAAADdgAAAAABdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABHQAAAAADdgAAAAABdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: YAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADYAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAYAAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABYAAAAAAAWQAAAAACWQAAAAACWQAAAAAAYAAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADYAAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAADeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbwAAAAACbwAAAAABbwAAAAAAbwAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAbAAAAAADPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAbAAAAAACPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACIgAAAAAAbAAAAAAC + tiles: YAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAADeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbwAAAAACbwAAAAABbwAAAAAAbwAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAbAAAAAADPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAbAAAAAACPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACIgAAAAAAbAAAAAAC version: 6 1,0: ind: 1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADYAAAAAAAWQAAAAADYAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAYAAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADYAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABYAAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABYAAAAAAAWQAAAAABWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABYAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABYAAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAYAAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAC + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAC version: 6 0,-2: ind: 0,-2 - tiles: YAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACZAAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAACeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAACWQAAAAADZAAAAAADWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABYAAAAAAAeQAAAAAAWQAAAAADWQAAAAABYAAAAAAAWQAAAAAAZAAAAAABWQAAAAABYAAAAAAAYAAAAAAAWQAAAAACWQAAAAACWQAAAAAAYAAAAAAAWQAAAAACWQAAAAABWQAAAAADZAAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAZAAAAAADYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABYAAAAAAAWQAAAAADYAAAAAAAZAAAAAAAWQAAAAADYAAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABYAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABYAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAABYAAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAdgAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: WQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAACeQAAAAAAeQAAAAAAWQAAAAACZAAAAAAAZAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADZAAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAZAAAAAABWQAAAAABZAAAAAAAZAAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAZAAAAAADWQAAAAAAZAAAAAAAZAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAdgAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -2,1: ind: -2,1 @@ -106,15 +106,15 @@ entities: version: 6 -2,-1: ind: -2,-1 - tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAABeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAYQAAAAAAZAAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAYQAAAAACYQAAAAACHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAYQAAAAAAZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAYQAAAAABZAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAYQAAAAAAYQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAYQAAAAACZAAAAAADHgAAAAADHgAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHgAAAAACHgAAAAADHgAAAAABWQAAAAABWQAAAAADWQAAAAAAYAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAADYAAAAAAAWQAAAAABWQAAAAADHgAAAAAAHgAAAAADeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAADWQAAAAABYAAAAAAAWQAAAAADWQAAAAABYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAHgAAAAACHgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABEQAAAAAAIgAAAAADEQAAAAAAHQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAADYAAAAAAAWQAAAAADYAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABIgAAAAADEQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAIgAAAAACEQAAAAAAHQAAAAADeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAD + tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAZAAAAAAAZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAZAAAAAAAZAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAZAAAAAAAZAAAAAADHgAAAAADHgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHgAAAAACHgAAAAADHgAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADHgAAAAAAHgAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAHgAAAAACHgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABEQAAAAAAIgAAAAADEQAAAAAAHQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAADWQAAAAAAWQAAAAADWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABIgAAAAADEQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAIgAAAAACEQAAAAAAHQAAAAADeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAD version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABYAAAAAAAWQAAAAABWQAAAAADUAAAAAAAeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAABXgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + tiles: AAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADUAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: eAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABdgAAAAABdgAAAAABeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAADeQAAAAAAdgAAAAADeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAC + tiles: eAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAABdgAAAAABeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -122,15 +122,15 @@ entities: version: 6 1,1: ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAADYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADYAAAAAAAWQAAAAAAWQAAAAADYAAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAADWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAYAAAAAAAWQAAAAADWQAAAAACYAAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 2,0: ind: 2,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAAAWQAAAAABWQAAAAADYAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAWQAAAAADWQAAAAADYAAAAAAAWQAAAAACeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACYAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADYAAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA version: 6 2,1: ind: 2,1 - tiles: WQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAYAAAAAAAWQAAAAABeQAAAAAAYAAAAAAAWQAAAAACYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAACYAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADLQAAAAAALQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACLQAAAAAALQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABYAAAAAAAWQAAAAABWQAAAAACWQAAAAACYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADHQAAAAADHQAAAAADdgAAAAABdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACHQAAAAABHQAAAAACdgAAAAACdgAAAAAAdgAAAAACeQAAAAAA + tiles: WQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADHQAAAAADHQAAAAADdgAAAAABdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACHQAAAAABHQAAAAACdgAAAAACdgAAAAAAdgAAAAACeQAAAAAA version: 6 2,2: ind: 2,2 @@ -142,7 +142,7 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABLQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABWQAAAAABWQAAAAAAWQAAAAADYAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAADWQAAAAAAZAAAAAAAWQAAAAABWQAAAAACZAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABYAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACZAAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADYAAAAAAAWQAAAAACeQAAAAAAWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAACYAAAAAAAZAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAALQAAAAAALQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAWQAAAAABWQAAAAABLQAAAAAALQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACYAAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAA + tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAA version: 6 2,-1: ind: 2,-1 @@ -150,19 +150,19 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACYAAAAAAAWQAAAAADWQAAAAADWQAAAAABYAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAYAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACYAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAADWQAAAAACYAAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAADZAAAAAADWQAAAAACYAAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAADZAAAAAABYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAA + tiles: AAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAADZAAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAADZAAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABYAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAADZAAAAAACZAAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACHQAAAAACeQAAAAAAYAAAAAAAWQAAAAACWQAAAAACYAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACHQAAAAACHQAAAAABYAAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACHQAAAAACHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAB version: 6 3,-1: ind: 3,-1 @@ -174,7 +174,7 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACYAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADYAAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADYAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAABHQAAAAACPgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAABHQAAAAACPgAAAAAA version: 6 -3,1: ind: -3,1 @@ -254,2845 +254,3037 @@ entities: color: '#FFFFFFFF' id: Basalt1 decals: - 1287: 25.881918,34.192333 - 1290: 36.05116,32.59352 + 1179: 25.881918,34.192333 + 1182: 36.05116,32.59352 - node: color: '#FFFFFFFF' id: Basalt5 decals: - 1288: 31.894993,33.661083 - 1300: 25.780825,32.109146 + 1180: 31.894993,33.661083 + 1192: 25.780825,32.109146 - node: color: '#FFFFFFFF' id: Basalt8 decals: - 1289: 33.992474,34.93727 + 1181: 33.992474,34.93727 - node: color: '#A46106FF' id: BotLeft decals: - 1044: 22,-28 - 1045: 21,-28 - 1046: 20,-28 - 1047: 20,-27 - 1048: 21,-27 - 1049: 22,-27 - 1050: 15,-22 - 1051: 15,-23 - 1052: 15,-24 - 1053: 15,-25 - 1054: 14,-25 - 1055: 14,-24 - 1056: 14,-23 - 1057: 14,-22 - 1058: 18,-28 - 1059: 18,-27 - 1060: 17,-27 - 1061: 17,-28 - 1062: 16,-27 - 1063: 16,-28 + 936: 22,-28 + 937: 21,-28 + 938: 20,-28 + 939: 20,-27 + 940: 21,-27 + 941: 22,-27 + 942: 15,-22 + 943: 15,-23 + 944: 15,-24 + 945: 15,-25 + 946: 14,-25 + 947: 14,-24 + 948: 14,-23 + 949: 14,-22 + 950: 18,-28 + 951: 18,-27 + 952: 17,-27 + 953: 17,-28 + 954: 16,-27 + 955: 16,-28 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1363: 6,-22 - 1364: 6,-21 - 1365: 6,-20 - 1366: 5,-20 - 1367: 4,-20 - 1368: -3,17 - 1369: -2,17 - 1370: -1,17 - 1371: 0,17 + 1244: 6,-22 + 1245: 6,-21 + 1246: 6,-20 + 1247: 5,-20 + 1248: 4,-20 + 1249: -3,17 + 1250: -2,17 + 1251: -1,17 + 1252: 0,17 - node: - color: '#EFB341FF' - id: BotRight + color: '#FFFFFFFF' + id: Box decals: - 967: 26,-7 - 968: 26,-6 - 969: 26,-5 - 970: 26,-4 - 971: 27,-4 - 972: 27,-5 - 973: 27,-6 - 974: 27,-7 - 975: 28,-7 - 976: 28,-6 - 977: 28,-5 - 978: 28,-4 + 1381: -17,-13 + 1382: -17,-15 + 1383: -17,-11 + 1384: -17,-9 - node: color: '#52B4E9FF' id: BrickCornerOverlayNE decals: - 1462: -23,24 + 1343: -23,24 - node: color: '#52B4E9FF' id: BrickCornerOverlayNW decals: - 1399: -27,24 + 1280: -27,24 - node: color: '#52B4E9FF' id: BrickCornerOverlaySE decals: - 1400: -23,20 + 1281: -23,20 - node: color: '#52B4E9FF' id: BrickCornerOverlaySW decals: - 1401: -27,20 + 1282: -27,20 - node: color: '#52B4E9FF' id: BrickLineOverlayE decals: - 1411: -23,23 - 1412: -23,22 - 1413: -23,21 + 1292: -23,23 + 1293: -23,22 + 1294: -23,21 - node: color: '#52B4E9FF' id: BrickLineOverlayN decals: - 1408: -26,24 - 1409: -25,24 - 1410: -24,24 + 1289: -26,24 + 1290: -25,24 + 1291: -24,24 - node: color: '#52B4E9FF' id: BrickLineOverlayS decals: - 1402: -26,20 - 1403: -25,20 - 1404: -24,20 + 1283: -26,20 + 1284: -25,20 + 1285: -24,20 - node: color: '#52B4E9FF' id: BrickLineOverlayW decals: - 1405: -27,21 - 1406: -27,22 - 1407: -27,23 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 890: -17,-9 - 905: -17,-13 - 906: -17,-11 - 907: -17,-15 + 1286: -27,21 + 1287: -27,22 + 1288: -27,23 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 115: -4,56 - 116: -3,55 - 124: -6,46 + 111: -4,56 + 112: -3,55 + 120: -6,46 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 113: -11,55 - 114: -10,56 - 123: -8,46 + 109: -11,55 + 110: -10,56 + 119: -8,46 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 109: -4,48 - 110: -3,49 - 121: -6,44 + 105: -4,48 + 106: -3,49 + 117: -6,44 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 111: -10,48 - 112: -11,49 - 122: -8,44 + 107: -10,48 + 108: -11,49 + 118: -8,44 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 771: -10,-3 + 691: -10,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 768: -12,-3 + 688: -12,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 118: -4,55 + 114: -4,55 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 117: -10,55 + 113: -10,55 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 119: -4,49 + 115: -4,49 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 120: -10,49 + 116: -10,49 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 87: -3,54 - 88: -3,53 - 89: -3,52 - 90: -3,51 - 91: -3,50 - 125: -6,45 + 83: -3,54 + 84: -3,53 + 85: -3,52 + 86: -3,51 + 87: -3,50 + 121: -6,45 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 92: -8,56 - 93: -9,56 - 94: -7,56 - 95: -5,56 - 96: -5,56 - 97: -6,56 - 128: -7,46 - 770: -11,-3 + 88: -8,56 + 89: -9,56 + 90: -7,56 + 91: -5,56 + 92: -5,56 + 93: -6,56 + 124: -7,46 + 690: -11,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 104: -9,48 - 105: -8,48 - 106: -7,48 - 107: -6,48 - 108: -5,48 - 127: -7,44 - 769: -11,-3 + 100: -9,48 + 101: -8,48 + 102: -7,48 + 103: -6,48 + 104: -5,48 + 123: -7,44 + 689: -11,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 98: -11,54 - 99: -11,53 - 100: -11,53 - 101: -11,51 - 102: -11,52 - 103: -11,50 - 126: -8,45 + 94: -11,54 + 95: -11,53 + 96: -11,53 + 97: -11,51 + 98: -11,52 + 99: -11,50 + 122: -8,45 - node: color: '#334E6DFF' id: BrickTileSteelBox decals: - 196: 2,49 - 197: 3,49 + 192: 2,49 + 193: 3,49 - node: color: '#52B4E9FF' id: BrickTileSteelBox decals: - 193: -1,49 - 194: 0,49 - 195: 1,49 + 189: -1,49 + 190: 0,49 + 191: 1,49 - node: color: '#9FED58FF' id: BrickTileSteelBox decals: - 187: -1,53 - 188: 0,53 + 183: -1,53 + 184: 0,53 - node: color: '#A46106FF' id: BrickTileSteelBox decals: - 185: -1,55 - 186: 0,55 + 181: -1,55 + 182: 0,55 - node: color: '#B7FF8FFF' id: BrickTileSteelBox decals: - 189: 2,55 - 190: 3,55 + 185: 2,55 + 186: 3,55 - node: color: '#D381C9FF' id: BrickTileSteelBox decals: - 191: -1,51 - 192: 0,51 + 187: -1,51 + 188: 0,51 - node: color: '#DE3A3AFF' id: BrickTileSteelBox decals: - 181: 2,51 - 182: 3,51 + 177: 2,51 + 178: 3,51 - node: color: '#EFB341FF' id: BrickTileSteelBox decals: - 183: 2,53 - 184: 3,53 + 179: 2,53 + 180: 3,53 - node: color: '#52B4E9FF' id: BrickTileSteelCornerNe decals: - 681: -19,16 - 682: -23,16 + 633: -19,16 + 634: -23,16 - node: color: '#D381C9FF' id: BrickTileSteelCornerNe decals: - 829: -21,-1 + 749: -21,-1 + - node: + color: '#DD563BFF' + id: BrickTileSteelCornerNe + decals: + 1578: 25,25 + 1582: 25,28 + 1583: 33,28 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNe decals: - 490: 29,14 + 486: 29,14 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 746: 2,-5 - 747: -2,-5 - 1173: -14,-51 - 1180: -41,-18 + 666: 2,-5 + 667: -2,-5 + 1065: -14,-51 + 1072: -41,-18 - node: color: '#52B4E9FF' id: BrickTileSteelCornerNw decals: - 679: -27,16 - 680: -21,16 + 631: -27,16 + 632: -21,16 - node: color: '#D381C9FF' id: BrickTileSteelCornerNw decals: - 830: -23,-1 + 750: -23,-1 + 1386: -21,-17 + - node: + color: '#DD563BFF' + id: BrickTileSteelCornerNw + decals: + 1574: 27,28 + 1575: 24,28 + 1579: 24,25 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNw decals: - 489: 25,14 + 485: 25,14 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 748: 0,-5 - 749: 4,-5 - 1174: -16,-51 - 1179: -44,-18 + 668: 0,-5 + 669: 4,-5 + 1066: -16,-51 + 1071: -44,-18 - node: color: '#52B4E9FF' id: BrickTileSteelCornerSe decals: - 677: -19,13 - 678: -23,13 + 629: -19,13 + 630: -23,13 - node: color: '#D381C9FF' id: BrickTileSteelCornerSe decals: - 832: -21,-4 - 901: -15,-19 + 752: -21,-4 + 811: -15,-19 + - node: + color: '#DD563BFF' + id: BrickTileSteelCornerSe + decals: + 1576: 25,24 + 1580: 25,27 + 1584: 33,25 + 1587: 30,24 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSe decals: - 492: 29,12 + 488: 29,12 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 1178: -14,-52 - 1182: -41,-21 + 1070: -14,-52 + 1074: -41,-21 - node: color: '#52B4E9FF' id: BrickTileSteelCornerSw decals: - 683: -27,13 - 684: -21,13 + 635: -27,13 + 636: -21,13 - node: color: '#D381C9FF' id: BrickTileSteelCornerSw decals: - 831: -23,-4 - 900: -21,-19 + 751: -23,-4 + 810: -21,-19 + - node: + color: '#DD563BFF' + id: BrickTileSteelCornerSw + decals: + 1577: 24,24 + 1581: 24,27 + 1588: 27,24 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSw decals: - 491: 25,12 + 487: 25,12 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 1177: -16,-52 - 1181: -44,-21 + 1069: -16,-52 + 1073: -44,-21 - node: color: '#FFFFFFFF' id: BrickTileSteelEndE decals: - 757: 2,-3 + 677: 2,-3 - node: color: '#FFFFFFFF' id: BrickTileSteelEndW decals: - 758: 4,-3 - 759: 0,-3 + 678: 4,-3 + 679: 0,-3 + - node: + color: '#D381C9FF' + id: BrickTileSteelInnerNw + decals: + 1389: -18,-17 + - node: + color: '#DD563BFF' + id: BrickTileSteelInnerSe + decals: + 1586: 30,25 - node: color: '#52B4E9FF' id: BrickTileSteelLineE decals: - 661: -19,14 - 662: -19,15 - 666: -23,15 - 667: -23,14 + 613: -19,14 + 614: -19,15 + 618: -23,15 + 619: -23,14 - node: color: '#D381C9FF' id: BrickTileSteelLineE decals: - 823: -21,-2 - 824: -21,-3 - 891: -15,-17 - 892: -15,-18 - 1327: -15,-15 - 1328: -15,-14 - 1329: -15,-13 - 1330: -15,-11 - 1331: -15,-10 - 1332: -15,-9 + 743: -21,-2 + 744: -21,-3 + 804: -15,-18 + 1215: -15,-15 + 1216: -15,-14 + 1217: -15,-13 + 1218: -15,-11 + 1219: -15,-10 + 1220: -15,-9 + 1390: -15,-17 + - node: + color: '#DD563BFF' + id: BrickTileSteelLineE + decals: + 1569: 33,27 + 1570: 33,26 - node: color: '#DE3A3AFF' id: BrickTileSteelLineE decals: - 484: 29,13 + 480: 29,13 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 755: -2,-6 - 756: 2,-6 - 1185: -41,-19 - 1186: -41,-20 + 675: -2,-6 + 676: 2,-6 + 1077: -41,-19 + 1078: -41,-20 - node: color: '#52B4E9FF' id: BrickTileSteelLineN decals: - 663: -24,16 - 664: -25,16 - 665: -26,16 - 676: -20,16 + 615: -24,16 + 616: -25,16 + 617: -26,16 + 628: -20,16 - node: color: '#D381C9FF' id: BrickTileSteelLineN decals: - 825: -22,-1 + 745: -22,-1 + 1387: -20,-17 + 1388: -19,-17 + - node: + color: '#DD563BFF' + id: BrickTileSteelLineN + decals: + 1564: 28,28 + 1565: 29,28 + 1566: 31,28 + 1567: 32,28 + 1568: 30,28 + 1594: 26,25 + 1595: 26,27 - node: color: '#DE3A3AFF' id: BrickTileSteelLineN decals: - 485: 28,14 - 486: 27,14 - 487: 26,14 + 481: 28,14 + 482: 27,14 + 483: 26,14 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 215: -4,26 - 750: -3,-5 - 751: 1,-5 - 752: 5,-5 - 760: 1,-3 - 763: 5,-3 - 1175: -15,-51 - 1183: -43,-18 - 1184: -42,-18 + 211: -4,26 + 670: -3,-5 + 671: 1,-5 + 672: 5,-5 + 680: 1,-3 + 683: 5,-3 + 1067: -15,-51 + 1075: -43,-18 + 1076: -42,-18 - node: color: '#52B4E9FF' id: BrickTileSteelLineS decals: - 672: -26,13 - 673: -25,13 - 674: -24,13 - 675: -20,13 + 624: -26,13 + 625: -25,13 + 626: -24,13 + 627: -20,13 - node: color: '#D381C9FF' id: BrickTileSteelLineS decals: - 826: -22,-4 - 893: -17,-19 - 894: -16,-19 - 895: -18,-19 - 896: -19,-19 - 897: -20,-19 + 746: -22,-4 + 805: -17,-19 + 806: -16,-19 + 807: -18,-19 + 808: -19,-19 + 809: -20,-19 + - node: + color: '#DD563BFF' + id: BrickTileSteelLineS + decals: + 1571: 31,25 + 1572: 29,24 + 1573: 28,24 + 1585: 32,25 + 1592: 26,25 + 1593: 26,27 - node: color: '#DE3A3AFF' id: BrickTileSteelLineS decals: - 481: 28,12 - 482: 27,12 - 483: 26,12 + 477: 28,12 + 478: 27,12 + 479: 26,12 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 761: 1,-3 - 762: 5,-3 - 1176: -15,-52 - 1189: -43,-21 - 1190: -42,-21 - 1374: -3,-3 - 1375: -2,-3 - 1376: -1,-3 + 681: 1,-3 + 682: 5,-3 + 1068: -15,-52 + 1081: -43,-21 + 1082: -42,-21 + 1255: -3,-3 + 1256: -2,-3 + 1257: -1,-3 - node: color: '#52B4E9FF' id: BrickTileSteelLineW decals: - 668: -27,15 - 669: -27,14 - 670: -21,15 - 671: -21,14 + 620: -27,15 + 621: -27,14 + 622: -21,15 + 623: -21,14 - node: color: '#D381C9FF' id: BrickTileSteelLineW decals: - 827: -23,-3 - 828: -23,-2 - 898: -21,-18 - 899: -21,-17 - 1333: -18,-15 - 1334: -18,-14 - 1335: -18,-13 - 1336: -18,-11 - 1337: -18,-10 - 1338: -18,-9 - 1340: -18,-12 - 1341: -18,-16 + 747: -23,-3 + 748: -23,-2 + 1221: -18,-15 + 1222: -18,-14 + 1223: -18,-13 + 1224: -18,-11 + 1225: -18,-10 + 1226: -18,-9 + 1385: -21,-18 + - node: + color: '#DD563BFF' + id: BrickTileSteelLineW + decals: + 1589: 27,25 + 1590: 27,26 + 1591: 27,27 - node: color: '#DE3A3AFF' id: BrickTileSteelLineW decals: - 488: 25,13 + 484: 25,13 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 214: 2,28 - 753: 4,-6 - 754: 0,-6 - 1187: -44,-19 - 1188: -44,-20 + 210: 2,28 + 673: 4,-6 + 674: 0,-6 + 1079: -44,-19 + 1080: -44,-20 - node: color: '#EFB341FF' id: BrickTileWhiteBox decals: - 1039: 19,-15 + 931: 19,-15 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNe decals: - 710: -9,6 + 662: -9,6 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerNe decals: - 1430: -12,11 - 1440: -16,16 - 1464: -12,8 + 1311: -12,11 + 1321: -16,16 + 1345: -12,8 - node: color: '#9D9D97FF' id: BrickTileWhiteCornerNe decals: - 1234: 46,28 - 1257: 43,27 + 1126: 46,28 + 1149: 43,27 - node: color: '#9FED58FF' id: BrickTileWhiteCornerNe decals: - 640: -11,21 - 643: -11,19 + 592: -11,21 + 595: -11,19 - node: color: '#A46106FF' id: BrickTileWhiteCornerNe decals: - 1096: 11,-18 + 988: 11,-18 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 494: 29,18 + 490: 29,18 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNe decals: - 1027: 20,-14 - 1043: 21,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 741: 4,2 + 919: 20,-14 + 935: 21,-6 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNw decals: - 707: -10,6 + 659: -10,6 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerNw decals: - 1439: -17,16 - 1455: -27,11 - 1463: -22,8 + 1320: -17,16 + 1336: -27,11 + 1344: -22,8 - node: color: '#9D9D97FF' id: BrickTileWhiteCornerNw decals: - 1235: 39,28 - 1256: 42,27 + 1127: 39,28 + 1148: 42,27 - node: color: '#9FED58FF' id: BrickTileWhiteCornerNw decals: - 638: -12,21 - 642: -12,19 + 590: -12,21 + 594: -12,19 - node: color: '#A46106FF' id: BrickTileWhiteCornerNw decals: - 1161: 8,-18 + 1053: 8,-18 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 493: 27,18 + 489: 27,18 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNw decals: - 1028: 16,-14 - 1042: 20,-6 + 920: 16,-14 + 934: 20,-6 - node: - color: '#FFFFFFFF' + color: '#F9801D7F' id: BrickTileWhiteCornerNw decals: - 738: 1,2 + 1369: 11,6 + 1370: 14,6 + 1371: 17,6 - node: color: '#334E6DFF' id: BrickTileWhiteCornerSe decals: - 1230: 44,33 + 1122: 44,33 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerSe decals: - 708: -9,5 + 660: -9,5 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerSe decals: - 1426: -12,5 - 1474: -12,9 + 1307: -12,5 + 1355: -12,9 - node: color: '#9D9D97FF' id: BrickTileWhiteCornerSe decals: - 1252: 46,25 - 1255: 43,26 + 1144: 46,25 + 1147: 43,26 - node: color: '#9FED58FF' id: BrickTileWhiteCornerSe decals: - 639: -11,18 - 641: -11,20 + 591: -11,18 + 593: -11,20 - node: color: '#A46106FF' id: BrickTileWhiteCornerSe decals: - 1095: 11,-24 + 987: 11,-24 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 495: 29,16 + 491: 29,16 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSe decals: - 1029: 20,-16 - 1040: 21,-7 + 921: 20,-16 + 932: 21,-7 - node: - color: '#FFFFFFFF' + color: '#F9801D7F' id: BrickTileWhiteCornerSe decals: - 739: 4,1 + 1372: 12,5 + 1373: 15,5 + 1374: 18,5 - node: color: '#334E6DFF' id: BrickTileWhiteCornerSw decals: - 1231: 41,33 + 1123: 41,33 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerSw decals: - 709: -10,5 + 661: -10,5 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerSw decals: - 1416: -22,5 - 1456: -27,9 + 1297: -22,5 + 1337: -27,9 - node: color: '#9D9D97FF' id: BrickTileWhiteCornerSw decals: - 1253: 39,25 - 1254: 42,26 + 1145: 39,25 + 1146: 42,26 - node: color: '#9FED58FF' id: BrickTileWhiteCornerSw decals: - 637: -12,18 - 644: -12,20 + 589: -12,18 + 596: -12,20 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 496: 27,16 + 492: 27,16 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSw decals: - 1030: 16,-16 - 1041: 20,-7 + 922: 16,-16 + 933: 20,-7 - node: - color: '#FFFFFFFF' + color: '#F9801D7F' id: BrickTileWhiteCornerSw decals: - 740: 1,1 + 1366: 11,5 + 1367: 14,5 + 1368: 17,5 - node: color: '#96DAFFFF' id: BrickTileWhiteInnerNe decals: - 1434: -16,11 + 1315: -16,11 - node: color: '#9FED5896' id: BrickTileWhiteInnerNe decals: - 158: -2,52 + 154: -2,52 - node: color: '#BDFF8593' id: BrickTileWhiteInnerNe decals: - 175: 1,54 + 171: 1,54 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 149: 1,50 + 145: 1,50 - node: color: '#EFB341FF' id: BrickTileWhiteInnerNe decals: - 171: 1,52 + 167: 1,52 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 1169: -5,-25 + 1061: -5,-25 - node: color: '#96DAFFFF' id: BrickTileWhiteInnerNw decals: - 1445: -17,11 + 1326: -17,11 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw decals: - 165: 1,52 + 161: 1,52 - node: color: '#A46106FF' id: BrickTileWhiteInnerNw decals: - 180: 1,54 - 1160: 8,-19 + 176: 1,54 + 1052: 8,-19 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNw decals: - 157: 1,50 + 153: 1,50 + - node: + color: '#F9801D7F' + id: BrickTileWhiteInnerNw + decals: + 1378: 12,6 + 1379: 15,6 + 1380: 18,6 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 1312: -3,-25 + 1204: -3,-25 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSe decals: - 151: -2,52 + 147: -2,52 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 148: 1,52 + 144: 1,52 - node: color: '#EFB341FF' id: BrickTileWhiteInnerSe decals: - 172: 1,54 + 168: 1,54 - node: color: '#9FED5896' id: BrickTileWhiteInnerSw decals: - 164: 1,54 + 160: 1,54 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSw decals: - 154: 1,52 + 150: 1,52 - node: color: '#334E6DFF' id: BrickTileWhiteLineE decals: - 1229: 44,34 + 1121: 44,34 - node: color: '#7C5C98FF' id: BrickTileWhiteLineE decals: - 1313: 9,-2 + 1205: 9,-2 - node: color: '#96DAFFFF' id: BrickTileWhiteLineE decals: - 1427: -12,6 - 1428: -12,7 - 1429: -12,10 - 1435: -16,12 - 1436: -16,13 - 1437: -16,14 - 1438: -16,15 + 1308: -12,6 + 1309: -12,7 + 1310: -12,10 + 1316: -16,12 + 1317: -16,13 + 1318: -16,14 + 1319: -16,15 - node: color: '#9D9D97FF' id: BrickTileWhiteLineE decals: - 1242: 46,27 - 1243: 46,26 + 1134: 46,27 + 1135: 46,26 - node: color: '#A46106FF' id: BrickTileWhiteLineE decals: - 1087: 11,-19 - 1088: 11,-20 - 1089: 11,-21 - 1090: 11,-22 - 1091: 11,-23 - 1159: 7,-18 + 979: 11,-19 + 980: 11,-20 + 981: 11,-21 + 982: 11,-22 + 983: 11,-23 + 1051: 7,-18 - node: color: '#BDFF8593' id: BrickTileWhiteLineE decals: - 176: 1,55 + 172: 1,55 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 147: 1,51 - 499: 29,17 + 143: 1,51 + 495: 29,17 - node: color: '#EFB341FF' id: BrickTileWhiteLineE decals: - 166: 1,53 - 1037: 20,-15 + 162: 1,53 + 929: 20,-15 + - node: + color: '#F9801D7F' + id: BrickTileWhiteLineE + decals: + 1375: 18,6 + 1376: 15,6 + 1377: 12,6 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteLineN + decals: + 1537: -26,7 + 1538: -25,7 - node: color: '#96DAFFFF' id: BrickTileWhiteLineN decals: - 1431: -13,11 - 1432: -14,11 - 1433: -15,11 - 1446: -18,11 - 1447: -19,11 - 1448: -20,11 - 1449: -21,11 - 1450: -22,11 - 1451: -23,11 - 1452: -24,11 - 1453: -25,11 - 1454: -26,11 - 1465: -21,8 - 1466: -20,8 - 1467: -19,8 - 1468: -18,8 - 1469: -17,8 - 1470: -16,8 - 1471: -15,8 - 1472: -14,8 - 1473: -13,8 + 1312: -13,11 + 1313: -14,11 + 1314: -15,11 + 1327: -18,11 + 1328: -19,11 + 1329: -20,11 + 1330: -21,11 + 1331: -22,11 + 1332: -23,11 + 1333: -24,11 + 1334: -25,11 + 1335: -26,11 + 1346: -21,8 + 1347: -20,8 + 1348: -19,8 + 1349: -18,8 + 1350: -17,8 + 1351: -16,8 + 1352: -15,8 + 1353: -14,8 + 1354: -13,8 - node: color: '#9D9D97FF' id: BrickTileWhiteLineN decals: - 1236: 40,28 - 1237: 41,28 - 1238: 42,28 - 1239: 43,28 - 1240: 44,28 - 1241: 45,28 + 1128: 40,28 + 1129: 41,28 + 1130: 42,28 + 1131: 43,28 + 1132: 44,28 + 1133: 45,28 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 159: -1,52 - 160: 0,52 + 155: -1,52 + 156: 0,52 - node: color: '#A46106FF' id: BrickTileWhiteLineN decals: - 177: -1,54 - 178: 0,54 - 1085: 9,-18 - 1086: 10,-18 + 173: -1,54 + 174: 0,54 + 977: 9,-18 + 978: 10,-18 - node: color: '#BDFF8593' id: BrickTileWhiteLineN decals: - 173: 2,54 - 174: 3,54 + 169: 2,54 + 170: 3,54 - node: color: '#D381C9FF' id: BrickTileWhiteLineN decals: - 155: -1,50 - 156: 0,50 + 151: -1,50 + 152: 0,50 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 143: 2,50 - 144: 3,50 - 498: 28,18 + 139: 2,50 + 140: 3,50 + 494: 28,18 - node: color: '#EFB341FF' id: BrickTileWhiteLineN decals: - 169: 2,52 - 170: 3,52 - 1031: 17,-14 - 1032: 18,-14 - 1033: 19,-14 + 165: 2,52 + 166: 3,52 + 923: 17,-14 + 924: 18,-14 + 925: 19,-14 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 742: 2,2 - 743: 3,2 - 764: 3,-1 - 765: 4,-1 - 1168: -4,-25 + 684: 3,-1 + 685: 4,-1 + 1060: -4,-25 - node: color: '#334E6DFF' id: BrickTileWhiteLineS decals: - 141: 2,50 - 142: 3,50 - 1226: 42,33 - 1227: 43,33 + 137: 2,50 + 138: 3,50 + 1118: 42,33 + 1119: 43,33 - node: color: '#52B4E9FF' id: BrickTileWhiteLineS decals: - 138: -1,50 - 139: 0,50 - 140: 1,50 - 1262: -4,-34 + 134: -1,50 + 135: 0,50 + 136: 1,50 + 1154: -4,-34 - node: color: '#7C5C98FF' id: BrickTileWhiteLineS decals: - 1318: 14,1 - 1319: 15,1 + 1210: 14,1 + 1211: 15,1 - node: color: '#96DAFFFF' id: BrickTileWhiteLineS decals: - 1417: -21,5 - 1418: -20,5 - 1419: -19,5 - 1420: -18,5 - 1421: -17,5 - 1422: -16,5 - 1423: -15,5 - 1424: -14,5 - 1425: -13,5 - 1458: -26,9 - 1459: -25,9 - 1460: -24,9 - 1461: -23,9 - 1475: -22,9 - 1476: -21,9 - 1477: -20,9 - 1478: -19,9 - 1479: -18,9 - 1480: -17,9 - 1481: -16,9 - 1482: -15,9 - 1483: -14,9 - 1484: -13,9 + 1298: -21,5 + 1299: -20,5 + 1300: -19,5 + 1301: -18,5 + 1302: -17,5 + 1303: -16,5 + 1304: -15,5 + 1305: -14,5 + 1306: -13,5 + 1339: -26,9 + 1340: -25,9 + 1341: -24,9 + 1342: -23,9 + 1356: -22,9 + 1357: -21,9 + 1358: -20,9 + 1359: -19,9 + 1360: -18,9 + 1361: -17,9 + 1362: -16,9 + 1363: -15,9 + 1364: -14,9 + 1365: -13,9 - node: color: '#9D9D97FF' id: BrickTileWhiteLineS decals: - 1244: 45,25 - 1245: 44,25 - 1246: 43,25 - 1247: 42,25 - 1248: 41,25 - 1249: 40,25 + 1136: 45,25 + 1137: 44,25 + 1138: 43,25 + 1139: 42,25 + 1140: 41,25 + 1141: 40,25 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 161: -1,54 - 162: 0,54 + 157: -1,54 + 158: 0,54 - node: color: '#A46106FF' id: BrickTileWhiteLineS decals: - 1092: 8,-24 - 1093: 9,-24 - 1094: 10,-24 - 1263: -3,-34 + 984: 8,-24 + 985: 9,-24 + 986: 10,-24 + 1155: -3,-34 - node: color: '#D381C9FF' id: BrickTileWhiteLineS decals: - 152: -1,52 - 153: 0,52 - 1264: -5,-34 + 148: -1,52 + 149: 0,52 + 1156: -5,-34 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 145: 2,52 - 146: 3,52 - 497: 28,16 + 141: 2,52 + 142: 3,52 + 493: 28,16 - node: color: '#EFB341FF' id: BrickTileWhiteLineS decals: - 167: 2,54 - 168: 3,54 - 1034: 17,-16 - 1035: 18,-16 - 1036: 19,-16 - 1261: -2,-34 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 744: 2,1 - 745: 3,1 + 163: 2,54 + 164: 3,54 + 926: 17,-16 + 927: 18,-16 + 928: 19,-16 + 1153: -2,-34 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 1258: -7,-32 + 1150: -7,-32 - node: color: '#334E6DFF' id: BrickTileWhiteLineW decals: - 1228: 41,34 + 1120: 41,34 - node: color: '#70707093' id: BrickTileWhiteLineW decals: - 1260: -7,-34 + 1152: -7,-34 - node: color: '#96DAFFFF' id: BrickTileWhiteLineW decals: - 1414: -22,7 - 1415: -22,6 - 1441: -17,15 - 1442: -17,14 - 1443: -17,13 - 1444: -17,12 - 1457: -27,10 + 1295: -22,7 + 1296: -22,6 + 1322: -17,15 + 1323: -17,14 + 1324: -17,13 + 1325: -17,12 + 1338: -27,10 - node: color: '#9D9D97FF' id: BrickTileWhiteLineW decals: - 1250: 39,26 - 1251: 39,27 + 1142: 39,26 + 1143: 39,27 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 163: 1,53 + 159: 1,53 - node: color: '#A46106FF' id: BrickTileWhiteLineW decals: - 179: 1,55 + 175: 1,55 - node: color: '#C78B1993' id: BrickTileWhiteLineW decals: - 1259: -7,-33 + 1151: -7,-33 - node: color: '#D381C9FF' id: BrickTileWhiteLineW decals: - 150: 1,51 + 146: 1,51 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 500: 27,17 + 496: 27,17 - node: color: '#EFB341FF' id: BrickTileWhiteLineW decals: - 1038: 16,-15 + 930: 16,-15 - node: color: '#FFFFFFFF' id: Busha1 decals: - 1283: 28.377537,33.036083 + 1175: 28.377537,33.036083 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 1278: 22.922419,33.036083 - 1279: 19.880083,33.942333 + 1170: 22.922419,33.036083 + 1171: 19.880083,33.942333 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 1280: 18.98016,34.92671 - 1281: 19.38641,32.098583 - 1282: 24.355186,34.536083 + 1172: 18.98016,34.92671 + 1173: 19.38641,32.098583 + 1174: 24.355186,34.536083 - node: color: '#FFFFFFFF' id: Bushc2 decals: - 1304: 34.975742,34.972504 + 1196: 34.975742,34.972504 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 1302: 28.499575,31.984146 - 1303: 36.95945,33.952896 + 1194: 28.499575,31.984146 + 1195: 36.95945,33.952896 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 1301: 27.04645,31.937271 + 1193: 27.04645,31.937271 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 1284: 31.565037,34.80171 - 1285: 32.45566,32.92671 - 1286: 29.877537,34.89546 + 1176: 31.565037,34.80171 + 1177: 32.45566,32.92671 + 1178: 29.877537,34.89546 - node: color: '#FFFFFFFF' id: Caution decals: - 913: -27,-6 - 1066: 11,-28 - 1067: 13,-28 - 1167: -41,16 + 817: -27,-6 + 958: 11,-28 + 959: 13,-28 + 1059: -41,16 - node: color: '#000000FF' id: CheckerNESW decals: - 711: 0,3 - 712: 1,3 - 713: 2,3 - 714: 3,3 - 715: 4,3 - 716: 5,3 - 717: 5,2 - 718: 0,2 - 719: 0,1 - 720: 5,1 - 721: 5,0 - 722: 4,0 - 723: 3,0 - 724: 2,0 - 725: 1,0 - 726: 0,0 - 727: 4,4 - 728: 3,4 - 729: 6,2 + 663: 4,4 + 664: 3,4 + 665: 6,2 - node: color: '#A4610696' id: CheckerNESW decals: - 1150: 6,-28 - 1151: 6,-27 - 1152: 6,-26 - 1153: 5,-26 - 1154: 5,-27 - 1155: 5,-28 - 1156: 4,-28 - 1157: 4,-27 - 1158: 4,-26 + 1042: 6,-28 + 1043: 6,-27 + 1044: 6,-26 + 1045: 5,-26 + 1046: 5,-27 + 1047: 5,-28 + 1048: 4,-28 + 1049: 4,-27 + 1050: 4,-26 - node: color: '#D381C996' id: CheckerNESW decals: - 872: -13,-7 - 873: -13,-6 - 874: -12,-6 - 875: -12,-7 + 792: -13,-7 + 793: -13,-6 + 794: -12,-6 + 795: -12,-7 - node: color: '#DE3A3A96' id: CheckerNESW decals: - 379: 18,12 - 380: 18,13 - 381: 18,14 - 382: 18,15 - 383: 19,15 - 384: 19,14 - 385: 19,13 - 386: 19,12 - 387: 20,12 - 388: 20,13 - 389: 20,14 - 390: 20,15 - 391: 21,15 - 392: 21,14 - 393: 21,13 - 394: 21,12 - 395: 22,12 - 396: 22,13 - 397: 22,15 - 398: 22,14 - 399: 23,15 - 400: 23,14 - 401: 23,13 - 402: 23,12 - 403: 20,11 - 404: 21,11 - 561: 15,11 - 562: 14,12 - 563: 15,12 - 564: 16,12 - 565: 16,13 - 566: 15,13 - 567: 14,13 - 568: 14,14 - 569: 15,14 - 570: 16,14 - 571: 16,15 - 572: 15,15 - 573: 14,15 - 574: 13,14 - 575: 13,13 - 580: 10,13 - 581: 10,14 + 375: 18,12 + 376: 18,13 + 377: 18,14 + 378: 18,15 + 379: 19,15 + 380: 19,14 + 381: 19,13 + 382: 19,12 + 383: 20,12 + 384: 20,13 + 385: 20,14 + 386: 20,15 + 387: 21,15 + 388: 21,14 + 389: 21,13 + 390: 21,12 + 391: 22,12 + 392: 22,13 + 393: 22,15 + 394: 22,14 + 395: 23,15 + 396: 23,14 + 397: 23,13 + 398: 23,12 + 399: 20,11 + 400: 21,11 + 527: 15,11 + 528: 14,12 + 529: 15,12 + 530: 16,12 + 531: 16,13 + 532: 15,13 + 533: 14,13 + 534: 14,14 + 535: 15,14 + 536: 16,14 + 537: 16,15 + 538: 15,15 + 539: 14,15 + 540: 13,14 + 541: 13,13 + 546: 10,13 + 547: 10,14 - node: color: '#52B4E996' id: CheckerNWSE decals: - 625: -8,8 - 626: -9,8 - 627: -10,8 - 628: -10,9 - 629: -9,9 - 630: -8,9 - 631: -8,10 - 632: -9,10 - 633: -10,10 - 634: -10,11 - 635: -9,11 - 636: -8,11 + 577: -8,8 + 578: -9,8 + 579: -10,8 + 580: -10,9 + 581: -9,9 + 582: -8,9 + 583: -8,10 + 584: -9,10 + 585: -10,10 + 586: -10,11 + 587: -9,11 + 588: -8,11 - node: color: '#DE3A3A96' id: CheckerNWSE decals: - 559: 34,11 - 560: 35,11 - 598: 15,7 - 599: 18,7 - 600: 12,7 + 525: 34,11 + 526: 35,11 + 552: 15,7 + 553: 18,7 + 554: 12,7 - node: color: '#EF5C1F93' id: CheckerNWSE decals: - 517: 32,23 - 518: 33,23 + 513: 32,23 + 514: 33,23 - node: color: '#EFB34196' id: CheckerNWSE decals: - 940: 17,-5 - 941: 16,-5 - 942: 15,-5 + 844: 17,-5 + 845: 16,-5 + 846: 15,-5 - node: color: '#FFFFFFFF' id: Delivery decals: - 911: -21,-14 - 912: -21,-10 - 1191: -6,52 - 1192: -7,53 - 1193: -8,52 - 1194: -7,51 - 1309: 11,27 - 1310: 12,27 - 1311: 13,27 + 815: -21,-14 + 816: -21,-10 + 1083: -6,52 + 1084: -7,53 + 1085: -8,52 + 1086: -7,51 + 1201: 11,27 + 1202: 12,27 + 1203: 13,27 + 1405: 0,3 - node: - color: '#000000FF' - id: DiagonalCheckerAOverlay + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 1535: -6,15 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1407: -42,15 + 1408: -40,9 + 1409: -42,4 + 1410: -37,1 + 1430: -7,14 + 1431: -1,14 + 1432: 4,14 + 1433: 7,17 + 1439: -16,-6 + 1440: -18,-6 + 1441: -19,-2 + 1442: -16,-2 + 1461: 0,-15 + 1462: 4,-22 + 1478: 0,-34 + 1479: 2,-30 + 1483: 11,-28 + 1536: -27,10 + 1539: 18,8 + 1540: 11,5 + 1541: 11,6 + 1542: 12,6 + 1543: 12,5 + 1544: 14,6 + 1545: 15,6 + 1546: 15,5 + 1547: 17,6 + 1548: 17,5 + 1549: 18,6 + 1550: 18,5 + 1551: 21,7 + 1552: 20,14 + 1625: 39,28 + 1626: 39,26 + 1627: 44,27 + 1628: 45,25 + 1643: 0,24 + 1644: 4,24 + 1645: 3,21 + 1646: -1,30 + 1647: -6,28 + 1648: 0,28 + 1649: -5,30 + 1655: 1,1 + 1656: 4,3 + 1657: 4,0 + 1658: -3,2 + 1662: -24,24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1411: -42,6 + 1412: -42,9 + 1413: -33,0 + 1416: -32,3 + 1417: -18,1 + 1418: -10,3 + 1419: -7,1 + 1427: -10,11 + 1428: -10,8 + 1429: -7,6 + 1434: -19,2 + 1435: -19,1 + 1436: -11,1 + 1437: -14,3 + 1438: -13,-4 + 1480: 19,-23 + 1481: 22,-26 + 1482: 18,-28 + 1484: 9,-27 + 1485: 13,-22 + 1486: 13,-23 + 1502: 8,5 + 1503: 9,10 + 1504: 9,7 + 1505: 9,3 + 1506: 8,10 + 1525: -5,10 + 1526: -8,13 + 1527: -7,13 + 1528: 2,15 + 1529: 7,16 + 1530: 8,14 + 1531: 4,8 + 1532: -1,9 + 1533: -2,9 + 1534: -2,8 + 1596: 22,-7 + 1597: 26,-9 + 1598: 18,-11 + 1599: 24,-12 + 1600: 28,-12 + 1601: 32,-18 + 1602: 31,-17 + 1603: 31,-18 + 1604: 32,-11 + 1605: 18,-15 + 1606: 12,-12 + 1607: 14,-11 + 1608: -5,-22 + 1609: -5,-23 + 1659: -27,23 + 1660: -24,21 + 1661: -23,20 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight decals: - 730: 2,2 - 731: 3,1 - 732: 1,1 - 733: 4,2 - 734: 2,1 - 735: 1,2 - 736: 3,2 - 737: 4,1 + 1414: -30,3 + 1415: -24,1 + 1420: -17,9 + 1421: -12,6 + 1423: -21,10 + 1443: -27,-6 + 1444: -28,-7 + 1445: -26,-7 + 1446: -22,-7 + 1447: -16,-10 + 1451: -13,-14 + 1452: -12,-16 + 1453: -6,-15 + 1454: -13,-10 + 1455: -12,-11 + 1456: -9,-8 + 1457: -6,-9 + 1463: 0,-17 + 1464: 2,-23 + 1465: -6,-25 + 1466: -13,-26 + 1474: -3,-29 + 1475: -4,-34 + 1476: 2,-34 + 1477: 0,-30 + 1487: 8,-19 + 1488: 10,-22 + 1489: 9,-24 + 1490: 4,-21 + 1491: 2,-14 + 1492: 8,-10 + 1493: 7,-4 + 1494: 9,-6 + 1495: 8,-8 + 1496: 12,-6 + 1497: 8,-2 + 1507: 8,8 + 1508: 6,3 + 1509: 9,6 + 1510: 8,3 + 1511: 7,5 + 1512: 8,13 + 1513: 3,16 + 1514: 2,15 + 1515: -3,15 + 1516: -5,13 + 1517: -5,16 + 1518: -6,10 + 1519: -5,7 + 1520: -7,6 + 1521: -6,9 + 1522: -5,3 + 1523: -6,2 + 1524: -7,2 + 1553: 19,13 + 1554: 19,14 + 1555: 23,9 + 1556: 14,10 + 1557: 12,14 + 1558: 25,8 + 1559: 29,10 + 1560: 32,11 + 1561: 32,18 + 1562: 32,21 + 1563: 28,26 + 1610: 3,-5 + 1611: -2,-4 + 1612: 3,-2 + 1613: 5,-4 + 1614: 13,-2 + 1615: 13,3 + 1616: 22,2 + 1617: 27,2 + 1618: 31,3 + 1619: 34,1 + 1620: 37,2 + 1621: 46,4 + 1622: 46,8 + 1623: 45,21 + 1624: 44,22 + 1650: -3,28 + 1651: -17,20 + 1652: -14,18 + 1653: -17,14 + 1654: -20,6 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1406: -26,6 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1422: -27,9 + 1424: -22,5 + 1425: -17,16 + 1426: -12,11 + 1448: -15,-14 + 1449: -17,-19 + 1450: -21,-18 + 1458: 0,-9 + 1459: -2,-10 + 1460: -7,-8 + 1467: -14,-25 + 1468: -6,-27 + 1469: -18,-28 + 1470: -16,-28 + 1471: -18,-28 + 1472: -18,-28 + 1473: -20,-25 + 1498: 8,1 + 1499: 8,-3 + 1500: 6,-5 + 1501: 12,-7 + 1629: 42,30 + 1630: 44,28 + 1631: 40,26 + 1632: 46,14 + 1633: 46,10 + 1634: 44,7 + 1635: 45,2 + 1636: 39,3 + 1637: 36,1 + 1638: 33,3 + 1639: 29,1 + 1640: 25,2 + 1641: 15,1 + 1642: 10,1 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 306: -7,29 - 307: -13,30 - 308: -16,30 - 319: 4,20 - 320: 4,17 + 302: -7,29 + 303: -13,30 + 304: -16,30 + 315: 4,20 + 316: 4,17 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 480: 22,4 + 476: 22,4 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 501: 30,13 - 502: 30,17 - 507: 32,19 - 508: 33,19 + 497: 30,13 + 498: 30,17 + 503: 32,19 + 504: 33,19 - node: color: '#EF5C1F93' id: FullTileOverlayGreyscale decals: - 511: 32,22 - 512: 33,22 - 513: 32,24 - 514: 33,24 - 533: 26,25 - 534: 26,27 + 507: 32,22 + 508: 33,22 + 509: 32,24 + 510: 33,24 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 1273: 25.518755,33.161083 - 1274: 28.102278,34.536083 - 1275: 30.90701,33.067333 + 1165: 25.518755,33.161083 + 1166: 28.102278,34.536083 + 1167: 30.90701,33.067333 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 1276: 33.051407,34.442333 - 1277: 35.00453,33.848583 + 1168: 33.051407,34.442333 + 1169: 35.00453,33.848583 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1272: 22.28438,34.23921 + 1164: 22.28438,34.23921 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 1298: 28.9527,33.984146 - 1299: 26.85895,32.952896 + 1190: 28.9527,33.984146 + 1191: 26.85895,32.952896 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 1297: 21.980526,32.077896 + 1189: 21.980526,32.077896 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 1294: 23.027401,35.28102 - 1295: 24.996151,35.327896 - 1296: 23.902401,32.12477 + 1186: 23.027401,35.28102 + 1187: 24.996151,35.327896 + 1188: 23.902401,32.12477 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 1291: 20.983843,34.62477 - 1292: 19.968218,33.077896 - 1293: 23.34307,34.234146 + 1183: 20.983843,34.62477 + 1184: 19.968218,33.077896 + 1185: 23.34307,34.234146 - node: color: '#2BAF9D93' id: HalfTileOverlayGreyscale decals: - 1347: 32,-17 + 1228: 32,-17 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 303: -11,31 - 304: -10,31 - 305: -9,31 - 317: 4,19 - 321: 4,16 - 322: 3,16 - 323: 5,16 - 340: 2,25 - 341: 3,25 - 342: 4,25 - 343: -2,32 - 344: -3,32 - 345: 0,31 - 346: -5,31 - 370: -3,17 - 371: -2,17 - 372: -1,17 - 373: 0,17 - 374: 1,17 + 299: -11,31 + 300: -10,31 + 301: -9,31 + 313: 4,19 + 317: 4,16 + 318: 3,16 + 319: 5,16 + 336: 2,25 + 337: 3,25 + 338: 4,25 + 339: -2,32 + 340: -3,32 + 341: 0,31 + 342: -5,31 + 366: -3,17 + 367: -2,17 + 368: -1,17 + 369: 0,17 + 370: 1,17 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 467: 21,7 - 468: 22,7 - 471: 22,3 - 649: -17,21 - 650: -16,21 - 651: -15,21 - 652: -14,21 + 463: 21,7 + 464: 22,7 + 467: 22,3 + 601: -17,21 + 602: -16,21 + 603: -15,21 + 604: -14,21 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 37: 3,-8 + 33: 3,-8 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 778: -11,-2 - 779: -10,-2 - 833: -18,-1 - 834: -17,-1 - 835: -16,-1 + 698: -11,-2 + 699: -10,-2 + 753: -18,-1 + 754: -17,-1 + 755: -16,-1 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 466: 32,18 - 554: 37,13 + 462: 32,18 + 520: 37,13 - node: color: '#EF5C1F93' id: HalfTileOverlayGreyscale decals: - 509: 32,21 - 510: 33,21 - 523: 28,28 - 524: 29,28 - 525: 30,28 - 526: 31,28 - 527: 32,28 + 505: 32,21 + 506: 33,21 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 1012: 12,-11 - 1013: 13,-11 - 1014: 14,-11 - 1015: 15,-11 + 904: 12,-11 + 905: 13,-11 + 906: 14,-11 + 907: 15,-11 - node: color: '#2BAF9D93' id: HalfTileOverlayGreyscale180 decals: - 1348: 32,-19 + 1229: 32,-19 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 292: -11,26 - 293: -9,26 - 294: -10,26 - 318: 4,18 - 347: 4,21 - 348: 2,23 - 349: 1,23 - 350: -1,27 - 351: -2,27 - 352: -5,27 - 353: -4,27 - 354: -3,27 + 288: -11,26 + 289: -9,26 + 290: -10,26 + 314: 4,18 + 343: 4,21 + 344: 2,23 + 345: 1,23 + 346: -1,27 + 347: -2,27 + 348: -5,27 + 349: -4,27 + 350: -3,27 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 469: 21,5 - 470: 22,5 - 645: -17,18 - 646: -16,18 - 647: -15,18 - 648: -14,18 + 465: 21,5 + 466: 22,5 + 597: -17,18 + 598: -16,18 + 599: -15,18 + 600: -14,18 - node: color: '#707070FF' id: HalfTileOverlayGreyscale180 decals: - 57: -9,-10 - 58: -8,-10 - 59: -8,-10 - 60: -7,-10 + 53: -9,-10 + 54: -8,-10 + 55: -8,-10 + 56: -7,-10 - node: color: '#79150096' id: HalfTileOverlayGreyscale180 decals: - 284: 1,14 + 280: 1,14 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 780: -12,-4 - 781: -11,-4 - 782: -10,-4 - 840: -16,-7 - 841: -17,-7 - 842: -18,-7 + 700: -12,-4 + 701: -11,-4 + 702: -10,-4 + 760: -16,-7 + 761: -17,-7 + 762: -18,-7 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 505: 32,20 - 506: 33,20 - 553: 37,10 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale180 - decals: - 519: 32,25 - 520: 31,25 - 521: 29,24 - 522: 28,24 + 501: 32,20 + 502: 33,20 + 519: 37,10 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: - 1009: 15,-12 - 1010: 12,-13 - 1011: 13,-13 + 901: 15,-12 + 902: 12,-13 + 903: 13,-13 - node: color: '#2BAF9D93' id: HalfTileOverlayGreyscale270 decals: - 1350: 31,-18 + 1231: 31,-18 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 299: -12,27 - 300: -12,28 - 301: -12,29 - 302: -12,30 - 363: -6,28 - 364: -6,29 - 365: -6,30 - 366: 0,26 - 367: 0,25 - 368: 0,24 - 369: 3,22 + 295: -12,27 + 296: -12,28 + 297: -12,29 + 298: -12,30 + 359: -6,28 + 360: -6,29 + 361: -6,30 + 362: 0,26 + 363: 0,25 + 364: 0,24 + 365: 3,22 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 473: 20,6 - 655: -18,20 - 660: -18,19 + 469: 20,6 + 607: -18,20 + 612: -18,19 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 18: 7,2 + 14: 7,2 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 1135: 8,-27 + 1027: 8,-27 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 784: -13,-3 - 785: -13,-2 - 843: -19,-6 - 844: -19,-5 - 845: -19,-4 - 846: -19,-2 + 704: -13,-3 + 705: -13,-2 + 763: -19,-6 + 764: -19,-5 + 765: -19,-4 + 766: -19,-2 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 557: 36,11 - 558: 36,12 - 584: 11,13 - 585: 11,14 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale270 - decals: - 530: 27,25 - 531: 27,26 - 532: 27,27 + 523: 36,11 + 524: 36,12 + 550: 11,13 + 551: 11,14 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 953: 15,-8 - 1016: 11,-12 + 857: 15,-8 + 908: 11,-12 - node: color: '#2BAF9D93' id: HalfTileOverlayGreyscale90 decals: - 1349: 33,-18 + 1230: 33,-18 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 295: -8,27 - 296: -8,28 - 297: -8,29 - 298: -8,30 - 355: 5,22 - 356: 5,23 - 357: 5,24 - 358: 1,26 - 359: 1,27 - 360: 1,28 - 361: 1,29 - 362: 1,30 + 291: -8,27 + 292: -8,28 + 293: -8,29 + 294: -8,30 + 351: 5,22 + 352: 5,23 + 353: 5,24 + 354: 1,26 + 355: 1,27 + 356: 1,28 + 357: 1,29 + 358: 1,30 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 472: 23,6 - 653: -13,20 - 654: -13,19 + 468: 23,6 + 605: -13,20 + 606: -13,19 - node: color: '#707070FF' id: HalfTileOverlayGreyscale90 decals: - 62: -12,-12 - 63: -12,-13 - 64: -12,-14 - 65: -12,-16 - 66: -12,-15 + 58: -12,-12 + 59: -12,-13 + 60: -12,-14 + 61: -12,-16 + 62: -12,-15 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 285: -5,2 + 281: -5,2 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 1076: 6,-23 - 1077: 6,-22 - 1078: 6,-21 + 968: 6,-23 + 969: 6,-22 + 970: 6,-21 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 783: -9,-3 - 836: -15,-2 - 837: -15,-4 - 838: -15,-5 - 839: -15,-6 + 703: -9,-3 + 756: -15,-2 + 757: -15,-4 + 758: -15,-5 + 759: -15,-6 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 555: 38,11 - 556: 38,12 - 582: 12,13 - 583: 12,14 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale90 - decals: - 528: 33,26 - 529: 33,27 + 521: 38,11 + 522: 38,12 + 548: 12,13 + 549: 12,14 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 917: 13,-8 - 918: 13,-7 - 919: 13,-6 - 952: 16,-8 + 821: 13,-8 + 822: 13,-7 + 823: 13,-6 + 856: 16,-8 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 1372: 1,17 + 1253: 1,17 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1373: 6,-23 + 1254: 6,-23 - node: color: '#D381C9FF' id: MiniTileSteelCornerNe decals: - 818: -32,-7 + 738: -32,-7 - node: color: '#D381C9FF' id: MiniTileSteelCornerNw decals: - 820: -31,-7 + 740: -31,-7 - node: color: '#D381C9FF' id: MiniTileSteelCornerSe decals: - 813: -25,-4 + 733: -25,-4 - node: color: '#D381C9FF' id: MiniTileSteelCornerSw decals: - 814: -29,-4 + 734: -29,-4 - node: color: '#D381C9FF' id: MiniTileSteelInnerNw decals: - 819: -30,-7 + 739: -30,-7 - node: color: '#D381C9FF' id: MiniTileSteelLineE decals: - 810: -25,-3 - 811: -25,-2 - 812: -25,-1 - 822: -32,-8 + 730: -25,-3 + 731: -25,-2 + 732: -25,-1 + 742: -32,-8 - node: color: '#D381C9FF' id: MiniTileSteelLineS decals: - 807: -28,-4 - 808: -27,-4 - 809: -26,-4 - 816: -32,-6 - 817: -31,-6 + 727: -28,-4 + 728: -27,-4 + 729: -26,-4 + 736: -32,-6 + 737: -31,-6 - node: color: '#D381C9FF' id: MiniTileSteelLineW decals: - 804: -29,-1 - 805: -29,-2 - 806: -29,-3 - 821: -31,-8 + 724: -29,-1 + 725: -29,-2 + 726: -29,-3 + 741: -31,-8 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerNe decals: - 611: -24,7 + 563: -24,7 - node: color: '#EF7241FF' id: MiniTileWhiteCornerNe decals: - 685: -11,16 - 686: -9,14 + 637: -11,16 + 638: -9,14 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerNw decals: - 610: -27,7 + 562: -27,7 - node: color: '#EF7241FF' id: MiniTileWhiteCornerNw decals: - 689: -14,16 + 641: -14,16 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerSe decals: - 612: -24,5 + 564: -24,5 - node: color: '#D381C9FF' id: MiniTileWhiteCornerSe decals: - 858: -25,-8 + 778: -25,-8 - node: color: '#EF7241FF' id: MiniTileWhiteCornerSe decals: - 687: -9,13 + 639: -9,13 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerSw decals: - 613: -27,5 + 565: -27,5 - node: color: '#D381C9FF' id: MiniTileWhiteCornerSw decals: - 859: -29,-8 + 779: -29,-8 - node: color: '#EF7241FF' id: MiniTileWhiteCornerSw decals: - 688: -14,13 + 640: -14,13 - node: color: '#7C5C98FF' id: MiniTileWhiteInnerNe decals: - 1316: 9,-3 + 1208: 9,-3 - node: color: '#EF7241FF' id: MiniTileWhiteInnerNe decals: - 699: -11,14 + 651: -11,14 - node: color: '#7C5C98FF' id: MiniTileWhiteInnerSe decals: - 1314: 13,1 - 1315: 9,-1 + 1206: 13,1 + 1207: 9,-1 - node: color: '#7C5C98FF' id: MiniTileWhiteInnerSw decals: - 1317: 16,1 + 1209: 16,1 - node: color: '#52B4E9FF' id: MiniTileWhiteLineE decals: - 602: -24,6 + 556: -24,6 - node: color: '#D381C9FF' id: MiniTileWhiteLineE decals: - 851: -25,-6 - 852: -25,-7 + 771: -25,-6 + 772: -25,-7 - node: color: '#EF7241FF' id: MiniTileWhiteLineE decals: - 694: -11,15 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineN - decals: - 607: -26,7 - 608: -25,7 + 646: -11,15 - node: color: '#D381C9FF' id: MiniTileWhiteLineN decals: - 860: -21,-6 - 861: -22,-6 - 862: -23,-6 + 780: -21,-6 + 781: -22,-6 + 782: -23,-6 - node: color: '#EF7241FF' id: MiniTileWhiteLineN decals: - 697: -13,16 - 698: -12,16 - 700: -10,14 + 649: -13,16 + 650: -12,16 + 652: -10,14 - node: color: '#52B4E9FF' id: MiniTileWhiteLineS decals: - 603: -26,5 - 604: -26,5 - 605: -25,5 + 557: -26,5 + 558: -26,5 + 559: -25,5 - node: color: '#D381C9FF' id: MiniTileWhiteLineS decals: - 853: -26,-8 - 854: -27,-8 - 855: -28,-8 - 863: -23,-7 - 864: -22,-7 - 865: -21,-7 + 773: -26,-8 + 774: -27,-8 + 775: -28,-8 + 783: -23,-7 + 784: -22,-7 + 785: -21,-7 - node: color: '#EF7241FF' id: MiniTileWhiteLineS decals: - 690: -13,13 - 691: -12,13 - 692: -11,13 - 693: -10,13 + 642: -13,13 + 643: -12,13 + 644: -11,13 + 645: -10,13 - node: color: '#52B4E9FF' id: MiniTileWhiteLineW decals: - 606: -27,6 + 560: -27,6 - node: color: '#D381C9FF' id: MiniTileWhiteLineW decals: - 856: -29,-7 - 857: -29,-6 + 776: -29,-7 + 777: -29,-6 - node: color: '#EF7241FF' id: MiniTileWhiteLineW decals: - 695: -14,14 - 696: -14,15 + 647: -14,14 + 648: -14,15 - node: color: '#334E6DC8' id: MonoOverlay decals: - 1267: -8,-32 + 1159: -8,-32 - node: color: '#52B4E996' id: MonoOverlay decals: - 622: -11,10 - 623: -11,6 - 624: -11,5 - 701: -10,7 - 702: -9,7 - 703: -13,12 - 704: -10,12 - 705: -9,12 - 706: -15,15 - 1266: -4,-35 + 574: -11,10 + 575: -11,6 + 576: -11,5 + 653: -10,7 + 654: -9,7 + 655: -13,12 + 656: -10,12 + 657: -9,12 + 658: -15,15 + 1158: -4,-35 - node: color: '#52B4E9FF' id: MonoOverlay decals: - 609: -25,8 + 561: -25,8 - node: color: '#70707093' id: MonoOverlay decals: - 1269: -8,-34 + 1161: -8,-34 - node: color: '#A14F9793' id: MonoOverlay decals: - 800: -27,-3 - 801: -28,-2 - 802: -27,-1 - 803: -26,-2 - 815: -27,-5 + 720: -27,-3 + 721: -28,-2 + 722: -27,-1 + 723: -26,-2 + 735: -27,-5 - node: color: '#A4610696' id: MonoOverlay decals: - 1097: 5,-25 - 1098: 7,-27 - 1099: 9,-25 - 1100: 10,-25 - 1101: 12,-23 - 1102: 12,-22 - 1103: 7,-22 - 1104: 7,-21 - 1105: 7,-24 - 1108: 17,-22 - 1109: 17,-23 - 1271: -3,-35 + 989: 5,-25 + 990: 7,-27 + 991: 9,-25 + 992: 10,-25 + 993: 12,-23 + 994: 12,-22 + 995: 7,-22 + 996: 7,-21 + 997: 7,-24 + 1000: 17,-22 + 1001: 17,-23 + 1163: -3,-35 - node: color: '#A46106FF' id: MonoOverlay decals: - 1106: 20,-25 - 1107: 21,-25 + 998: 20,-25 + 999: 21,-25 - node: color: '#C78B1993' id: MonoOverlay decals: - 1268: -8,-33 + 1160: -8,-33 - node: color: '#D381C996' id: MonoOverlay decals: - 876: -13,-8 - 877: -12,-8 - 878: -11,-7 - 879: -11,-6 - 880: -12,-5 - 881: -13,-5 - 882: -17,-8 - 1265: -5,-35 + 796: -13,-8 + 797: -12,-8 + 798: -11,-7 + 799: -11,-6 + 800: -12,-5 + 801: -13,-5 + 802: -17,-8 + 1157: -5,-35 - node: color: '#D381C9FF' id: MonoOverlay decals: - 866: -24,-6 - 867: -24,-7 - 868: -20,-6 - 869: -20,-7 - 870: -14,-7 - 871: -14,-6 + 786: -24,-6 + 787: -24,-7 + 788: -20,-6 + 789: -20,-7 + 790: -14,-7 + 791: -14,-6 - node: color: '#EF663193' id: MonoOverlay decals: - 1307: 34,23 + 1199: 34,23 - node: color: '#EFB34196' id: MonoOverlay decals: - 954: 14,-8 - 955: 14,-7 - 956: 15,-6 - 957: 16,-6 - 958: 22,-10 - 959: 23,-10 - 960: 24,-8 - 961: 27,-10 - 962: 17,-11 - 963: 17,-12 - 964: 25,-13 - 965: 30,-12 - 966: 30,-11 - 1270: -2,-35 + 858: 14,-8 + 859: 14,-7 + 860: 15,-6 + 861: 16,-6 + 862: 22,-10 + 863: 23,-10 + 864: 24,-8 + 865: 27,-10 + 866: 17,-11 + 867: 17,-12 + 868: 25,-13 + 869: 30,-12 + 870: 30,-11 + 1162: -2,-35 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 325: 6,16 - 326: -4,31 + 321: 6,16 + 322: -4,31 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 475: 23,3 - 614: -7,7 - 615: -7,8 - 616: -7,9 - 617: -7,10 - 618: -7,11 - 619: -7,12 - 620: -7,13 - 621: -7,14 + 471: 23,3 + 566: -7,7 + 567: -7,8 + 568: -7,9 + 569: -7,10 + 570: -7,11 + 571: -7,12 + 572: -7,13 + 573: -7,14 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 260: 7,4 - 261: 7,5 - 262: 7,6 - 263: 7,7 - 264: 7,8 - 265: 7,9 - 266: 7,10 - 275: 7,11 + 256: 7,4 + 257: 7,5 + 258: 7,6 + 259: 7,7 + 260: 7,8 + 261: 7,9 + 262: 7,10 + 271: 7,11 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 20: 7,1 - 28: 7,-8 - 29: -4,-8 - 30: -3,-8 - 31: -2,-8 - 32: -1,-8 - 33: 0,-8 - 34: 1,-8 - 39: 2,-8 + 16: 7,1 + 24: 7,-8 + 25: -4,-8 + 26: -3,-8 + 27: -2,-8 + 28: -1,-8 + 29: 0,-8 + 30: 1,-8 + 35: 2,-8 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 1082: 5,-20 - 1083: 4,-20 - 1084: 3,-20 - 1124: 13,-21 - 1125: 13,-22 - 1126: 13,-24 - 1127: 13,-23 - 1128: 13,-25 - 1129: 13,-26 - 1130: 12,-26 - 1131: 11,-26 - 1132: 10,-26 - 1133: 9,-26 - 1134: 8,-26 + 974: 5,-20 + 975: 4,-20 + 976: 3,-20 + 1016: 13,-21 + 1017: 13,-22 + 1018: 13,-24 + 1019: 13,-23 + 1020: 13,-25 + 1021: 13,-26 + 1022: 12,-26 + 1023: 11,-26 + 1024: 10,-26 + 1025: 9,-26 + 1026: 8,-26 - node: color: '#B02E26FF' id: QuarterTileOverlayGreyscale decals: - 1232: 42,29 + 1124: 42,29 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 48: -10,-10 - 49: -10,-9 - 50: -10,-8 - 51: -10,-7 - 52: -10,-6 - 53: -9,-6 - 54: -8,-6 + 44: -10,-10 + 45: -10,-9 + 46: -10,-8 + 47: -10,-7 + 48: -10,-6 + 49: -9,-6 + 50: -8,-6 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 461: 31,10 - 1379: 10,-5 - 1380: 11,-5 + 457: 31,10 + 1260: 10,-5 + 1261: 11,-5 - node: color: '#EF5C1F93' id: QuarterTileOverlayGreyscale decals: - 516: 34,21 + 512: 34,21 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 920: 12,-5 - 922: 18,-5 - 923: 18,-4 - 924: 19,-4 - 925: 20,-4 - 926: 21,-4 - 927: 22,-4 - 937: 18,-8 - 938: 18,-7 - 939: 18,-6 - 989: 28,-11 - 990: 27,-11 - 991: 26,-11 - 992: 25,-11 - 993: 24,-11 - 1018: 25,-8 - 1019: 25,-7 - 1020: 25,-6 - 1021: 25,-5 - 1022: 25,-4 + 824: 12,-5 + 826: 18,-5 + 827: 18,-4 + 828: 19,-4 + 829: 20,-4 + 830: 21,-4 + 831: 22,-4 + 841: 18,-8 + 842: 18,-7 + 843: 18,-6 + 881: 28,-11 + 882: 27,-11 + 883: 26,-11 + 884: 25,-11 + 885: 24,-11 + 910: 25,-8 + 911: 25,-7 + 912: 25,-6 + 913: 25,-5 + 914: 25,-4 - node: color: '#F9801DFF' id: QuarterTileOverlayGreyscale decals: - 1221: 45,34 + 1113: 45,34 - node: color: '#3C44AAFF' id: QuarterTileOverlayGreyscale180 decals: - 1214: 43,30 - 1215: 43,31 - 1216: 43,32 - 1217: 44,32 - 1218: 45,32 - 1219: 46,32 + 1106: 43,30 + 1107: 43,31 + 1108: 43,32 + 1109: 44,32 + 1110: 45,32 + 1111: 46,32 - node: color: '#707070FF' id: QuarterTileOverlayGreyscale180 decals: - 55: -10,-10 - 61: -12,-11 + 51: -10,-10 + 57: -12,-11 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 decals: - 276: -4,12 - 277: -3,13 - 282: -2,14 - 283: -1,14 + 272: -4,12 + 273: -3,13 + 278: -2,14 + 279: -1,14 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 41: -5,-7 - 42: -5,-6 - 43: -5,-5 - 44: -5,-4 - 45: -5,-3 - 46: -5,-2 - 47: -5,-1 - 287: -5,3 + 37: -5,-7 + 38: -5,-6 + 39: -5,-5 + 40: -5,-4 + 41: -5,-3 + 42: -5,-2 + 43: -5,-1 + 283: -5,3 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 424: 13,8 - 425: 14,8 - 426: 15,8 - 427: 16,8 - 428: 17,8 - 429: 18,8 - 430: 20,8 - 431: 19,8 - 432: 21,8 - 433: 22,8 - 434: 23,8 - 435: 24,8 - 436: 25,8 - 437: 26,8 - 438: 27,8 - 439: 28,8 - 440: 29,8 - 441: 30,8 - 442: 31,8 - 443: 32,8 - 444: 33,8 - 445: 33,9 - 446: 33,10 - 447: 33,11 - 448: 33,12 - 449: 33,13 - 450: 33,14 - 451: 33,15 - 452: 33,17 - 453: 33,16 - 503: 31,20 - 601: 12,8 - - node: - color: '#EF5C1F93' - id: QuarterTileOverlayGreyscale180 - decals: - 548: 30,25 + 420: 13,8 + 421: 14,8 + 422: 15,8 + 423: 16,8 + 424: 17,8 + 425: 18,8 + 426: 20,8 + 427: 19,8 + 428: 21,8 + 429: 22,8 + 430: 23,8 + 431: 24,8 + 432: 25,8 + 433: 26,8 + 434: 27,8 + 435: 28,8 + 436: 29,8 + 437: 30,8 + 438: 31,8 + 439: 32,8 + 440: 33,8 + 441: 33,9 + 442: 33,10 + 443: 33,11 + 444: 33,12 + 445: 33,13 + 446: 33,14 + 447: 33,15 + 448: 33,17 + 449: 33,16 + 499: 31,20 + 555: 12,8 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 928: 23,-5 - 929: 23,-6 - 930: 23,-7 - 931: 23,-8 - 932: 23,-9 - 933: 22,-9 - 934: 21,-9 - 935: 20,-9 - 936: 19,-9 - 983: 23,-12 - 984: 22,-12 - 985: 21,-12 - 986: 20,-12 - 987: 19,-12 - 1007: 14,-12 - 1023: 26,-9 - 1024: 27,-9 - 1025: 28,-9 - 1026: 29,-9 + 832: 23,-5 + 833: 23,-6 + 834: 23,-7 + 835: 23,-8 + 836: 23,-9 + 837: 22,-9 + 838: 21,-9 + 839: 20,-9 + 840: 19,-9 + 875: 23,-12 + 876: 22,-12 + 877: 21,-12 + 878: 20,-12 + 879: 19,-12 + 899: 14,-12 + 915: 26,-9 + 916: 27,-9 + 917: 28,-9 + 918: 29,-9 - node: color: '#F9801DFF' id: QuarterTileOverlayGreyscale180 decals: - 1220: 46,33 + 1112: 46,33 - node: color: '#2BAF9D93' id: QuarterTileOverlayGreyscale270 decals: - 1361: 32,-12 - 1362: 31,-12 + 1242: 32,-12 + 1243: 31,-12 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 328: 0,27 - 329: 3,23 + 324: 0,27 + 325: 3,23 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 1377: 10,-9 - 1378: 11,-9 + 1258: 10,-9 + 1259: 11,-9 - node: color: '#707070FF' id: QuarterTileOverlayGreyscale270 decals: - 56: -6,-10 + 52: -6,-10 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 278: 6,12 - 279: 5,13 - 280: 4,14 - 281: 3,14 + 274: 6,12 + 275: 5,13 + 276: 4,14 + 277: 3,14 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale270 decals: - 1224: 39,33 + 1116: 39,33 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 19: 7,3 - 21: 7,-1 - 22: 7,-2 - 23: 7,-3 - 24: 7,-4 - 25: 7,-5 - 26: 7,-6 - 27: 7,-7 + 15: 7,3 + 17: 7,-1 + 18: 7,-2 + 19: 7,-3 + 20: 7,-4 + 21: 7,-5 + 22: 7,-6 + 23: 7,-7 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 1079: 5,-24 - 1080: 4,-24 - 1081: 3,-24 - 1110: 8,-28 - 1111: 9,-28 - 1142: 18,-22 - 1143: 18,-23 - 1144: 18,-24 - 1145: 19,-24 - 1146: 20,-24 - 1147: 21,-24 + 971: 5,-24 + 972: 4,-24 + 973: 3,-24 + 1002: 8,-28 + 1003: 9,-28 + 1034: 18,-22 + 1035: 18,-23 + 1036: 18,-24 + 1037: 19,-24 + 1038: 20,-24 + 1039: 21,-24 - node: color: '#B02E26FF' id: QuarterTileOverlayGreyscale270 decals: - 1208: 39,32 - 1209: 40,32 - 1210: 41,32 - 1211: 42,32 - 1212: 42,31 - 1213: 42,30 + 1100: 39,32 + 1101: 40,32 + 1102: 41,32 + 1103: 42,32 + 1104: 42,31 + 1105: 42,30 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 454: 31,17 - 455: 31,16 - 456: 31,15 - 457: 31,14 - 458: 31,13 - 459: 31,12 - 460: 31,11 - 504: 34,20 + 450: 31,17 + 451: 31,16 + 452: 31,15 + 453: 31,14 + 454: 31,13 + 455: 31,12 + 456: 31,11 + 500: 34,20 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 921: 12,-9 - 979: 28,-12 - 980: 27,-12 - 981: 26,-12 - 982: 25,-12 - 988: 24,-12 - 1356: 31,-11 - 1357: 32,-11 + 825: 12,-9 + 871: 28,-12 + 872: 27,-12 + 873: 26,-12 + 874: 25,-12 + 880: 24,-12 + 1237: 31,-11 + 1238: 32,-11 - node: color: '#2BAF9D93' id: QuarterTileOverlayGreyscale90 decals: - 1355: 31,-11 - 1359: 32,-12 - 1360: 32,-11 + 1236: 31,-11 + 1240: 32,-12 + 1241: 32,-11 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 324: 2,16 - 327: -1,31 - 339: 1,25 + 320: 2,16 + 323: -1,31 + 335: 1,25 - node: color: '#3C44AAFF' id: QuarterTileOverlayGreyscale90 decals: - 1233: 43,29 + 1125: 43,29 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 474: 21,3 + 470: 21,3 - node: color: '#79150096' id: QuarterTileOverlayGreyscale90 decals: - 267: -5,4 - 268: -5,5 - 269: -5,6 - 270: -5,7 - 271: -5,8 - 272: -5,9 - 273: -5,10 - 274: -5,11 + 263: -5,4 + 264: -5,5 + 265: -5,6 + 266: -5,7 + 267: -5,8 + 268: -5,9 + 269: -5,10 + 270: -5,11 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale90 decals: - 1225: 40,34 + 1117: 40,34 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 35: 6,-8 - 36: 5,-8 - 38: 4,-8 - 40: -5,-8 - 286: -5,1 + 31: 6,-8 + 32: 5,-8 + 34: 4,-8 + 36: -5,-8 + 282: -5,1 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 1112: 22,-26 - 1113: 21,-26 - 1114: 20,-26 - 1115: 19,-26 - 1116: 18,-26 - 1117: 16,-26 - 1118: 17,-26 - 1119: 16,-25 - 1120: 16,-24 - 1121: 16,-23 - 1122: 16,-22 - 1123: 16,-21 - 1137: 22,-21 - 1138: 21,-21 - 1139: 20,-21 - 1140: 19,-21 - 1141: 22,-22 - 1383: 22,-23 + 1004: 22,-26 + 1005: 21,-26 + 1006: 20,-26 + 1007: 19,-26 + 1008: 18,-26 + 1009: 16,-26 + 1010: 17,-26 + 1011: 16,-25 + 1012: 16,-24 + 1013: 16,-23 + 1014: 16,-22 + 1015: 16,-21 + 1029: 22,-21 + 1030: 21,-21 + 1031: 20,-21 + 1032: 19,-21 + 1033: 22,-22 + 1264: 22,-23 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 777: -12,-2 + 697: -12,-2 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 375: 9,15 - 376: 9,14 - 377: 9,13 - 378: 9,12 - 405: 30,10 - 406: 29,10 - 407: 27,10 - 408: 28,10 - 409: 26,10 - 410: 24,10 - 411: 25,10 - 412: 23,10 - 413: 22,10 - 414: 21,10 - 415: 20,10 - 416: 19,10 - 417: 18,10 - 418: 17,10 - 419: 16,10 - 420: 15,10 - 421: 14,10 - 422: 13,10 - 423: 12,10 + 371: 9,15 + 372: 9,14 + 373: 9,13 + 374: 9,12 + 401: 30,10 + 402: 29,10 + 403: 27,10 + 404: 28,10 + 405: 26,10 + 406: 24,10 + 407: 25,10 + 408: 23,10 + 409: 22,10 + 410: 21,10 + 411: 20,10 + 412: 19,10 + 413: 18,10 + 414: 17,10 + 415: 16,10 + 416: 15,10 + 417: 14,10 + 418: 13,10 + 419: 12,10 - node: color: '#EF5C1F93' id: QuarterTileOverlayGreyscale90 decals: - 515: 31,21 + 511: 31,21 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 994: 23,-11 - 995: 22,-11 - 996: 21,-11 - 997: 20,-11 - 998: 19,-11 - 1358: 31,-12 + 886: 23,-11 + 887: 22,-11 + 888: 21,-11 + 889: 20,-11 + 890: 19,-11 + 1239: 31,-12 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Rust decals: - 1390: 16,22 - 1391: 15,20 - 1392: 12,20 - 1393: 17,20 - 1394: 14,21 + 1271: 16,22 + 1272: 15,20 + 1273: 12,20 + 1274: 17,20 + 1275: 14,21 - node: color: '#FFFFFFFF' id: StandClear decals: - 908: -17,-7 - 909: -8,-10 - 910: -8,-15 - 914: -27,-4 - 1064: 10,-27 - 1065: 14,-27 - 1308: 12,26 + 812: -17,-7 + 813: -8,-10 + 814: -8,-15 + 818: -27,-4 + 956: 10,-27 + 957: 14,-27 + 1200: 12,26 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: StandClear decals: - 1166: -40,22 + 1058: -40,22 - node: color: '#2BAF9D93' id: ThreeQuarterTileOverlayGreyscale decals: - 1352: 31,-17 + 1233: 31,-17 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale decals: - 289: -12,31 - 309: -15,31 - 315: 3,19 - 334: -4,32 - 335: -6,31 + 285: -12,31 + 305: -15,31 + 311: 3,19 + 330: -4,32 + 331: -6,31 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 476: 20,7 - 656: -18,21 + 472: 20,7 + 608: -18,21 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale decals: - 1148: 18,-21 + 1040: 18,-21 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 776: -13,-1 - 847: -19,-1 + 696: -13,-1 + 767: -19,-1 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 463: 11,10 - 465: 31,18 - 549: 36,13 - 577: 11,15 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale - decals: - 535: 27,28 - 542: 24,28 - 543: 24,25 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale - decals: - 589: 11,6 - 590: 14,6 - 591: 17,6 + 459: 11,10 + 461: 31,18 + 515: 36,13 + 543: 11,15 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 949: 15,-7 - 1000: 18,-11 - 1005: 11,-11 + 853: 15,-7 + 892: 18,-11 + 897: 11,-11 - node: color: '#2BAF9D93' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1354: 33,-19 + 1235: 33,-19 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 decals: - 291: -8,26 - 312: -14,30 - 313: 5,18 - 338: 5,21 + 287: -8,26 + 308: -14,30 + 309: 5,18 + 334: 5,21 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 479: 23,5 - 659: -13,18 + 475: 23,5 + 611: -13,18 - node: color: '#9D9D97FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1223: 40,33 + 1115: 40,33 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1075: 6,-24 - 1149: 22,-24 + 967: 6,-24 + 1041: 22,-24 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 773: -9,-4 - 850: -15,-7 + 693: -9,-4 + 770: -15,-7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 552: 38,10 - 579: 12,12 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 538: 30,24 - 539: 33,25 - 540: 25,24 - 541: 25,27 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 595: 12,5 - 596: 15,5 - 597: 18,5 + 518: 38,10 + 545: 12,12 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 916: 13,-9 - 951: 16,-9 - 1002: 29,-12 - 1003: 16,-12 - 1008: 14,-13 + 820: 13,-9 + 855: 16,-9 + 894: 29,-12 + 895: 16,-12 + 900: 14,-13 - node: color: '#2BAF9D93' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1353: 31,-19 + 1234: 31,-19 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 decals: - 290: -12,26 - 311: -15,30 - 316: 3,18 - 330: 3,21 - 336: 0,23 - 337: -6,27 + 286: -12,26 + 307: -15,30 + 312: 3,18 + 326: 3,21 + 332: 0,23 + 333: -6,27 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 478: 20,5 - 658: -18,18 + 474: 20,5 + 610: -18,18 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 772: -13,-4 - 849: -19,-7 + 692: -13,-4 + 769: -19,-7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 462: 11,8 - 551: 36,10 - 576: 11,12 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 537: 27,24 - 546: 24,24 - 547: 24,27 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 592: 11,5 - 593: 14,5 - 594: 17,5 + 458: 11,8 + 517: 36,10 + 542: 11,12 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 943: 18,-9 - 950: 15,-9 - 1001: 18,-12 - 1006: 11,-13 - 1017: 25,-9 + 847: 18,-9 + 854: 15,-9 + 893: 18,-12 + 898: 11,-13 + 909: 25,-9 - node: color: '#F9801DFF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1222: 45,33 + 1114: 45,33 - node: color: '#2BAF9D93' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1351: 33,-17 + 1232: 33,-17 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 288: -8,31 - 310: -14,31 - 314: 5,19 - 331: 5,25 - 332: 1,31 - 333: -1,32 + 284: -8,31 + 306: -14,31 + 310: 5,19 + 327: 5,25 + 328: 1,31 + 329: -1,32 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 477: 23,7 - 657: -13,21 + 473: 23,7 + 609: -13,21 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1074: 6,-20 + 966: 6,-20 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 774: -9,-2 - 775: -12,-1 - 848: -15,-1 + 694: -9,-2 + 695: -12,-1 + 768: -15,-1 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 464: 33,18 - 550: 38,13 - 578: 12,15 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 536: 33,28 - 544: 25,28 - 545: 25,25 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 586: 12,6 - 587: 15,6 - 588: 18,6 + 460: 33,18 + 516: 38,13 + 544: 12,15 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 915: 13,-5 - 944: 23,-4 - 948: 16,-7 - 999: 29,-11 - 1004: 16,-11 - - node: - color: '#FFFFFFFF' - id: VentSmall - decals: - 904: -21,-18 + 819: 13,-5 + 848: 23,-4 + 852: 16,-7 + 891: 29,-11 + 896: 16,-11 - node: color: '#FFFFFFFF' id: WarnBox decals: - 129: -1,46 - 1199: -7,52 + 125: -1,46 + 1091: -7,52 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 134: -2,46 + 130: -2,46 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 5: -9,-15 - 133: -1,45 - 1320: -12,-52 + 129: -1,45 + 1212: -12,-52 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 209: -2,23 - 945: 17,-4 - 1305: -41,23 - 1381: 18,-1 + 205: -2,23 + 849: 17,-4 + 1197: -41,23 + 1262: 18,-1 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 786: -11,-1 + 706: -11,-1 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 81: -8,49 - 82: -9,50 - 135: -3,46 - 799: -29,-4 - 1165: -40,20 + 77: -8,49 + 78: -9,50 + 131: -3,46 + 719: -29,-4 + 1057: -40,20 + 1404: -10,-15 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 6: -6,-15 - 79: -6,49 - 80: -5,50 - 198: -2,23 - 213: -4,24 - 798: -25,-4 + 5: -6,-15 + 75: -6,49 + 76: -5,50 + 194: -2,23 + 209: -4,24 + 718: -25,-4 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 83: -9,54 - 84: -8,55 - 1072: 9,-28 + 79: -9,54 + 80: -8,55 + 964: 9,-28 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 85: -6,55 - 86: -5,54 - 210: -4,26 - 1073: 15,-28 + 81: -6,55 + 82: -5,54 + 206: -4,26 + 965: 15,-28 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 13: -10,-16 - 14: -10,-15 - 15: -10,-14 - 16: -10,-13 - 17: -10,-12 - 74: -9,53 - 75: -9,52 - 76: -9,51 - 136: -2,45 - 137: -2,44 - 207: -2,24 - 208: -2,25 - 795: -29,-3 - 796: -29,-2 - 797: -29,-1 - 1162: -40,21 - 1163: -40,22 - 1164: -40,23 - 1198: -6,52 - 1397: -4,-30 - 1398: -4,-29 + 11: -10,-14 + 12: -10,-13 + 13: -10,-12 + 70: -9,53 + 71: -9,52 + 72: -9,51 + 132: -2,45 + 133: -2,44 + 203: -2,24 + 204: -2,25 + 715: -29,-3 + 716: -29,-2 + 717: -29,-1 + 1054: -40,21 + 1055: -40,22 + 1056: -40,23 + 1090: -6,52 + 1278: -4,-30 + 1279: -4,-29 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 67: -13,-8 - 68: -12,-8 - 77: -7,55 - 130: -2,47 - 131: -1,47 - 204: -5,23 - 205: -4,23 - 206: -3,23 - 787: -10,-1 - 788: -9,-1 - 946: 16,-4 - 947: 15,-4 - 1068: 11,-28 - 1069: 13,-28 - 1070: 14,-28 - 1071: 12,-28 - 1136: 10,-28 - 1195: -7,51 - 1306: -42,23 - 1323: -17,-12 - 1324: -16,-12 - 1342: -18,-16 - 1343: -17,-16 - 1344: -16,-16 - 1345: -18,-12 - 1382: 17,-1 + 63: -13,-8 + 64: -12,-8 + 73: -7,55 + 126: -2,47 + 127: -1,47 + 200: -5,23 + 201: -4,23 + 202: -3,23 + 707: -10,-1 + 708: -9,-1 + 850: 16,-4 + 851: 15,-4 + 960: 11,-28 + 961: 13,-28 + 962: 14,-28 + 963: 12,-28 + 1028: 10,-28 + 1087: -7,51 + 1198: -42,23 + 1263: 17,-1 + 1391: -18,-16 + 1392: -17,-16 + 1393: -16,-16 + 1394: -18,-12 + 1395: -17,-12 + 1396: -16,-12 - node: color: '#FFFFFFFF' id: WarnLineS @@ -3102,167 +3294,162 @@ entities: 2: -11,-14 3: -11,-15 4: -11,-16 - 7: -9,-16 - 8: -6,-13 - 9: -6,-12 - 10: -6,-14 - 71: -5,52 - 72: -5,51 - 73: -5,53 - 132: -1,44 - 199: -2,25 - 200: -2,24 - 211: -4,25 - 789: -25,-1 - 790: -25,-2 - 791: -25,-3 - 1196: -8,52 - 1321: -12,-53 - 1322: -12,-54 - 1395: -2,-30 - 1396: -2,-29 + 6: -6,-13 + 7: -6,-12 + 8: -6,-14 + 67: -5,52 + 68: -5,51 + 69: -5,53 + 128: -1,44 + 195: -2,25 + 196: -2,24 + 207: -4,25 + 709: -25,-1 + 710: -25,-2 + 711: -25,-3 + 1088: -8,52 + 1213: -12,-53 + 1214: -12,-54 + 1276: -2,-30 + 1277: -2,-29 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 11: -8,-15 - 12: -7,-15 - 69: -13,-8 - 70: -12,-8 - 78: -7,49 - 201: -5,23 - 202: -4,23 - 203: -3,23 - 212: -5,24 - 792: -28,-4 - 793: -27,-4 - 794: -26,-4 - 883: -17,-9 - 884: -16,-9 - 885: -18,-17 - 886: -17,-17 - 887: -16,-17 - 888: -19,-17 - 889: -20,-17 - 902: -21,-17 - 903: -15,-17 - 1197: -7,53 - 1325: -17,-12 - 1326: -16,-12 - 1339: -18,-9 - 1346: -18,-12 + 9: -8,-15 + 10: -7,-15 + 65: -13,-8 + 66: -12,-8 + 74: -7,49 + 197: -5,23 + 198: -4,23 + 199: -3,23 + 208: -5,24 + 712: -28,-4 + 713: -27,-4 + 714: -26,-4 + 803: -16,-9 + 1089: -7,53 + 1227: -18,-9 + 1397: -18,-16 + 1398: -17,-16 + 1399: -16,-16 + 1400: -18,-12 + 1401: -17,-12 + 1402: -16,-12 + 1403: -9,-15 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 1201: 41,31 + 1093: 41,31 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 1200: 44,31 + 1092: 44,31 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 257: -4,9 - 258: -1,8 - 259: 3,9 + 253: -4,9 + 254: -1,8 + 255: 3,9 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 254: 6,9 - 255: 3,8 - 256: -1,9 + 250: 6,9 + 251: 3,8 + 252: -1,9 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 251: -1,12 - 252: -4,8 - 253: 3,12 - 1172: -8,-27 + 247: -1,12 + 248: -4,8 + 249: 3,12 + 1064: -8,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 248: 6,8 - 249: -1,12 - 250: 3,12 - 1171: -6,-27 + 244: 6,8 + 245: -1,12 + 246: 3,12 + 1063: -6,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 243: -1,11 - 244: -1,10 - 245: -1,9 - 246: 3,10 - 247: 3,11 - 1203: 41,30 + 239: -1,11 + 240: -1,10 + 241: -1,9 + 242: 3,10 + 243: 3,11 + 1095: 41,30 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 234: 0,8 - 235: 1,8 - 236: 2,8 - 237: -3,9 - 238: -2,9 - 239: 4,9 - 240: 5,9 - 766: 3,4 - 767: 4,4 - 1204: 40,31 - 1205: 39,31 - 1206: 45,31 - 1207: 46,31 + 230: 0,8 + 231: 1,8 + 232: 2,8 + 233: -3,9 + 234: -2,9 + 235: 4,9 + 236: 5,9 + 686: 3,4 + 687: 4,4 + 1096: 40,31 + 1097: 39,31 + 1098: 45,31 + 1099: 46,31 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 216: -3,8 - 217: -2,8 - 218: -1,8 - 219: 0,8 - 220: 1,8 - 221: 1,8 - 222: 2,8 - 223: 3,8 - 224: 4,8 - 225: 5,8 - 226: 5,8 - 227: 0,12 - 228: 1,12 - 229: 2,12 - 1170: -7,-27 + 212: -3,8 + 213: -2,8 + 214: -1,8 + 215: 0,8 + 216: 1,8 + 217: 1,8 + 218: 2,8 + 219: 3,8 + 220: 4,8 + 221: 5,8 + 222: 5,8 + 223: 0,12 + 224: 1,12 + 225: 2,12 + 1062: -7,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 230: 3,11 - 231: 3,11 - 232: 3,9 - 233: 3,10 - 241: -1,10 - 242: -1,11 - 1202: 44,30 + 226: 3,11 + 227: 3,11 + 228: 3,9 + 229: 3,10 + 237: -1,10 + 238: -1,11 + 1094: 44,30 - node: angle: 4.71238898038469 rad color: '#69150079' id: footprint decals: - 1385: 12.797138,20.095083 - 1386: 13.359638,19.751333 - 1387: 13.890888,20.079458 - 1388: 14.422138,19.766958 - 1389: 12.219013,19.751333 + 1266: 12.797138,20.095083 + 1267: 13.359638,19.751333 + 1268: 13.890888,20.079458 + 1269: 14.422138,19.766958 + 1270: 12.219013,19.751333 - node: color: '#691500FF' id: splatter decals: - 1384: 12.062763,20.798208 + 1265: 12.062763,20.798208 - type: GridAtmosphere version: 2 data: @@ -5868,14 +6055,11 @@ entities: pos: 23.5,-23.5 parent: 1 - type: DeviceLinkSink - links: - - 1752 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 1752: - DoorStatus: DoorBolt - - DoorStatus: Close - - DoorStatus: AutoClose - uid: 1717 components: - type: Transform @@ -5895,14 +6079,11 @@ entities: pos: 25.5,-25.5 parent: 1 - type: DeviceLinkSink - links: - - 1523 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 1523: - - DoorStatus: Close - DoorStatus: DoorBolt - - DoorStatus: AutoClose - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 3571 @@ -5911,24 +6092,48 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-24.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3572: + - DoorStatus: DoorBolt - uid: 3572 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-22.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3571: + - DoorStatus: DoorBolt - uid: 3573 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,31.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3574: + - DoorStatus: DoorBolt - uid: 3574 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,30.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3573: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 3284 @@ -5936,28 +6141,60 @@ entities: - type: Transform pos: -17.5,29.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3286: + - DoorStatus: DoorBolt - uid: 3285 components: - type: Transform pos: -16.5,30.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3286: + - DoorStatus: DoorBolt - uid: 3286 components: - type: Transform pos: -17.5,32.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 3284: + - DoorStatus: DoorBolt + 3285: + - DoorStatus: DoorBolt - uid: 3354 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-19.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3355: + - DoorStatus: DoorBolt - uid: 3355 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-20.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3354: + - DoorStatus: DoorBolt - uid: 3607 components: - type: Transform @@ -7315,19 +7552,19 @@ entities: - type: Transform pos: -4.4293957,-34.588463 parent: 1 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 1949 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,12.5 + pos: 48.5,12.5 parent: 1 - uid: 1950 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,5.5 + pos: 48.5,5.5 parent: 1 - uid: 1954 components: @@ -7342,19 +7579,19 @@ entities: - uid: 3001 components: - type: Transform - pos: 1.5,-34.5 + pos: 1.5,-35.5 parent: 1 - uid: 3063 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,13.5 + pos: -44.5,11.5 parent: 1 - uid: 3064 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,11.5 + pos: -44.5,13.5 parent: 1 - uid: 3065 components: @@ -7368,55 +7605,59 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,3.5 parent: 1 - - uid: 3147 - components: - - type: Transform - pos: -0.5,2.5 - parent: 1 - - uid: 3148 - components: - - type: Transform - pos: -3.5,2.5 - parent: 1 - uid: 4816 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,22.5 + pos: 48.5,22.5 parent: 1 - uid: 7073 components: - type: Transform + rot: -1.5707963267948966 rad pos: -42.5,-10.5 parent: 1 - uid: 8324 components: - type: Transform + rot: 3.141592653589793 rad pos: 10.5,34.5 parent: 1 - - uid: 12494 + - uid: 10900 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,38.5 + pos: 33.5,38.5 parent: 1 - - uid: 12495 + - uid: 10901 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,38.5 + pos: 31.5,38.5 parent: 1 - - uid: 12496 + - uid: 10902 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,38.5 + pos: 25.5,38.5 parent: 1 - - uid: 12497 + - uid: 10903 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,38.5 + pos: 23.5,38.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 3147 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 3148 + components: + - type: Transform + pos: -3.5,2.5 parent: 1 - proto: AtmosFixBlockerMarker entities: @@ -7944,34 +8185,21 @@ entities: - type: Transform pos: 34.5,11.5 parent: 1 - - type: DeviceLinkSink - links: - - 5388 - - 5389 - uid: 3434 components: - type: Transform pos: -21.5,-9.5 parent: 1 - - type: DeviceLinkSink - links: - - 6338 - uid: 3435 components: - type: Transform pos: -21.5,-13.5 parent: 1 - - type: DeviceLinkSink - links: - - 6337 - uid: 3561 components: - type: Transform pos: -35.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 1978 - uid: 3795 components: - type: Transform @@ -7979,41 +8207,26 @@ entities: parent: 1 - type: DeviceLinkSink invokeCounter: 1 - links: - - 6068 - - 1357 - uid: 7432 components: - type: Transform pos: 10.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 7436 - uid: 7433 components: - type: Transform pos: 10.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 7436 - uid: 7434 components: - type: Transform pos: 14.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 7437 - uid: 7435 components: - type: Transform pos: 14.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 7437 - proto: BlastDoorOpen entities: - uid: 4064 @@ -8021,25 +8234,16 @@ entities: - type: Transform pos: 5.5,32.5 parent: 1 - - type: DeviceLinkSink - links: - - 4100 - uid: 4065 components: - type: Transform pos: 4.5,32.5 parent: 1 - - type: DeviceLinkSink - links: - - 4100 - uid: 4066 components: - type: Transform pos: 3.5,32.5 parent: 1 - - type: DeviceLinkSink - links: - - 4100 - proto: BlockGameArcade entities: - uid: 4945 @@ -23548,6 +23752,11 @@ entities: - type: Transform pos: -17.5,-32.5 parent: 1 + - uid: 5966 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 1 - uid: 7005 components: - type: Transform @@ -23790,6 +23999,11 @@ entities: - type: Transform pos: 26.5,-27.5 parent: 1 + - uid: 8256 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 1 - uid: 8937 components: - type: Transform @@ -24570,6 +24784,26 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,15.5 parent: 1 + - uid: 9284 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 1 + - uid: 9312 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 1 + - uid: 9313 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 1 + - uid: 9331 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 1 - uid: 9332 components: - type: Transform @@ -25008,6 +25242,26 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,5.5 parent: 1 + - uid: 9624 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 1 + - uid: 9658 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 1 + - uid: 9659 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 1 + - uid: 9661 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 1 - uid: 9741 components: - type: Transform @@ -25404,6 +25658,16 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-15.5 parent: 1 + - uid: 10130 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 1 + - uid: 10863 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 - uid: 12516 components: - type: Transform @@ -27629,7 +27893,7 @@ entities: - type: Transform pos: -7.419932,-28.49488 parent: 1 -- proto: ClothingOuterCoatInspector +- proto: ClothingOuterCoatDetectiveLoadout entities: - uid: 12524 components: @@ -28195,171 +28459,111 @@ entities: - type: Transform pos: 10.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1731 components: - type: Transform pos: 10.5,-30.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1732 components: - type: Transform pos: 10.5,-29.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1733 components: - type: Transform pos: 10.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1734 components: - type: Transform pos: 10.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1735 components: - type: Transform pos: 14.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1736 components: - type: Transform pos: 14.5,-30.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1737 components: - type: Transform pos: 14.5,-29.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1738 components: - type: Transform pos: 14.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1739 components: - type: Transform pos: 14.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1740 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-23.5 parent: 1 - - type: DeviceLinkSink - links: - - 7431 - uid: 1741 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-23.5 parent: 1 - - type: DeviceLinkSink - links: - - 7431 - uid: 1742 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-23.5 parent: 1 - - type: DeviceLinkSink - links: - - 7431 - uid: 3563 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3564 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3565 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3566 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3567 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,24.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3568 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,23.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3569 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - proto: CowToolboxFilled entities: - uid: 12285 @@ -28540,9 +28744,6 @@ entities: - type: Transform pos: 3.5,3.5 parent: 1 - - type: EntityStorage - open: True - removedMasks: 28 - type: Fixtures fixtures: fix1: @@ -28559,14 +28760,15 @@ entities: - HighImpassable - LowImpassable layer: + - TableLayer + - HighImpassable + - LowImpassable - BulletImpassable - Opaque density: 135 hard: True restitution: 0 friction: 0.4 - - type: PlaceableSurface - isPlaceable: True - proto: CrateNPCHamlet entities: - uid: 7180 @@ -32588,10 +32790,10 @@ entities: parent: 1 - proto: DrinkMilkCarton entities: - - uid: 6014 + - uid: 10875 components: - type: Transform - pos: 0.5749459,1.7185974 + pos: 1.6770757,3.695939 parent: 1 - proto: DrinkMugBlack entities: @@ -33416,12 +33618,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,0.5 parent: 1 - - uid: 9284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,4.5 - parent: 1 - uid: 9285 components: - type: Transform @@ -33548,6 +33744,12 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 1 + - uid: 10881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,0.5 + parent: 1 - uid: 11600 components: - type: Transform @@ -36128,18 +36330,17 @@ entities: parent: 1 - proto: FoodCartHot entities: - - uid: 1795 + - uid: 6017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,0.5 + pos: 0.5,1.5 parent: 1 - proto: FoodContainerEgg entities: - - uid: 6015 + - uid: 6016 components: - type: Transform - pos: 0.6686959,0.7498474 + pos: 2.6014228,3.2195196 parent: 1 - proto: FoodDonutJellySlugcat entities: @@ -38788,18 +38989,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10130 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 21.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 10131 components: - type: Transform @@ -56133,9 +56322,6 @@ entities: - type: Transform pos: -20.5,-13.5 parent: 1 - - type: DeviceLinkSink - links: - - 6123 - proto: MachineCentrifuge entities: - uid: 1891 @@ -59274,6 +59460,12 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 + - uid: 5962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 1 - uid: 5995 components: - type: Transform @@ -59282,6 +59474,17 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 + - uid: 6014 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 6015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-6.5 + parent: 1 - uid: 6406 components: - type: Transform @@ -59384,13 +59587,6 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6747 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6748 components: - type: Transform @@ -59538,10 +59734,9 @@ entities: - uid: 7208 components: - type: Transform - pos: 21.5,-3.5 + rot: -1.5707963267948966 rad + pos: 8.5,17.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7209 components: - type: Transform @@ -60092,6 +60287,11 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 + - uid: 10890 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 1 - uid: 11929 components: - type: Transform @@ -62282,17 +62482,17 @@ entities: parent: 1 - proto: ReagentContainerFlour entities: - - uid: 6016 + - uid: 10877 components: - type: Transform - pos: 0.46557093,1.1092224 + pos: 2.3558922,3.6381907 parent: 1 - proto: ReagentContainerSugar entities: - - uid: 6017 + - uid: 10876 components: - type: Transform - pos: 0.6191431,1.0935974 + pos: 2.110363,3.652628 parent: 1 - proto: Recycler entities: @@ -62302,9 +62502,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,24.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - proto: ReinforcedPlasmaWindow entities: - uid: 521 @@ -64389,6 +64586,74 @@ entities: - type: Transform pos: 16.498451,27.468857 parent: 1 +- proto: Screen + entities: + - uid: 1795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,11.5 + parent: 1 + - uid: 5957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,4.5 + parent: 1 + - uid: 10878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,0.5 + parent: 1 + - uid: 10882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 1 + - uid: 10883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 1 + - uid: 10884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,18.5 + parent: 1 + - uid: 10885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,4.5 + parent: 1 + - uid: 10886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-23.5 + parent: 1 + - uid: 10887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-24.5 + parent: 1 + - uid: 10888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-8.5 + parent: 1 + - uid: 10889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,4.5 + parent: 1 - proto: SecurityTechFab entities: - uid: 5417 @@ -64671,49 +64936,31 @@ entities: - type: Transform pos: -8.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 1799 - uid: 3432 components: - type: Transform pos: -7.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 1799 - uid: 3433 components: - type: Transform pos: -6.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 1799 - uid: 3436 components: - type: Transform pos: -29.5,-6.5 parent: 1 - - type: DeviceLinkSink - links: - - 9264 - uid: 5459 components: - type: Transform pos: 14.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 7670 - uid: 5460 components: - type: Transform pos: 15.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 7670 - proto: ShuttersNormalOpen entities: - uid: 1796 @@ -64721,97 +64968,61 @@ entities: - type: Transform pos: 14.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5448 - uid: 1797 components: - type: Transform pos: 15.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5448 - uid: 1798 components: - type: Transform pos: 17.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5449 - uid: 1824 components: - type: Transform pos: 11.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5447 - uid: 1847 components: - type: Transform pos: 12.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5447 - uid: 1866 components: - type: Transform pos: 18.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5449 - uid: 1936 components: - type: Transform pos: -21.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1937 components: - type: Transform pos: -20.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1938 components: - type: Transform pos: -18.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1939 components: - type: Transform pos: -17.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1940 components: - type: Transform pos: -15.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1941 components: - type: Transform pos: -14.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 3618 components: - type: Transform @@ -64837,89 +65048,56 @@ entities: - type: Transform pos: -2.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 5068 components: - type: Transform pos: -1.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 5069 components: - type: Transform pos: -0.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 5070 components: - type: Transform pos: 1.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 5450 components: - type: Transform pos: 11.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 5447 - uid: 5451 components: - type: Transform pos: 14.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 5448 - uid: 5452 components: - type: Transform pos: 17.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 5449 - uid: 5683 components: - type: Transform pos: 18.5,-12.5 parent: 1 - - type: DeviceLinkSink - links: - - 5682 - uid: 5684 components: - type: Transform pos: 19.5,-12.5 parent: 1 - - type: DeviceLinkSink - links: - - 5682 - uid: 5685 components: - type: Transform pos: 20.5,-12.5 parent: 1 - - type: DeviceLinkSink - links: - - 5682 - uid: 5686 components: - type: Transform pos: 16.5,-12.5 parent: 1 - - type: DeviceLinkSink - links: - - 5682 - uid: 5687 components: - type: Transform @@ -64930,203 +65108,128 @@ entities: - type: Transform pos: -12.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 5902 components: - type: Transform pos: -11.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 6131 components: - type: Transform pos: -9.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 6142 components: - type: Transform pos: -8.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 7183 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 7438 components: - type: Transform pos: 5.5,-18.5 parent: 1 - - type: DeviceLinkSink - links: - - 7439 - uid: 7485 components: - type: Transform pos: 10.5,15.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 7660 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 11721 components: - type: Transform pos: -1.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11722 components: - type: Transform pos: -0.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11723 components: - type: Transform pos: 0.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11724 components: - type: Transform pos: 1.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11725 components: - type: Transform pos: 2.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11726 components: - type: Transform pos: 3.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11727 components: - type: Transform pos: 4.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11730 components: - type: Transform pos: -3.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11731 components: - type: Transform pos: -3.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11732 components: - type: Transform pos: 6.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11733 components: - type: Transform pos: 6.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 12444 components: - type: Transform pos: 10.5,12.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12445 components: - type: Transform pos: 10.5,10.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12446 components: - type: Transform pos: 10.5,9.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12447 components: - type: Transform pos: 10.5,8.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12448 components: - type: Transform pos: 13.5,12.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12449 components: - type: Transform pos: 13.5,15.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - proto: ShuttersWindowOpen entities: - uid: 5071 @@ -65134,41 +65237,26 @@ entities: - type: Transform pos: 0.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 11728 components: - type: Transform pos: -2.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11729 components: - type: Transform pos: 5.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 12450 components: - type: Transform pos: 13.5,14.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12451 components: - type: Transform pos: 13.5,13.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - proto: SignAi entities: - uid: 3006 @@ -65904,13 +65992,6 @@ entities: - type: Transform pos: -26.5,-26.5 parent: 1 -- proto: SignDrones - entities: - - uid: 9653 - components: - - type: Transform - pos: 10.5,27.5 - parent: 1 - proto: SignEscapePods entities: - uid: 25 @@ -65972,6 +66053,13 @@ entities: rot: 3.141592653589793 rad pos: 16.5,0.5 parent: 1 +- proto: SignMaterials + entities: + - uid: 9653 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1 - proto: SignMedical entities: - uid: 5301 @@ -68649,12 +68737,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 1 - - uid: 5957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 1 - uid: 5959 components: - type: Transform @@ -68667,12 +68749,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,1.5 parent: 1 - - uid: 5966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 1 - uid: 5992 components: - type: Transform @@ -68907,6 +68983,16 @@ entities: - type: Transform pos: -9.5,-28.5 parent: 1 + - uid: 8232 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 8235 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 - uid: 8236 components: - type: Transform @@ -69208,6 +69294,11 @@ entities: - type: Transform pos: -28.5,12.5 parent: 1 + - uid: 10864 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 - uid: 11797 components: - type: Transform @@ -70454,10 +70545,10 @@ entities: parent: 1 - proto: VendingMachineChefvend entities: - - uid: 5962 + - uid: 6747 components: - type: Transform - pos: 1.5,3.5 + pos: 0.5,0.5 parent: 1 - proto: VendingMachineChemDrobe entities: @@ -70516,7 +70607,7 @@ entities: - uid: 5964 components: - type: Transform - pos: 2.5,3.5 + pos: 1.5,0.5 parent: 1 - proto: VendingMachineEngiDrobe entities: @@ -80194,25 +80285,16 @@ entities: - type: Transform pos: 12.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 12485 - uid: 5536 components: - type: Transform pos: 15.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 12486 - uid: 5537 components: - type: Transform pos: 18.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 12487 - proto: WindoorServiceLocked entities: - uid: 3375 diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 8834f76557e..6ec14dbb7ef 100755 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -123,7 +123,7 @@ entities: version: 6 1,1: ind: 1,1 - tiles: DAAAAAABDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAAADAAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAACgQAAAAAAfwAAAAACfwAAAAABfwAAAAABfwAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAADfQAAAAADfQAAAAADfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAABIAAAAAADgQAAAAAAfwAAAAACfQAAAAACfQAAAAACfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAfwAAAAADfQAAAAADfQAAAAAAfQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAfwAAAAADfwAAAAABfwAAAAADfwAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACZQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAcAAAAAAA + tiles: DAAAAAABDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAAADAAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAACgQAAAAAAfwAAAAACfwAAAAABfwAAAAABfwAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAADfQAAAAADfQAAAAADfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAABIAAAAAADgQAAAAAAfwAAAAACfQAAAAACfQAAAAACfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAfwAAAAADfQAAAAADfQAAAAAAfQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAfwAAAAADfwAAAAABfwAAAAADfwAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACZQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAcAAAAAAA version: 6 1,0: ind: 1,0 @@ -171,7 +171,7 @@ entities: version: 6 2,-3: ind: 2,-3 - tiles: gQAAAAAAbwAAAAAAKQAAAAADKQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAKQAAAAABbwAAAAAAKQAAAAABKQAAAAAAbwAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAKQAAAAACKQAAAAAAIQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAJAAAAAAAgQAAAAAAdwAAAAAAYAAAAAACYAAAAAABgQAAAAAAKQAAAAABKQAAAAABgQAAAAAAKQAAAAADJgAAAAAAJgAAAAAAJgAAAAAAKQAAAAADgQAAAAAAKQAAAAABKQAAAAAAKQAAAAACdwAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAdwAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAACgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAACKQAAAAADIQAAAAAAKQAAAAAAKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAACKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAJAAAAAABgQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAAAKQAAAAACIQAAAAABKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAbwAAAAAAKQAAAAADKQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAKQAAAAABbwAAAAAAKQAAAAABKQAAAAAAbwAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAKQAAAAACKQAAAAAAIQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAJAAAAAAAgQAAAAAAdwAAAAAAYAAAAAACYAAAAAABgQAAAAAAKQAAAAABKQAAAAABgQAAAAAAKQAAAAADJgAAAAAAJgAAAAAAJgAAAAAAKQAAAAADgQAAAAAAKQAAAAABKQAAAAAAKQAAAAACdwAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAdwAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAACgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAACKQAAAAADIQAAAAAAKQAAAAAAKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAACKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAJAAAAAABgQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAAAKQAAAAACIQAAAAABKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-1: ind: 2,-1 @@ -179,7 +179,7 @@ entities: version: 6 2,0: ind: 2,0 - tiles: YAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAALwAAAAAAYAAAAAAAYAAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAALwAAAAAAYAAAAAACYAAAAAABLwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAALwAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAALwAAAAAAYAAAAAABLwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACgQAAAAAAfQAAAAADfQAAAAACfwAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAAAfQAAAAAAfQAAAAAAfwAAAAACfQAAAAACfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAADKQAAAAACfQAAAAAAfQAAAAADfwAAAAADfQAAAAABfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADgQAAAAAAfQAAAAABfQAAAAABfwAAAAAAfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAALwAAAAAAYAAAAAAAYAAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAALwAAAAAAYAAAAAACYAAAAAABLwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAALwAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAALwAAAAAAYAAAAAABLwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACgQAAAAAAfQAAAAADfQAAAAACfwAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACfwAAAAAAfQAAAAAAfQAAAAAAfwAAAAACfQAAAAACfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAADfwAAAAAAfQAAAAAAfQAAAAADfwAAAAADfQAAAAABfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADgQAAAAAAfQAAAAABfQAAAAABfwAAAAAAfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,1: ind: 2,1 @@ -187,11 +187,11 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAADbwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfwAAAAACgQAAAAAAgQAAAAAAfQAAAAADLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAACcwAAAAACgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAAB + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAADbwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfwAAAAACgQAAAAAAgQAAAAAAfQAAAAADLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcwAAAAABcwAAAAAB version: 6 -3,-2: ind: -3,-2 - tiles: LwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAABcwAAAAAAIAAAAAADIAAAAAADIAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABKQAAAAABKQAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAKQAAAAADKQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADKQAAAAABKQAAAAAAYAAAAAAAYAAAAAACKQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAABUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAA + tiles: LwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcwAAAAABcwAAAAAAIAAAAAADIAAAAAADIAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABKQAAAAABKQAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAKQAAAAADKQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADKQAAAAABKQAAAAAAYAAAAAAAYAAAAAACKQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAABUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -203,7 +203,7 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-4: ind: 0,-4 @@ -251,15 +251,15 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAABJwAAAAAAJwAAAAAAgQAAAAAAJwAAAAADJwAAAAACJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAACJwAAAAACJwAAAAADgQAAAAAAJwAAAAABJwAAAAACJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAACKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAABKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAABKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAABJwAAAAAAJwAAAAAAgQAAAAAAJwAAAAADJwAAAAACJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAACJwAAAAACJwAAAAADgQAAAAAAJwAAAAABJwAAAAACJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAACKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAABKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAABKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAALBwAAAAAABwAAAAADBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAADKQAAAAABgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAADKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAADgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAABgQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAALBwAAAAAABwAAAAADBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAADKQAAAAABgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAADKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAADgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAABgQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: fQAAAAAAfwAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAADfQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAYAAAAAADYAAAAAADbwAAAAAAgQAAAAAAgQAAAAAAfwAAAAADgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAYAAAAAABYAAAAAACbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAYAAAAAABYAAAAAABbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAABgQAAAAAAYAAAAAABYAAAAAACbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAABfQAAAAACfQAAAAABfQAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAADfQAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAACJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAAAgQAAAAAA + tiles: fQAAAAAAfwAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAADfQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAYAAAAAADYAAAAAADbwAAAAAAgQAAAAAAgQAAAAAAfwAAAAADgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAYAAAAAABYAAAAAACbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAYAAAAAABYAAAAAABbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAABYAAAAAAAYAAAAAABYAAAAAACbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAABfQAAAAACfQAAAAABfQAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAADfQAAAAADgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAACJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAAAgQAAAAAA version: 6 -2,2: ind: -2,2 @@ -267,7 +267,7 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA version: 6 2,-4: ind: 2,-4 @@ -291,7 +291,7 @@ entities: version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAADRAAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKQAAAAABYAAAAAABYAAAAAADYAAAAAAARAAAAAAAKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAADRAAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKQAAAAABYAAAAAABYAAAAAADYAAAAAAARAAAAAAAKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 @@ -363,7 +363,7 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAABJQAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAAAJQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAABYAAAAAACYAAAAAADUwAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACJQAAAAAAJQAAAAAAJQAAAAADYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAADZQAAAAACZQAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAABZQAAAAAAZQAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAbAAAAAAAbAAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAABJQAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAAAJQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAABYAAAAAACYAAAAAADUwAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACJQAAAAAAJQAAAAAAJQAAAAADYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAADZQAAAAACZQAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAABZQAAAAAAZQAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAbAAAAAAAbAAAAAAA version: 6 4,1: ind: 4,1 @@ -445,445 +445,445 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 709: 42.99683,-1.538444 + 707: 42.99683,-1.538444 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 710: 39.96558,-1.975944 + 708: 39.96558,-1.975944 - node: color: '#FFFFFFFF' id: Bot decals: - 963: -57,-9 - 964: -56,-9 - 965: -55,-9 - 966: -55,-10 - 967: -56,-10 - 968: -57,-10 - 969: -57,-11 - 970: -56,-11 - 971: -55,-11 - 972: -55,-12 - 973: -56,-12 - 974: -57,-12 - 3491: -3,-31 + 961: -57,-9 + 962: -56,-9 + 963: -55,-9 + 964: -55,-10 + 965: -56,-10 + 966: -57,-10 + 967: -57,-11 + 968: -56,-11 + 969: -55,-11 + 970: -55,-12 + 971: -56,-12 + 972: -57,-12 + 3489: -3,-31 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Bot decals: - 714: 40,-3 + 712: 40,-3 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 2721: 35,-25 - 2722: 35,-26 - 2723: 32,-25 - 2724: 32,-24 - 2725: 32,-22 - 2836: 7,-38 - 2967: 15,-40 - 2968: 15,-41 + 2719: 35,-25 + 2720: 35,-26 + 2721: 32,-25 + 2722: 32,-24 + 2723: 32,-22 + 2834: 7,-38 + 2965: 15,-40 + 2966: 15,-41 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: BotLeft decals: - 711: 43,-3 - 712: 42,-3 - 713: 41,-3 + 709: 43,-3 + 710: 42,-3 + 711: 41,-3 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 2837: 7,-38 + 2835: 7,-38 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 2838: 7,-38 + 2836: 7,-38 - node: color: '#FFFFFFFF' id: Box decals: - 1734: 49,-37 - 1735: 49,-38 - 2341: -7,-51 - 2342: -5,-53 + 1732: 49,-37 + 1733: 49,-38 + 2339: -7,-51 + 2340: -5,-53 - node: color: '#C74EBDB2' id: BrickCornerOverlayNE decals: - 2933: -18,-25 + 2931: -18,-25 - node: color: '#EFB34196' id: BrickCornerOverlayNE decals: - 2484: 5,51 - 3098: -3,42 + 2482: 5,51 + 3096: -3,42 - node: color: '#F9801DB2' id: BrickCornerOverlayNE decals: - 2946: -22,-25 + 2944: -22,-25 - node: color: '#FED83DB2' id: BrickCornerOverlayNE decals: - 2939: -15,-25 + 2937: -15,-25 - node: color: '#C74EBDB2' id: BrickCornerOverlayNW decals: - 2934: -20,-25 + 2932: -20,-25 - node: color: '#EFB34196' id: BrickCornerOverlayNW decals: - 2485: 3,51 - 3097: -6,42 + 2483: 3,51 + 3095: -6,42 - node: color: '#F9801DB2' id: BrickCornerOverlayNW decals: - 2945: -23,-25 + 2943: -23,-25 - node: color: '#FED83DB2' id: BrickCornerOverlayNW decals: - 2940: -16,-25 + 2938: -16,-25 - node: color: '#C74EBDB2' id: BrickCornerOverlaySE decals: - 2936: -18,-26 + 2934: -18,-26 - node: color: '#EFB34196' id: BrickCornerOverlaySE decals: - 2486: 5,49 - 3095: -3,41 + 2484: 5,49 + 3093: -3,41 - node: color: '#F9801DB2' id: BrickCornerOverlaySE decals: - 2943: -22,-26 + 2941: -22,-26 - node: color: '#FED83DB2' id: BrickCornerOverlaySE decals: - 2941: -15,-26 + 2939: -15,-26 - node: color: '#C74EBDB2' id: BrickCornerOverlaySW decals: - 2935: -20,-26 + 2933: -20,-26 - node: color: '#EFB34196' id: BrickCornerOverlaySW decals: - 2438: 7,40 - 2487: 3,49 - 3096: -6,41 + 2436: 7,40 + 2485: 3,49 + 3094: -6,41 - node: color: '#F9801DB2' id: BrickCornerOverlaySW decals: - 2944: -23,-26 + 2942: -23,-26 - node: color: '#FED83DB2' id: BrickCornerOverlaySW decals: - 2942: -16,-26 + 2940: -16,-26 - node: color: '#EFB34196' id: BrickLineOverlayE decals: - 2449: 9,50 - 2450: 9,48 - 2451: 9,47 - 2459: 19,50 - 2470: 19,51 - 2471: 9,51 - 2490: 5,50 - 2492: 3,50 + 2447: 9,50 + 2448: 9,48 + 2449: 9,47 + 2457: 19,50 + 2468: 19,51 + 2469: 9,51 + 2488: 5,50 + 2490: 3,50 - node: color: '#C74EBDB2' id: BrickLineOverlayN decals: - 2937: -19,-25 - 2948: -20,-27 - 2949: -18,-27 - 2955: -19,-27 + 2935: -19,-25 + 2946: -20,-27 + 2947: -18,-27 + 2953: -19,-27 - node: color: '#EFB34196' id: BrickLineOverlayN decals: - 2452: 10,46 - 2453: 11,46 - 2454: 15,46 - 2455: 16,46 - 2489: 4,51 - 2495: 4,49 - 3099: -4,42 - 3100: -5,42 + 2450: 10,46 + 2451: 11,46 + 2452: 15,46 + 2453: 16,46 + 2487: 4,51 + 2493: 4,49 + 3097: -4,42 + 3098: -5,42 - node: color: '#F9801DB2' id: BrickLineOverlayN decals: - 2947: -23,-27 - 2956: -22,-27 + 2945: -23,-27 + 2954: -22,-27 - node: color: '#FED83DB2' id: BrickLineOverlayN decals: - 2950: -15,-27 - 2954: -16,-27 + 2948: -15,-27 + 2952: -16,-27 - node: color: '#C74EBDB2' id: BrickLineOverlayS decals: - 2938: -19,-26 + 2936: -19,-26 - node: color: '#EFB34196' id: BrickLineOverlayS decals: - 2491: 4,49 - 2493: 4,51 - 3101: -5,41 - 3102: -4,41 + 2489: 4,49 + 2491: 4,51 + 3099: -5,41 + 3100: -4,41 - node: color: '#EFB34196' id: BrickLineOverlayW decals: - 2439: 7,41 - 2440: 7,42 - 2441: 7,43 - 2442: 7,44 - 2443: 7,45 - 2444: 7,46 - 2445: 7,47 - 2446: 7,48 - 2447: 7,49 - 2448: 7,50 - 2456: 17,47 - 2457: 17,48 - 2458: 17,50 - 2469: 17,51 - 2472: 7,51 - 2488: 3,50 - 2494: 5,50 + 2437: 7,41 + 2438: 7,42 + 2439: 7,43 + 2440: 7,44 + 2441: 7,45 + 2442: 7,46 + 2443: 7,47 + 2444: 7,48 + 2445: 7,49 + 2446: 7,50 + 2454: 17,47 + 2455: 17,48 + 2456: 17,50 + 2467: 17,51 + 2470: 7,51 + 2486: 3,50 + 2492: 5,50 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 874: -53,8 - 875: -52,7 - 1727: 42,-40 + 872: -53,8 + 873: -52,7 + 1725: 42,-40 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 872: -55,8 - 876: -57,7 - 1726: 40,-40 + 870: -55,8 + 874: -57,7 + 1724: 40,-40 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 877: -52,5 + 875: -52,5 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 878: -57,5 + 876: -57,5 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 620: 22,4 - 885: -53,7 + 618: 22,4 + 883: -53,7 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 886: -55,7 + 884: -55,7 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 621: 22,9 + 619: 22,9 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 616: 22,8 - 617: 22,7 - 618: 22,6 - 619: 22,5 - 887: -52,6 - 2519: 27,42 - 2520: 27,43 - 2521: 30,42 - 2522: 30,43 + 614: 22,8 + 615: 22,7 + 616: 22,6 + 617: 22,5 + 885: -52,6 + 2517: 27,42 + 2518: 27,43 + 2519: 30,42 + 2520: 30,43 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 873: -54,8 - 884: -56,7 - 1728: 41,-40 - 3509: -8,-24 + 871: -54,8 + 882: -56,7 + 1726: 41,-40 + 3507: -8,-24 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 879: -56,5 - 880: -55,5 - 881: -54,5 - 882: -53,5 + 877: -56,5 + 878: -55,5 + 879: -54,5 + 880: -53,5 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 883: -57,6 - 2523: 31,42 - 2524: 31,43 + 881: -57,6 + 2521: 31,42 + 2522: 31,43 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 724: -1,-34 - 2325: -4,-50 - 2389: 32,-38 - 3081: -28,42 + 722: -1,-34 + 2323: -4,-50 + 2387: 32,-38 + 3079: -28,42 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2326: -8,-50 - 2388: 29,-38 - 3082: -33,42 - 3427: 19,-18 - 3428: 18,-19 + 2324: -8,-50 + 2386: 29,-38 + 3080: -33,42 + 3425: 19,-18 + 3426: 18,-19 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 723: -1,-39 - 2327: -4,-54 - 2397: 32,-40 - 3083: -28,40 + 721: -1,-39 + 2325: -4,-54 + 2395: 32,-40 + 3081: -28,40 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2328: -8,-54 - 2393: 29,-40 - 3084: -33,40 + 2326: -8,-54 + 2391: 29,-40 + 3082: -33,40 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN decals: - 2317: -8,-44 + 2315: -8,-44 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 2318: -8,-48 + 2316: -8,-48 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 721: -2,-34 + 719: -2,-34 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 3433: 19,-19 + 3431: 19,-19 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 720: -2,-39 + 718: -2,-39 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 715: -2,-40 - 716: -1,-38 - 717: -1,-37 - 718: -1,-36 - 719: -1,-35 - 722: -2,-33 - 1815: 17,30 - 2319: -8,-47 - 2320: -8,-46 - 2321: -8,-45 - 2329: -4,-53 - 2330: -4,-52 - 2331: -4,-51 - 2396: 32,-39 - 3085: -28,41 + 713: -2,-40 + 714: -1,-38 + 715: -1,-37 + 716: -1,-36 + 717: -1,-35 + 720: -2,-33 + 1813: 17,30 + 2317: -8,-47 + 2318: -8,-46 + 2319: -8,-45 + 2327: -4,-53 + 2328: -4,-52 + 2329: -4,-51 + 2394: 32,-39 + 3083: -28,41 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2332: -5,-50 - 2333: -6,-50 - 2334: -7,-50 - 2390: 30,-38 - 2394: 31,-38 - 3091: -32,42 - 3092: -31,42 - 3093: -30,42 - 3094: -29,42 - 3431: 20,-18 - 3432: 21,-18 + 2330: -5,-50 + 2331: -6,-50 + 2332: -7,-50 + 2388: 30,-38 + 2392: 31,-38 + 3089: -32,42 + 3090: -31,42 + 3091: -30,42 + 3092: -29,42 + 3429: 20,-18 + 3430: 21,-18 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 2335: -5,-54 - 2336: -6,-54 - 2337: -7,-54 - 2391: 30,-40 - 2392: 31,-40 - 3087: -32,40 - 3088: -31,40 - 3089: -30,40 - 3090: -29,40 + 2333: -5,-54 + 2334: -6,-54 + 2335: -7,-54 + 2389: 30,-40 + 2390: 31,-40 + 3085: -32,40 + 3086: -31,40 + 3087: -30,40 + 3088: -29,40 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 1816: 12,30 - 2322: -8,-47 - 2323: -8,-46 - 2324: -8,-45 - 2338: -8,-53 - 2339: -8,-52 - 2340: -8,-51 - 2395: 29,-39 - 3086: -33,41 - 3429: 18,-21 - 3430: 18,-20 + 1814: 12,30 + 2320: -8,-47 + 2321: -8,-46 + 2322: -8,-45 + 2336: -8,-53 + 2337: -8,-52 + 2338: -8,-51 + 2393: 29,-39 + 3084: -33,41 + 3427: 18,-21 + 3428: 18,-20 - node: color: '#00BEBE7F' id: BrickTileWhiteCornerNe decals: - 3169: -27,43 - 3179: -36,4 - 3181: -42,5 + 3167: -27,43 + 3177: -36,4 + 3179: -42,5 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 609: 24,9 - 612: 24,8 + 607: 24,9 + 610: 24,8 - node: color: '#4B709CFF' id: BrickTileWhiteCornerNe @@ -897,63 +897,63 @@ entities: 231: -5,-38 494: -25,-26 505: -29,-26 - 557: -24,-39 - 2361: 28,-35 - 2383: 37,-37 + 555: -24,-39 + 2359: 28,-35 + 2381: 37,-37 - node: color: '#765428FF' id: BrickTileWhiteCornerNe decals: - 3333: -53,-17 + 3331: -53,-17 - node: color: '#9FED58B3' id: BrickTileWhiteCornerNe decals: - 2534: -46,-30 + 2532: -46,-30 - node: color: '#BC863FFF' id: BrickTileWhiteCornerNe decals: - 3222: -49,3 + 3220: -49,3 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 837: -11,-47 - 2189: 16,-35 - 2190: 12,-43 + 835: -11,-47 + 2187: 16,-35 + 2188: 12,-43 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 1551: 51,-3 - 1715: 42,-41 - 1729: 42,-40 + 1549: 51,-3 + 1713: 42,-41 + 1727: 42,-40 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 3103: -2,43 + 3101: -2,43 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 574: -30,-27 + 572: -30,-27 - node: color: '#00BEBE7F' id: BrickTileWhiteCornerNw decals: - 3170: -34,43 - 3180: -44,5 + 3168: -34,43 + 3178: -44,5 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 599: 21,8 - 604: 20,8 - 610: 23,9 - 611: 23,8 - 3211: -44,-9 + 597: 21,8 + 602: 20,8 + 608: 23,9 + 609: 23,8 + 3209: -44,-9 - node: color: '#4B709CFF' id: BrickTileWhiteCornerNw @@ -967,62 +967,62 @@ entities: 225: -10,-33 493: -27,-26 504: -33,-26 - 558: -28,-39 - 727: -2,-39 - 2360: 27,-35 + 556: -28,-39 + 725: -2,-39 + 2358: 27,-35 - node: color: '#765428FF' id: BrickTileWhiteCornerNw decals: - 3332: -58,-17 + 3330: -58,-17 - node: color: '#9FED58B3' id: BrickTileWhiteCornerNw decals: - 2535: -48,-30 + 2533: -48,-30 - node: color: '#BC863FFF' id: BrickTileWhiteCornerNw decals: - 3221: -51,3 - 3358: -51,-2 + 3219: -51,3 + 3356: -51,-2 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 838: -14,-47 - 2183: 6,-43 - 2184: 14,-35 + 836: -14,-47 + 2181: 6,-43 + 2182: 14,-35 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 1550: 49,-3 - 1730: 40,-40 + 1548: 49,-3 + 1728: 40,-40 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 3114: -7,43 + 3112: -7,43 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 572: -32,-27 - 573: -32,-27 + 570: -32,-27 + 571: -32,-27 - node: color: '#00BEBE7F' id: BrickTileWhiteCornerSe decals: - 3171: -27,39 - 3183: -36,3 + 3169: -27,39 + 3181: -36,3 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 608: 24,4 - 613: 24,5 - 614: 24,5 + 606: 24,4 + 611: 24,5 + 612: 24,5 - node: color: '#4B709CFF' id: BrickTileWhiteCornerSe @@ -1036,63 +1036,63 @@ entities: 227: -5,-40 491: -25,-30 503: -29,-30 - 555: -24,-42 - 2381: 34,-42 - 2382: 37,-38 + 553: -24,-42 + 2379: 34,-42 + 2380: 37,-38 - node: color: '#765428FF' id: BrickTileWhiteCornerSe decals: - 3335: -53,-24 + 3333: -53,-24 - node: color: '#9FED58B3' id: BrickTileWhiteCornerSe decals: - 2532: -46,-31 + 2530: -46,-31 - node: color: '#BC863FFF' id: BrickTileWhiteCornerSe decals: - 3230: -49,-5 + 3228: -49,-5 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 836: -11,-51 - 2185: 12,-45 - 2186: 16,-44 + 834: -11,-51 + 2183: 12,-45 + 2184: 16,-44 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 1552: 51,-4 + 1550: 51,-4 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 3104: -2,40 - 3119: 10,40 - 3124: 19,39 + 3102: -2,40 + 3117: 10,40 + 3122: 19,39 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 571: -30,-29 + 569: -30,-29 - node: color: '#00BEBE7F' id: BrickTileWhiteCornerSw decals: - 3172: -34,39 - 3182: -44,3 + 3170: -34,39 + 3180: -44,3 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 600: 21,5 - 603: 20,5 - 607: 23,4 - 615: 23,5 - 3210: -44,-11 + 598: 21,5 + 601: 20,5 + 605: 23,4 + 613: 23,5 + 3208: -44,-11 - node: color: '#4B709CFF' id: BrickTileWhiteCornerSw @@ -1106,48 +1106,48 @@ entities: 229: -10,-35 492: -27,-30 506: -33,-30 - 556: -28,-42 - 726: -2,-34 - 2384: 27,-42 + 554: -28,-42 + 724: -2,-34 + 2382: 27,-42 - node: color: '#765428FF' id: BrickTileWhiteCornerSw decals: - 3334: -58,-24 + 3332: -58,-24 - node: color: '#9FED58B3' id: BrickTileWhiteCornerSw decals: - 2533: -48,-31 + 2531: -48,-31 - node: color: '#BC863FFF' id: BrickTileWhiteCornerSw decals: - 3231: -51,-5 - 3357: -51,1 + 3229: -51,-5 + 3355: -51,1 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 839: -14,-51 - 2187: 6,-45 - 2188: 14,-44 + 837: -14,-51 + 2185: 6,-45 + 2186: 14,-44 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 1553: 49,-4 + 1551: 49,-4 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 3112: -7,40 - 3123: 17,39 + 3110: -7,40 + 3121: 17,39 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 575: -32,-29 + 573: -32,-29 - node: color: '#169C9CFF' id: BrickTileWhiteEndE @@ -1167,22 +1167,22 @@ entities: color: '#80C71F80' id: BrickTileWhiteEndS decals: - 3451: 53,-20 + 3449: 53,-20 - node: color: '#8932B87F' id: BrickTileWhiteEndS decals: - 3448: 49,-20 + 3446: 49,-20 - node: color: '#DE3A3A96' id: BrickTileWhiteEndS decals: - 1716: 42,-42 + 1714: 42,-42 - node: color: '#F9801D7F' id: BrickTileWhiteEndS decals: - 3447: 45,-20 + 3445: 45,-20 - node: color: '#169C9CFF' id: BrickTileWhiteEndW @@ -1197,7 +1197,7 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteEndW decals: - 1714: 40,-41 + 1712: 40,-41 - node: color: '#F38BAAFF' id: BrickTileWhiteEndW @@ -1207,13 +1207,13 @@ entities: color: '#00BEBE7F' id: BrickTileWhiteInnerNe decals: - 3200: -44,1 - 3208: -42,4 + 3198: -44,1 + 3206: -42,4 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 1357: 33,-8 + 1355: 33,-8 - node: color: '#4B709CFF' id: BrickTileWhiteInnerNe @@ -1223,219 +1223,219 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 2387: 28,-37 + 2385: 28,-37 - node: color: '#9FED58B3' id: BrickTileWhiteInnerNe decals: - 2542: -48,-31 + 2540: -48,-31 - node: color: '#BC863FFF' id: BrickTileWhiteInnerNe decals: - 3239: -53,-2 - 3240: -53,3 - 3277: -53,1 - 3278: -53,2 - 3279: -53,3 - 3280: -53,-3 - 3281: -53,-4 - 3282: -53,-5 - 3283: -53,-6 - 3284: -53,-7 - 3285: -53,-8 - 3286: -53,-9 - 3287: -53,-10 - 3288: -53,-11 - 3289: -53,-12 - 3290: -53,-13 - 3291: -53,-15 - 3309: -58,3 - 3310: -57,3 - 3311: -56,3 - 3312: -55,3 + 3237: -53,-2 + 3238: -53,3 + 3275: -53,1 + 3276: -53,2 + 3277: -53,3 + 3278: -53,-3 + 3279: -53,-4 + 3280: -53,-5 + 3281: -53,-6 + 3282: -53,-7 + 3283: -53,-8 + 3284: -53,-9 + 3285: -53,-10 + 3286: -53,-11 + 3287: -53,-12 + 3288: -53,-13 + 3289: -53,-15 + 3307: -58,3 + 3308: -57,3 + 3309: -56,3 + 3310: -55,3 - node: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 2074: 3,-48 - 2077: 3,-45 - 2104: 17,-37 - 2105: 17,-36 - 2106: 17,-35 - 2107: 17,-34 - 2108: 15,-34 - 2109: 14,-34 - 2110: 13,-34 - 2118: 12,-42 - 2119: 11,-42 - 2120: 10,-42 - 2121: 9,-42 - 2122: 8,-42 - 2123: 7,-42 - 2124: 6,-42 - 2125: 5,-42 - 2133: 4,-34 - 2134: 8,-34 - 2135: 11,-40 - 2167: 8,-47 - 2168: 21,-44 - 2173: 13,-46 - 2182: 18,-45 - 2234: 5,-39 - 2287: -9,-42 - 2288: -8,-42 - 2289: -7,-42 - 2290: -7,-43 - 2296: -7,-46 - 2297: -7,-45 - 2300: -7,-49 - 2301: -6,-49 - 2302: -5,-49 - 2303: -5,-49 - 2304: -4,-49 - 2305: -3,-49 - 2306: -3,-50 - 2307: -3,-51 - 2308: -3,-52 - 2309: -3,-53 - 2310: -3,-54 - 2311: -3,-55 - 2861: 17,-42 - 2863: 17,-38 - 2864: 17,-39 - 2865: 17,-40 - 2866: 17,-43 - 2871: 20,-43 - 2872: 19,-43 - 2873: 18,-43 - 2963: 14,-42 + 2072: 3,-48 + 2075: 3,-45 + 2102: 17,-37 + 2103: 17,-36 + 2104: 17,-35 + 2105: 17,-34 + 2106: 15,-34 + 2107: 14,-34 + 2108: 13,-34 + 2116: 12,-42 + 2117: 11,-42 + 2118: 10,-42 + 2119: 9,-42 + 2120: 8,-42 + 2121: 7,-42 + 2122: 6,-42 + 2123: 5,-42 + 2131: 4,-34 + 2132: 8,-34 + 2133: 11,-40 + 2165: 8,-47 + 2166: 21,-44 + 2171: 13,-46 + 2180: 18,-45 + 2232: 5,-39 + 2285: -9,-42 + 2286: -8,-42 + 2287: -7,-42 + 2288: -7,-43 + 2294: -7,-46 + 2295: -7,-45 + 2298: -7,-49 + 2299: -6,-49 + 2300: -5,-49 + 2301: -5,-49 + 2302: -4,-49 + 2303: -3,-49 + 2304: -3,-50 + 2305: -3,-51 + 2306: -3,-52 + 2307: -3,-53 + 2308: -3,-54 + 2309: -3,-55 + 2859: 17,-42 + 2861: 17,-38 + 2862: 17,-39 + 2863: 17,-40 + 2864: 17,-43 + 2869: 20,-43 + 2870: 19,-43 + 2871: 18,-43 + 2961: 14,-42 - node: color: '#D4D4D428' id: BrickTileWhiteInnerNe decals: - 1364: 30,-3 + 1362: 30,-3 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 1384: 52,-6 - 1385: 52,-7 - 1386: 53,-8 - 1387: 54,-8 - 1388: 54,-9 - 1389: 54,-14 - 1390: 54,-16 - 1391: 54,-18 - 1392: 54,-17 - 1393: 52,-8 - 1394: 54,-15 - 1395: 54,-13 - 1396: 50,-6 - 1397: 48,-6 - 1420: 47,-8 - 1421: 46,-8 - 1440: 40,-15 - 1441: 40,-14 - 1442: 40,-13 - 1443: 40,-12 - 1444: 39,-11 - 1445: 37,-11 - 1446: 36,-11 - 1447: 35,-11 - 1448: 34,-11 - 1449: 33,-11 - 1450: 31,-11 - 1451: 30,-11 - 1502: 42,-21 - 1503: 42,-20 - 1524: 52,-16 - 1525: 51,-16 - 1526: 49,-16 - 1527: 48,-16 - 1528: 47,-16 - 1540: 47,-15 - 1541: 47,-14 - 1542: 47,-13 - 1543: 47,-12 - 1544: 47,-11 - 1545: 47,-10 - 1570: 40,-24 - 1572: 42,-24 - 1589: 39,-25 - 1590: 42,-25 - 1591: 42,-26 - 1592: 42,-28 - 1593: 42,-29 - 1594: 42,-30 - 1624: 38,-35 - 1646: 38,-31 - 1647: 37,-31 - 1648: 36,-31 - 1649: 35,-31 - 1650: 34,-31 - 1651: 33,-31 - 1652: 32,-31 - 1653: 31,-31 - 1654: 30,-31 - 1664: 40,-32 - 1677: 44,-32 - 1678: 43,-32 - 1679: 42,-32 - 1680: 44,-33 - 1681: 44,-34 - 1682: 43,-35 - 1683: 43,-36 - 1692: 39,-37 - 1700: 43,-39 - 1701: 43,-40 - 1702: 43,-41 - 1703: 43,-42 - 1721: 40,-39 - 1724: 39,-39 - 1732: 37,-42 - 2726: 54,-10 - 2842: 40,-25 - 2848: 42,-23 - 2850: 42,-22 - 3458: 54,-19 + 1382: 52,-6 + 1383: 52,-7 + 1384: 53,-8 + 1385: 54,-8 + 1386: 54,-9 + 1387: 54,-14 + 1388: 54,-16 + 1389: 54,-18 + 1390: 54,-17 + 1391: 52,-8 + 1392: 54,-15 + 1393: 54,-13 + 1394: 50,-6 + 1395: 48,-6 + 1418: 47,-8 + 1419: 46,-8 + 1438: 40,-15 + 1439: 40,-14 + 1440: 40,-13 + 1441: 40,-12 + 1442: 39,-11 + 1443: 37,-11 + 1444: 36,-11 + 1445: 35,-11 + 1446: 34,-11 + 1447: 33,-11 + 1448: 31,-11 + 1449: 30,-11 + 1500: 42,-21 + 1501: 42,-20 + 1522: 52,-16 + 1523: 51,-16 + 1524: 49,-16 + 1525: 48,-16 + 1526: 47,-16 + 1538: 47,-15 + 1539: 47,-14 + 1540: 47,-13 + 1541: 47,-12 + 1542: 47,-11 + 1543: 47,-10 + 1568: 40,-24 + 1570: 42,-24 + 1587: 39,-25 + 1588: 42,-25 + 1589: 42,-26 + 1590: 42,-28 + 1591: 42,-29 + 1592: 42,-30 + 1622: 38,-35 + 1644: 38,-31 + 1645: 37,-31 + 1646: 36,-31 + 1647: 35,-31 + 1648: 34,-31 + 1649: 33,-31 + 1650: 32,-31 + 1651: 31,-31 + 1652: 30,-31 + 1662: 40,-32 + 1675: 44,-32 + 1676: 43,-32 + 1677: 42,-32 + 1678: 44,-33 + 1679: 44,-34 + 1680: 43,-35 + 1681: 43,-36 + 1690: 39,-37 + 1698: 43,-39 + 1699: 43,-40 + 1700: 43,-41 + 1701: 43,-42 + 1719: 40,-39 + 1722: 39,-39 + 1730: 37,-42 + 2724: 54,-10 + 2840: 40,-25 + 2846: 42,-23 + 2848: 42,-22 + 3456: 54,-19 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 1757: 6,38 - 1758: 5,38 - 1759: 4,38 - 1760: 8,38 - 1761: 8,37 - 1762: 8,36 - 1763: 8,35 - 1764: 8,34 - 1765: 8,31 - 1766: 8,30 - 1811: 5,31 - 1832: 19,31 - 1847: 25,23 - 1848: 22,28 - 1849: 23,34 - 1850: 25,34 - 1851: 25,40 - 1852: 23,40 - 1866: 22,31 - 2496: 3,49 - 2500: 19,43 - 2513: 9,46 - 3062: 11,31 + 1755: 6,38 + 1756: 5,38 + 1757: 4,38 + 1758: 8,38 + 1759: 8,37 + 1760: 8,36 + 1761: 8,35 + 1762: 8,34 + 1763: 8,31 + 1764: 8,30 + 1809: 5,31 + 1830: 19,31 + 1845: 25,23 + 1846: 22,28 + 1847: 23,34 + 1848: 25,34 + 1849: 25,40 + 1850: 23,40 + 1864: 22,31 + 2494: 3,49 + 2498: 19,43 + 2511: 9,46 + 3060: 11,31 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 3488: -6,-29 + 3486: -6,-29 - node: color: '#00BEBE7F' id: BrickTileWhiteInnerNw decals: - 3199: -35,1 + 3197: -35,1 - node: color: '#4B709CFF' id: BrickTileWhiteInnerNw @@ -1445,209 +1445,209 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 734: -1,-39 + 732: -1,-39 - node: color: '#9FED58B3' id: BrickTileWhiteInnerNw decals: - 2539: -46,-31 + 2537: -46,-31 - node: color: '#A4610696' id: BrickTileWhiteInnerNw decals: - 1014: -48,-5 - 1015: -48,-5 + 1012: -48,-5 + 1013: -48,-5 - node: color: '#BC863FFF' id: BrickTileWhiteInnerNw decals: - 3241: -53,3 - 3242: -55,3 - 3243: -56,3 - 3244: -57,3 - 3245: -58,3 - 3246: -58,2 - 3247: -58,1 - 3248: -58,0 - 3249: -58,-1 - 3250: -58,-8 - 3251: -58,-9 - 3252: -58,-10 - 3253: -58,-11 - 3254: -58,-12 - 3255: -58,-13 - 3256: -58,-14 - 3257: -58,-15 - 3345: -47,-5 - 3353: -47,-2 - 3362: -50,-2 + 3239: -53,3 + 3240: -55,3 + 3241: -56,3 + 3242: -57,3 + 3243: -58,3 + 3244: -58,2 + 3245: -58,1 + 3246: -58,0 + 3247: -58,-1 + 3248: -58,-8 + 3249: -58,-9 + 3250: -58,-10 + 3251: -58,-11 + 3252: -58,-12 + 3253: -58,-13 + 3254: -58,-14 + 3255: -58,-15 + 3343: -47,-5 + 3351: -47,-2 + 3360: -50,-2 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 2080: 5,-45 - 2085: 5,-42 - 2086: 6,-42 - 2087: 7,-42 - 2088: 8,-42 - 2089: 9,-42 - 2090: 10,-42 - 2091: 11,-42 - 2092: 12,-42 - 2093: 13,-42 - 2094: 13,-41 - 2095: 13,-40 - 2096: 13,-38 - 2097: 13,-37 - 2098: 13,-36 - 2099: 13,-35 - 2100: 13,-34 - 2101: 14,-34 - 2102: 15,-34 - 2103: 17,-34 - 2137: 6,-34 - 2138: 10,-34 - 2235: 9,-39 - 2274: -9,-55 - 2275: -9,-53 - 2276: -9,-52 - 2277: -9,-51 - 2278: -9,-50 - 2279: -9,-48 - 2280: -9,-47 - 2281: -9,-46 - 2282: -9,-44 - 2283: -9,-43 - 2284: -9,-42 - 2285: -8,-42 - 2286: -7,-42 - 2312: -3,-49 - 2313: -4,-49 - 2314: -5,-49 - 2315: -6,-49 - 2353: -1,-48 - 2867: 18,-43 - 2868: 19,-43 - 2869: 20,-43 - 2870: 21,-43 - 2964: 16,-42 + 2078: 5,-45 + 2083: 5,-42 + 2084: 6,-42 + 2085: 7,-42 + 2086: 8,-42 + 2087: 9,-42 + 2088: 10,-42 + 2089: 11,-42 + 2090: 12,-42 + 2091: 13,-42 + 2092: 13,-41 + 2093: 13,-40 + 2094: 13,-38 + 2095: 13,-37 + 2096: 13,-36 + 2097: 13,-35 + 2098: 13,-34 + 2099: 14,-34 + 2100: 15,-34 + 2101: 17,-34 + 2135: 6,-34 + 2136: 10,-34 + 2233: 9,-39 + 2272: -9,-55 + 2273: -9,-53 + 2274: -9,-52 + 2275: -9,-51 + 2276: -9,-50 + 2277: -9,-48 + 2278: -9,-47 + 2279: -9,-46 + 2280: -9,-44 + 2281: -9,-43 + 2282: -9,-42 + 2283: -8,-42 + 2284: -7,-42 + 2310: -3,-49 + 2311: -4,-49 + 2312: -5,-49 + 2313: -6,-49 + 2351: -1,-48 + 2865: 18,-43 + 2866: 19,-43 + 2867: 20,-43 + 2868: 21,-43 + 2962: 16,-42 - node: color: '#D4D4D428' id: BrickTileWhiteInnerNw decals: - 1365: 33,-3 + 1363: 33,-3 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 1398: 48,-6 - 1399: 48,-7 - 1400: 48,-8 - 1401: 47,-8 - 1402: 46,-8 - 1403: 46,-9 - 1404: 46,-10 - 1405: 46,-11 - 1406: 46,-12 - 1407: 46,-13 - 1408: 46,-14 - 1409: 46,-15 - 1418: 54,-8 - 1419: 53,-8 - 1422: 50,-6 - 1434: 52,-6 - 1452: 30,-11 - 1453: 30,-12 - 1454: 30,-13 - 1472: 39,-19 - 1475: 37,-18 - 1476: 37,-17 - 1477: 37,-16 - 1478: 37,-15 - 1479: 37,-14 - 1488: 31,-11 - 1489: 33,-11 - 1491: 34,-11 - 1492: 35,-11 - 1493: 36,-11 - 1494: 37,-11 - 1495: 39,-11 - 1529: 48,-16 - 1530: 49,-16 - 1531: 51,-16 - 1532: 52,-16 - 1533: 53,-15 - 1534: 53,-14 - 1535: 53,-13 - 1536: 53,-12 - 1537: 53,-11 - 1538: 53,-10 - 1539: 53,-16 - 1571: 42,-24 - 1573: 40,-24 - 1574: 40,-25 - 1575: 39,-25 - 1576: 39,-26 - 1577: 39,-27 - 1578: 39,-28 - 1579: 39,-29 - 1580: 40,-30 - 1622: 30,-34 - 1625: 40,-35 - 1637: 30,-35 - 1655: 30,-31 - 1656: 31,-31 - 1657: 32,-31 - 1658: 33,-31 - 1659: 34,-31 - 1660: 35,-31 - 1661: 36,-31 - 1662: 37,-31 - 1663: 38,-31 - 1665: 42,-32 - 1666: 43,-32 - 1667: 44,-32 - 1668: 40,-36 - 1669: 40,-37 - 1670: 39,-37 - 1711: 39,-42 - 1712: 39,-40 - 1713: 43,-39 - 1722: 40,-39 - 1723: 39,-39 - 2841: 42,-25 - 2846: 40,-23 - 2856: 40,-19 - 2857: 40,-20 + 1396: 48,-6 + 1397: 48,-7 + 1398: 48,-8 + 1399: 47,-8 + 1400: 46,-8 + 1401: 46,-9 + 1402: 46,-10 + 1403: 46,-11 + 1404: 46,-12 + 1405: 46,-13 + 1406: 46,-14 + 1407: 46,-15 + 1416: 54,-8 + 1417: 53,-8 + 1420: 50,-6 + 1432: 52,-6 + 1450: 30,-11 + 1451: 30,-12 + 1452: 30,-13 + 1470: 39,-19 + 1473: 37,-18 + 1474: 37,-17 + 1475: 37,-16 + 1476: 37,-15 + 1477: 37,-14 + 1486: 31,-11 + 1487: 33,-11 + 1489: 34,-11 + 1490: 35,-11 + 1491: 36,-11 + 1492: 37,-11 + 1493: 39,-11 + 1527: 48,-16 + 1528: 49,-16 + 1529: 51,-16 + 1530: 52,-16 + 1531: 53,-15 + 1532: 53,-14 + 1533: 53,-13 + 1534: 53,-12 + 1535: 53,-11 + 1536: 53,-10 + 1537: 53,-16 + 1569: 42,-24 + 1571: 40,-24 + 1572: 40,-25 + 1573: 39,-25 + 1574: 39,-26 + 1575: 39,-27 + 1576: 39,-28 + 1577: 39,-29 + 1578: 40,-30 + 1620: 30,-34 + 1623: 40,-35 + 1635: 30,-35 + 1653: 30,-31 + 1654: 31,-31 + 1655: 32,-31 + 1656: 33,-31 + 1657: 34,-31 + 1658: 35,-31 + 1659: 36,-31 + 1660: 37,-31 + 1661: 38,-31 + 1663: 42,-32 + 1664: 43,-32 + 1665: 44,-32 + 1666: 40,-36 + 1667: 40,-37 + 1668: 39,-37 + 1709: 39,-42 + 1710: 39,-40 + 1711: 43,-39 + 1720: 40,-39 + 1721: 39,-39 + 2839: 42,-25 + 2844: 40,-23 + 2854: 40,-19 + 2855: 40,-20 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 1778: 8,38 - 1779: 6,38 - 1780: 5,38 - 1781: 4,38 - 1782: 4,37 - 1783: 4,34 - 1784: 4,31 - 1785: 4,30 - 1812: 7,31 - 1833: 21,31 - 1853: 25,40 - 1854: 27,40 - 1855: 27,34 - 1856: 25,28 - 1857: 25,34 - 1867: 28,31 - 2497: 5,49 - 2502: 20,43 - 2514: 17,46 - 3063: 18,31 + 1776: 8,38 + 1777: 6,38 + 1778: 5,38 + 1779: 4,38 + 1780: 4,37 + 1781: 4,34 + 1782: 4,31 + 1783: 4,30 + 1810: 7,31 + 1831: 21,31 + 1851: 25,40 + 1852: 27,40 + 1853: 27,34 + 1854: 25,28 + 1855: 25,34 + 1865: 28,31 + 2495: 5,49 + 2500: 20,43 + 2512: 17,46 + 3061: 18,31 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 1358: 33,-4 + 1356: 33,-4 - node: color: '#4B709CFF' id: BrickTileWhiteInnerSe @@ -1658,221 +1658,221 @@ entities: id: BrickTileWhiteInnerSe decals: 416: -18,-29 - 2385: 34,-38 + 2383: 34,-38 - node: color: '#80C71F80' id: BrickTileWhiteInnerSe decals: - 3452: 53,-19 + 3450: 53,-19 - node: color: '#8932B87F' id: BrickTileWhiteInnerSe decals: - 3450: 49,-19 + 3448: 49,-19 - node: color: '#9FED58B3' id: BrickTileWhiteInnerSe decals: - 2540: -48,-30 + 2538: -48,-30 - node: color: '#BC863FFF' id: BrickTileWhiteInnerSe decals: - 3258: -58,-15 - 3259: -57,-15 - 3260: -54,-15 - 3261: -53,-15 - 3262: -53,-13 - 3263: -53,-12 - 3264: -53,-11 - 3265: -53,-10 - 3266: -53,-9 - 3267: -53,-8 - 3268: -53,-7 - 3269: -53,-6 - 3270: -53,-4 - 3271: -53,-5 - 3272: -53,-3 - 3273: -53,-2 - 3274: -53,1 - 3275: -53,2 - 3276: -53,3 - 3292: -53,-15 + 3256: -58,-15 + 3257: -57,-15 + 3258: -54,-15 + 3259: -53,-15 + 3260: -53,-13 + 3261: -53,-12 + 3262: -53,-11 + 3263: -53,-10 + 3264: -53,-9 + 3265: -53,-8 + 3266: -53,-7 + 3267: -53,-6 + 3268: -53,-4 + 3269: -53,-5 + 3270: -53,-3 + 3271: -53,-2 + 3272: -53,1 + 3273: -53,2 + 3274: -53,3 + 3290: -53,-15 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 2075: 3,-45 - 2076: 3,-42 - 2136: 11,-38 - 2139: 21,-42 - 2140: 17,-36 - 2141: 17,-35 - 2142: 17,-34 - 2143: 21,-44 - 2144: 20,-44 - 2145: 19,-44 - 2146: 18,-44 - 2147: 18,-45 - 2148: 17,-45 - 2149: 16,-45 - 2150: 15,-45 - 2151: 14,-45 - 2152: 13,-45 - 2153: 13,-46 - 2154: 12,-46 - 2155: 11,-46 - 2156: 10,-46 - 2157: 9,-46 - 2158: 8,-46 - 2159: 8,-47 - 2160: 5,-47 - 2161: 6,-47 - 2162: 7,-47 - 2236: 5,-35 - 2261: -3,-55 - 2262: -3,-54 - 2263: -3,-53 - 2264: -3,-52 - 2265: -3,-51 - 2266: -3,-50 - 2267: -3,-49 - 2268: -4,-55 - 2269: -5,-55 - 2270: -6,-55 - 2271: -7,-55 - 2272: -8,-55 - 2273: -9,-55 - 2291: -7,-43 - 2292: -7,-42 - 2293: -7,-45 - 2294: -7,-46 - 2295: -7,-48 - 2862: 17,-40 - 2874: 17,-42 - 2875: 17,-39 - 2876: 17,-38 - 2877: 17,-37 - 2965: 14,-39 + 2073: 3,-45 + 2074: 3,-42 + 2134: 11,-38 + 2137: 21,-42 + 2138: 17,-36 + 2139: 17,-35 + 2140: 17,-34 + 2141: 21,-44 + 2142: 20,-44 + 2143: 19,-44 + 2144: 18,-44 + 2145: 18,-45 + 2146: 17,-45 + 2147: 16,-45 + 2148: 15,-45 + 2149: 14,-45 + 2150: 13,-45 + 2151: 13,-46 + 2152: 12,-46 + 2153: 11,-46 + 2154: 10,-46 + 2155: 9,-46 + 2156: 8,-46 + 2157: 8,-47 + 2158: 5,-47 + 2159: 6,-47 + 2160: 7,-47 + 2234: 5,-35 + 2259: -3,-55 + 2260: -3,-54 + 2261: -3,-53 + 2262: -3,-52 + 2263: -3,-51 + 2264: -3,-50 + 2265: -3,-49 + 2266: -4,-55 + 2267: -5,-55 + 2268: -6,-55 + 2269: -7,-55 + 2270: -8,-55 + 2271: -9,-55 + 2289: -7,-43 + 2290: -7,-42 + 2291: -7,-45 + 2292: -7,-46 + 2293: -7,-48 + 2860: 17,-40 + 2872: 17,-42 + 2873: 17,-39 + 2874: 17,-38 + 2875: 17,-37 + 2963: 14,-39 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1361: 31,-9 - 1410: 54,-8 - 1411: 54,-9 - 1412: 54,-13 - 1413: 54,-14 - 1414: 54,-15 - 1415: 54,-16 - 1416: 54,-17 - 1417: 54,-18 - 1469: 42,-21 - 1470: 42,-20 - 1471: 42,-19 - 1473: 38,-18 - 1474: 37,-18 - 1482: 34,-13 - 1483: 33,-13 - 1484: 32,-13 - 1485: 30,-13 - 1498: 40,-11 - 1499: 40,-12 - 1500: 40,-13 - 1501: 40,-14 - 1513: 47,-15 - 1514: 47,-14 - 1515: 47,-13 - 1516: 47,-12 - 1517: 47,-11 - 1518: 47,-10 - 1519: 47,-9 - 1520: 48,-9 - 1521: 49,-9 - 1548: 51,-9 - 1549: 52,-9 - 1587: 39,-29 - 1597: 40,-30 - 1598: 42,-30 - 1599: 42,-29 - 1600: 42,-28 - 1601: 42,-26 - 1602: 42,-25 - 1603: 42,-24 - 1620: 28,-31 - 1623: 38,-31 - 1626: 38,-35 - 1638: 30,-35 - 1639: 31,-35 - 1640: 32,-35 - 1641: 33,-35 - 1642: 34,-35 - 1643: 35,-35 - 1644: 36,-35 - 1645: 37,-35 - 1671: 43,-36 - 1672: 43,-35 - 1673: 43,-34 - 1674: 44,-34 - 1675: 44,-33 - 1676: 44,-32 - 1689: 40,-37 - 1690: 39,-37 - 1691: 42,-37 - 1704: 39,-42 - 1705: 40,-42 - 1706: 41,-42 - 1707: 43,-42 - 1708: 43,-41 - 1709: 43,-40 - 1710: 43,-39 - 1733: 37,-40 - 2727: 54,-12 - 2844: 40,-23 - 2847: 42,-23 - 2849: 42,-22 - 2855: 39,-18 - 3456: 52,-7 - 3457: 52,-6 + 1359: 31,-9 + 1408: 54,-8 + 1409: 54,-9 + 1410: 54,-13 + 1411: 54,-14 + 1412: 54,-15 + 1413: 54,-16 + 1414: 54,-17 + 1415: 54,-18 + 1467: 42,-21 + 1468: 42,-20 + 1469: 42,-19 + 1471: 38,-18 + 1472: 37,-18 + 1480: 34,-13 + 1481: 33,-13 + 1482: 32,-13 + 1483: 30,-13 + 1496: 40,-11 + 1497: 40,-12 + 1498: 40,-13 + 1499: 40,-14 + 1511: 47,-15 + 1512: 47,-14 + 1513: 47,-13 + 1514: 47,-12 + 1515: 47,-11 + 1516: 47,-10 + 1517: 47,-9 + 1518: 48,-9 + 1519: 49,-9 + 1546: 51,-9 + 1547: 52,-9 + 1585: 39,-29 + 1595: 40,-30 + 1596: 42,-30 + 1597: 42,-29 + 1598: 42,-28 + 1599: 42,-26 + 1600: 42,-25 + 1601: 42,-24 + 1618: 28,-31 + 1621: 38,-31 + 1624: 38,-35 + 1636: 30,-35 + 1637: 31,-35 + 1638: 32,-35 + 1639: 33,-35 + 1640: 34,-35 + 1641: 35,-35 + 1642: 36,-35 + 1643: 37,-35 + 1669: 43,-36 + 1670: 43,-35 + 1671: 43,-34 + 1672: 44,-34 + 1673: 44,-33 + 1674: 44,-32 + 1687: 40,-37 + 1688: 39,-37 + 1689: 42,-37 + 1702: 39,-42 + 1703: 40,-42 + 1704: 41,-42 + 1705: 43,-42 + 1706: 43,-41 + 1707: 43,-40 + 1708: 43,-39 + 1731: 37,-40 + 2725: 54,-12 + 2842: 40,-23 + 2845: 42,-23 + 2847: 42,-22 + 2853: 39,-18 + 3454: 52,-7 + 3455: 52,-6 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 1767: 8,30 - 1768: 7,30 - 1769: 6,30 - 1770: 5,30 - 1771: 4,30 - 1772: 8,31 - 1773: 8,34 - 1774: 8,35 - 1775: 8,36 - 1776: 8,37 - 1777: 8,38 - 1814: 5,37 - 1831: 19,34 - 1858: 22,30 - 1859: 23,36 - 1860: 25,36 - 1861: 25,25 - 1869: 22,33 - 2498: 3,51 - 2501: 19,42 - 2512: 10,45 - 2526: 32,42 - 2527: 25,42 - 2529: 23,42 - 3064: 11,33 + 1765: 8,30 + 1766: 7,30 + 1767: 6,30 + 1768: 5,30 + 1769: 4,30 + 1770: 8,31 + 1771: 8,34 + 1772: 8,35 + 1773: 8,36 + 1774: 8,37 + 1775: 8,38 + 1812: 5,37 + 1829: 19,34 + 1856: 22,30 + 1857: 23,36 + 1858: 25,36 + 1859: 25,25 + 1867: 22,33 + 2496: 3,51 + 2499: 19,42 + 2510: 10,45 + 2524: 32,42 + 2525: 25,42 + 2527: 23,42 + 3062: 11,33 - node: color: '#F9801D7F' id: BrickTileWhiteInnerSe decals: - 3455: 45,-19 + 3453: 45,-19 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 3487: -6,-26 + 3485: -6,-26 - node: color: '#4B709CFF' id: BrickTileWhiteInnerSw @@ -1883,227 +1883,231 @@ entities: id: BrickTileWhiteInnerSw decals: 415: -20,-29 - 733: -1,-34 + 731: -1,-34 - node: color: '#80C71F80' id: BrickTileWhiteInnerSw decals: - 3453: 53,-19 + 3451: 53,-19 - node: color: '#8932B87F' id: BrickTileWhiteInnerSw decals: - 3449: 49,-19 + 3447: 49,-19 - node: color: '#9FED58B3' id: BrickTileWhiteInnerSw decals: - 2541: -46,-30 + 2539: -46,-30 - node: color: '#A4610696' id: BrickTileWhiteInnerSw decals: - 1016: -48,-2 - 1017: -48,-2 + 1014: -48,-2 + 1015: -48,-2 - node: color: '#BC863FFF' id: BrickTileWhiteInnerSw decals: - 3293: -53,-15 - 3294: -54,-15 - 3295: -57,-15 - 3296: -58,-15 - 3297: -58,-14 - 3298: -58,-13 - 3299: -58,-12 - 3300: -58,-11 - 3301: -58,-10 - 3302: -58,-9 - 3303: -58,-8 - 3304: -58,-7 - 3305: -58,0 - 3306: -58,1 - 3307: -58,2 - 3308: -58,3 - 3348: -47,2 - 3354: -47,-2 - 3361: -50,1 + 3291: -53,-15 + 3292: -54,-15 + 3293: -57,-15 + 3294: -58,-15 + 3295: -58,-14 + 3296: -58,-13 + 3297: -58,-12 + 3298: -58,-11 + 3299: -58,-10 + 3300: -58,-9 + 3301: -58,-8 + 3302: -58,-7 + 3303: -58,0 + 3304: -58,1 + 3305: -58,2 + 3306: -58,3 + 3346: -47,2 + 3352: -47,-2 + 3359: -50,1 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 2078: 5,-42 - 2079: 5,-45 - 2111: 13,-34 - 2112: 13,-35 - 2113: 13,-36 - 2114: 13,-37 - 2115: 13,-38 - 2116: 13,-40 - 2117: 13,-41 - 2163: 6,-47 - 2164: 7,-47 - 2165: 8,-47 - 2166: 9,-46 - 2169: 10,-46 - 2170: 11,-46 - 2171: 12,-46 - 2172: 13,-46 - 2174: 14,-45 - 2175: 16,-45 - 2176: 15,-45 - 2177: 17,-45 - 2178: 18,-45 - 2179: 19,-44 - 2180: 20,-44 - 2181: 21,-44 - 2233: 9,-35 - 2242: -9,-48 - 2243: -5,-46 - 2244: -9,-47 - 2245: -9,-46 - 2246: -9,-44 - 2247: -9,-43 - 2248: -9,-42 - 2249: -9,-50 - 2250: -9,-51 - 2251: -9,-52 - 2252: -9,-53 - 2254: -9,-55 - 2255: -8,-55 - 2256: -7,-55 - 2257: -6,-55 - 2258: -5,-55 - 2259: -4,-55 - 2260: -3,-55 - 2349: -1,-42 - 2966: 16,-39 + 2076: 5,-42 + 2077: 5,-45 + 2109: 13,-34 + 2110: 13,-35 + 2111: 13,-36 + 2112: 13,-37 + 2113: 13,-38 + 2114: 13,-40 + 2115: 13,-41 + 2161: 6,-47 + 2162: 7,-47 + 2163: 8,-47 + 2164: 9,-46 + 2167: 10,-46 + 2168: 11,-46 + 2169: 12,-46 + 2170: 13,-46 + 2172: 14,-45 + 2173: 16,-45 + 2174: 15,-45 + 2175: 17,-45 + 2176: 18,-45 + 2177: 19,-44 + 2178: 20,-44 + 2179: 21,-44 + 2231: 9,-35 + 2240: -9,-48 + 2241: -5,-46 + 2242: -9,-47 + 2243: -9,-46 + 2244: -9,-44 + 2245: -9,-43 + 2246: -9,-42 + 2247: -9,-50 + 2248: -9,-51 + 2249: -9,-52 + 2250: -9,-53 + 2252: -9,-55 + 2253: -8,-55 + 2254: -7,-55 + 2255: -6,-55 + 2256: -5,-55 + 2257: -4,-55 + 2258: -3,-55 + 2347: -1,-42 + 2964: 16,-39 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 1360: 33,-9 - 1423: 48,-7 - 1424: 48,-6 - 1425: 46,-8 - 1426: 46,-9 - 1427: 46,-10 - 1428: 46,-11 - 1429: 46,-12 - 1430: 46,-13 - 1431: 46,-14 - 1455: 30,-13 - 1456: 32,-13 - 1457: 33,-13 - 1458: 34,-13 - 1459: 36,-13 - 1460: 37,-13 - 1461: 37,-14 - 1462: 37,-15 - 1463: 37,-16 - 1464: 37,-17 - 1465: 37,-18 - 1466: 38,-18 - 1467: 39,-18 - 1468: 39,-19 - 1486: 30,-12 - 1487: 30,-11 - 1504: 51,-9 - 1505: 52,-9 - 1506: 53,-9 - 1507: 53,-10 - 1508: 53,-11 - 1509: 53,-12 - 1510: 53,-13 - 1511: 53,-14 - 1512: 53,-15 - 1546: 48,-9 - 1547: 49,-9 - 1581: 40,-24 - 1582: 39,-25 - 1583: 39,-26 - 1584: 39,-27 - 1585: 39,-28 - 1586: 39,-29 - 1588: 40,-29 - 1595: 42,-30 - 1596: 40,-30 - 1621: 30,-31 - 1627: 38,-35 - 1628: 37,-35 - 1629: 36,-35 - 1630: 35,-35 - 1631: 34,-35 - 1632: 33,-35 - 1633: 32,-35 - 1634: 31,-35 - 1635: 30,-35 - 1636: 30,-34 - 1684: 44,-34 - 1685: 43,-37 - 1686: 42,-37 - 1687: 40,-37 - 1688: 39,-37 - 1693: 40,-35 - 1694: 40,-36 - 1695: 43,-42 - 1696: 41,-42 - 1697: 40,-42 - 1698: 39,-42 - 1699: 39,-40 - 1719: 42,-41 - 1725: 39,-39 - 2843: 42,-23 - 2845: 40,-23 - 2852: 40,-20 - 2853: 40,-19 - 2854: 40,-18 + 1358: 33,-9 + 1421: 48,-7 + 1422: 48,-6 + 1423: 46,-8 + 1424: 46,-9 + 1425: 46,-10 + 1426: 46,-11 + 1427: 46,-12 + 1428: 46,-13 + 1429: 46,-14 + 1453: 30,-13 + 1454: 32,-13 + 1455: 33,-13 + 1456: 34,-13 + 1457: 36,-13 + 1458: 37,-13 + 1459: 37,-14 + 1460: 37,-15 + 1461: 37,-16 + 1462: 37,-17 + 1463: 37,-18 + 1464: 38,-18 + 1465: 39,-18 + 1466: 39,-19 + 1484: 30,-12 + 1485: 30,-11 + 1502: 51,-9 + 1503: 52,-9 + 1504: 53,-9 + 1505: 53,-10 + 1506: 53,-11 + 1507: 53,-12 + 1508: 53,-13 + 1509: 53,-14 + 1510: 53,-15 + 1544: 48,-9 + 1545: 49,-9 + 1579: 40,-24 + 1580: 39,-25 + 1581: 39,-26 + 1582: 39,-27 + 1583: 39,-28 + 1584: 39,-29 + 1586: 40,-29 + 1593: 42,-30 + 1594: 40,-30 + 1619: 30,-31 + 1625: 38,-35 + 1626: 37,-35 + 1627: 36,-35 + 1628: 35,-35 + 1629: 34,-35 + 1630: 33,-35 + 1631: 32,-35 + 1632: 31,-35 + 1633: 30,-35 + 1634: 30,-34 + 1682: 44,-34 + 1683: 43,-37 + 1684: 42,-37 + 1685: 40,-37 + 1686: 39,-37 + 1691: 40,-35 + 1692: 40,-36 + 1693: 43,-42 + 1694: 41,-42 + 1695: 40,-42 + 1696: 39,-42 + 1697: 39,-40 + 1717: 42,-41 + 1723: 39,-39 + 2841: 42,-23 + 2843: 40,-23 + 2850: 40,-20 + 2851: 40,-19 + 2852: 40,-18 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 1790: 4,37 - 1791: 4,34 - 1792: 4,30 - 1793: 5,30 - 1794: 6,30 - 1795: 7,30 - 1796: 8,30 - 1797: 4,31 - 1798: 4,38 - 1813: 7,37 - 1821: 10,34 - 1830: 21,34 - 1862: 25,30 - 1863: 25,36 - 1864: 27,36 - 1865: 27,42 - 1868: 28,33 - 1883: 35,42 - 2499: 5,51 - 2503: 20,42 - 2528: 25,42 - 3065: 18,33 - 3134: 17,45 + 1788: 4,37 + 1789: 4,34 + 1790: 4,30 + 1791: 5,30 + 1792: 6,30 + 1793: 7,30 + 1794: 8,30 + 1795: 4,31 + 1796: 4,38 + 1811: 7,37 + 1819: 10,34 + 1828: 21,34 + 1860: 25,30 + 1861: 25,36 + 1862: 27,36 + 1863: 27,42 + 1866: 28,33 + 1881: 35,42 + 2497: 5,51 + 2501: 20,42 + 2526: 25,42 + 3063: 18,33 + 3132: 17,45 - node: color: '#F9801D7F' id: BrickTileWhiteInnerSw decals: - 3454: 45,-19 + 3452: 45,-19 - node: color: '#00BEBE7F' id: BrickTileWhiteLineE decals: - 3157: -27,40 - 3158: -27,41 - 3159: -27,42 + 3155: -27,40 + 3156: -27,41 + 3157: -27,42 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 1354: 33,-5 - 1355: 33,-7 - 1356: 33,-6 + 1352: 33,-5 + 1353: 33,-7 + 1354: 33,-6 + 3594: 26,13 + 3595: 26,14 + 3608: 33,13 + 3609: 33,14 - node: color: '#4B709CFF' id: BrickTileWhiteLineE @@ -2124,153 +2128,159 @@ entities: 507: -29,-29 508: -29,-28 509: -29,-27 - 562: -24,-40 - 563: -24,-41 - 2372: 34,-39 - 2373: 34,-40 - 2374: 34,-41 - 2386: 28,-36 + 560: -24,-40 + 561: -24,-41 + 2370: 34,-39 + 2371: 34,-40 + 2372: 34,-41 + 2384: 28,-36 - node: color: '#765428FF' id: BrickTileWhiteLineE decals: - 3319: -53,-18 - 3320: -53,-19 - 3321: -53,-20 - 3322: -53,-21 - 3323: -53,-22 - 3324: -53,-23 + 3317: -53,-18 + 3318: -53,-19 + 3319: -53,-20 + 3320: -53,-21 + 3321: -53,-22 + 3322: -53,-23 - node: color: '#9FED58B3' id: BrickTileWhiteLineE decals: - 2543: -45,-31 - 2544: -45,-30 + 2541: -45,-31 + 2542: -45,-30 - node: color: '#BC863FFF' id: BrickTileWhiteLineE decals: - 3216: -53,-14 - 3217: -53,-1 - 3218: -53,0 - 3224: -49,2 - 3225: -49,1 - 3226: -49,0 - 3227: -49,-1 - 3228: -49,-2 - 3229: -49,-4 - 3356: -49,-3 + 3214: -53,-14 + 3215: -53,-1 + 3216: -53,0 + 3222: -49,2 + 3223: -49,1 + 3224: -49,0 + 3225: -49,-1 + 3226: -49,-2 + 3227: -49,-4 + 3354: -49,-3 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 843: -11,-50 - 844: -11,-49 - 845: -11,-48 - 2070: 3,-43 - 2071: 3,-44 - 2072: 3,-46 - 2073: 3,-47 - 2127: 17,-41 - 2128: 21,-43 - 2129: 11,-39 - 2197: 12,-44 - 2198: 16,-43 - 2199: 16,-42 - 2200: 16,-41 - 2201: 16,-40 - 2202: 16,-39 - 2203: 16,-38 - 2204: 16,-37 - 2205: 16,-36 - 2227: 5,-38 - 2228: 5,-37 - 2229: 5,-36 - 2237: -7,-47 - 2239: -7,-44 - 2299: -11,-45 - 2343: -3,-47 - 2344: -3,-46 - 2959: 14,-41 - 2960: 14,-40 + 841: -11,-50 + 842: -11,-49 + 843: -11,-48 + 2068: 3,-43 + 2069: 3,-44 + 2070: 3,-46 + 2071: 3,-47 + 2125: 17,-41 + 2126: 21,-43 + 2127: 11,-39 + 2195: 12,-44 + 2196: 16,-43 + 2197: 16,-42 + 2198: 16,-41 + 2199: 16,-40 + 2200: 16,-39 + 2201: 16,-38 + 2202: 16,-37 + 2203: 16,-36 + 2225: 5,-38 + 2226: 5,-37 + 2227: 5,-36 + 2235: -7,-47 + 2237: -7,-44 + 2297: -11,-45 + 2341: -3,-47 + 2342: -3,-46 + 2957: 14,-41 + 2958: 14,-40 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 1604: 42,-27 - 1605: 43,-37 - 1608: 37,-41 - 1609: 38,-34 - 1610: 38,-33 - 1611: 38,-32 - 1617: 27,-27 - 1618: 28,-32 - 1619: 28,-33 + 1602: 42,-27 + 1603: 43,-37 + 1606: 37,-41 + 1607: 38,-34 + 1608: 38,-33 + 1609: 38,-32 + 1615: 27,-27 + 1616: 28,-32 + 1617: 28,-33 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 1755: 8,32 - 1756: 8,33 - 1799: 5,32 - 1800: 5,33 - 1801: 5,34 - 1802: 5,35 - 1803: 5,36 - 1817: 17,30 - 1826: 19,32 - 1827: 19,33 - 1880: 22,32 - 2509: 10,44 - 2510: 10,43 - 2511: 10,42 - 2515: 19,44 - 2516: 19,45 - 2517: 20,42 - 2518: 20,43 - 3053: 11,32 - 3080: 17,34 - 3105: -2,41 - 3106: -2,42 - 3120: 10,41 - 3125: 19,40 - 3126: 19,41 + 1753: 8,32 + 1754: 8,33 + 1797: 5,32 + 1798: 5,33 + 1799: 5,34 + 1800: 5,35 + 1801: 5,36 + 1815: 17,30 + 1824: 19,32 + 1825: 19,33 + 1878: 22,32 + 2507: 10,44 + 2508: 10,43 + 2509: 10,42 + 2513: 19,44 + 2514: 19,45 + 2515: 20,42 + 2516: 20,43 + 3051: 11,32 + 3078: 17,34 + 3103: -2,41 + 3104: -2,42 + 3118: 10,41 + 3123: 19,40 + 3124: 19,41 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 577: -30,-28 - 3489: -6,-28 - 3490: -6,-27 + 575: -30,-28 + 3487: -6,-28 + 3488: -6,-27 - node: color: '#00BEBE7F' id: BrickTileWhiteLineN decals: - 3160: -28,43 - 3161: -29,43 - 3162: -30,43 - 3163: -31,43 - 3164: -32,43 - 3165: -33,43 - 3191: -43,1 - 3192: -42,1 - 3193: -41,1 - 3194: -40,1 - 3195: -39,1 - 3196: -38,1 - 3197: -37,1 - 3198: -36,1 - 3202: -43,5 - 3203: -41,4 - 3204: -40,4 - 3205: -39,4 - 3206: -38,4 - 3207: -37,4 + 3158: -28,43 + 3159: -29,43 + 3160: -30,43 + 3161: -31,43 + 3162: -32,43 + 3163: -33,43 + 3189: -43,1 + 3190: -42,1 + 3191: -41,1 + 3192: -40,1 + 3193: -39,1 + 3194: -38,1 + 3195: -37,1 + 3196: -36,1 + 3200: -43,5 + 3201: -41,4 + 3202: -40,4 + 3203: -39,4 + 3204: -38,4 + 3205: -37,4 - node: color: '#169C9CFF' id: BrickTileWhiteLineN decals: 402: -16,-30 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 3610: 30,16 + 3611: 31,16 - node: color: '#4B709CFF' id: BrickTileWhiteLineN @@ -2298,111 +2308,111 @@ entities: 510: -30,-26 511: -31,-26 512: -32,-26 - 559: -27,-39 - 560: -26,-39 - 561: -25,-39 - 2362: 29,-37 - 2363: 30,-37 - 2364: 31,-37 - 2365: 32,-37 - 2366: 33,-37 - 2367: 34,-37 - 2368: 35,-37 - 2369: 36,-37 + 557: -27,-39 + 558: -26,-39 + 559: -25,-39 + 2360: 29,-37 + 2361: 30,-37 + 2362: 31,-37 + 2363: 32,-37 + 2364: 33,-37 + 2365: 34,-37 + 2366: 35,-37 + 2367: 36,-37 - node: color: '#765428FF' id: BrickTileWhiteLineN decals: - 3313: -55,-17 - 3314: -56,-17 - 3315: -57,-17 - 3316: -54,-17 + 3311: -55,-17 + 3312: -56,-17 + 3313: -57,-17 + 3314: -54,-17 - node: color: '#9FED58B3' id: BrickTileWhiteLineN decals: - 2531: -47,-31 - 2537: -47,-30 + 2529: -47,-31 + 2535: -47,-30 - node: color: '#BC863FFF' id: BrickTileWhiteLineN decals: - 3213: -54,3 - 3223: -50,3 + 3211: -54,3 + 3221: -50,3 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 834: -13,-47 - 835: -12,-47 - 2130: 16,-34 - 2131: 9,-34 - 2132: 5,-34 - 2191: 7,-43 - 2192: 8,-43 - 2193: 9,-43 - 2194: 10,-43 - 2195: 11,-43 - 2196: 15,-35 - 2224: 6,-39 - 2225: 7,-39 - 2226: 8,-39 + 832: -13,-47 + 833: -12,-47 + 2128: 16,-34 + 2129: 9,-34 + 2130: 5,-34 + 2189: 7,-43 + 2190: 8,-43 + 2191: 9,-43 + 2192: 10,-43 + 2193: 11,-43 + 2194: 15,-35 + 2222: 6,-39 + 2223: 7,-39 + 2224: 8,-39 - node: color: '#D4D4D428' id: BrickTileWhiteLineN decals: - 1362: 31,-3 - 1363: 32,-3 + 1360: 31,-3 + 1361: 32,-3 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1432: 49,-6 - 1433: 51,-6 - 1490: 32,-11 - 1496: 38,-11 - 1497: 40,-11 - 1523: 50,-16 - 1554: 50,-3 - 1568: 41,-32 - 1717: 41,-41 - 1720: 41,-39 - 1731: 41,-40 - 2840: 41,-25 + 1430: 49,-6 + 1431: 51,-6 + 1488: 32,-11 + 1494: 38,-11 + 1495: 40,-11 + 1521: 50,-16 + 1552: 50,-3 + 1566: 41,-32 + 1715: 41,-41 + 1718: 41,-39 + 1729: 41,-40 + 2838: 41,-25 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 1754: 7,38 - 1804: 6,31 - 1834: 23,28 - 1835: 24,28 - 1842: 24,40 - 1843: 26,40 - 1844: 24,34 - 1845: 26,34 - 1846: 26,23 - 1870: 23,31 - 1871: 24,31 - 1872: 25,31 - 1873: 26,31 - 1874: 27,31 - 3041: 17,31 - 3042: 16,31 - 3043: 15,31 - 3044: 14,31 - 3045: 13,31 - 3046: 12,31 - 3056: 12,33 - 3057: 13,33 - 3058: 14,33 - 3059: 15,33 - 3060: 16,33 - 3061: 17,33 - 3115: -6,43 - 3116: -5,43 - 3117: -4,43 - 3118: -3,43 + 1752: 7,38 + 1802: 6,31 + 1832: 23,28 + 1833: 24,28 + 1840: 24,40 + 1841: 26,40 + 1842: 24,34 + 1843: 26,34 + 1844: 26,23 + 1868: 23,31 + 1869: 24,31 + 1870: 25,31 + 1871: 26,31 + 1872: 27,31 + 3039: 17,31 + 3040: 16,31 + 3041: 15,31 + 3042: 14,31 + 3043: 13,31 + 3044: 12,31 + 3054: 12,33 + 3055: 13,33 + 3056: 14,33 + 3057: 15,33 + 3058: 16,33 + 3059: 17,33 + 3113: -6,43 + 3114: -5,43 + 3115: -4,43 + 3116: -3,43 - node: color: '#F38BAAFF' id: BrickTileWhiteLineN @@ -2412,27 +2422,27 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 576: -31,-27 - 3481: -5,-29 - 3482: -4,-29 - 3483: -3,-29 + 574: -31,-27 + 3479: -5,-29 + 3480: -4,-29 + 3481: -3,-29 - node: color: '#00BEBE7F' id: BrickTileWhiteLineS decals: - 3151: -33,39 - 3152: -32,39 - 3153: -31,39 - 3154: -30,39 - 3155: -29,39 - 3156: -28,39 - 3184: -37,3 - 3185: -38,3 - 3186: -39,3 - 3187: -40,3 - 3188: -41,3 - 3189: -42,3 - 3190: -43,3 + 3149: -33,39 + 3150: -32,39 + 3151: -31,39 + 3152: -30,39 + 3153: -29,39 + 3154: -28,39 + 3182: -37,3 + 3183: -38,3 + 3184: -39,3 + 3185: -40,3 + 3186: -41,3 + 3187: -42,3 + 3188: -43,3 - node: color: '#169C9CFF' id: BrickTileWhiteLineS @@ -2469,120 +2479,119 @@ entities: 496: -26,-30 516: -32,-30 517: -31,-30 - 518: -30,-30 - 519: -30,-30 - 564: -25,-42 - 565: -26,-42 - 566: -27,-42 - 2370: 36,-38 - 2371: 35,-38 - 2375: 33,-42 - 2376: 32,-42 - 2377: 31,-42 - 2378: 30,-42 - 2379: 29,-42 - 2380: 28,-42 + 562: -25,-42 + 563: -26,-42 + 564: -27,-42 + 2368: 36,-38 + 2369: 35,-38 + 2373: 33,-42 + 2374: 32,-42 + 2375: 31,-42 + 2376: 30,-42 + 2377: 29,-42 + 2378: 28,-42 + 3624: -30,-30 - node: color: '#765428FF' id: BrickTileWhiteLineS decals: - 3325: -54,-24 - 3326: -55,-24 - 3327: -56,-24 - 3328: -57,-24 + 3323: -54,-24 + 3324: -55,-24 + 3325: -56,-24 + 3326: -57,-24 - node: color: '#80C71F7F' id: BrickTileWhiteLineS decals: - 3438: 54,-19 - 3439: 52,-19 - 3440: 51,-19 + 3436: 54,-19 + 3437: 52,-19 + 3438: 51,-19 - node: color: '#8932B87F' id: BrickTileWhiteLineS decals: - 3441: 50,-19 - 3442: 48,-19 - 3443: 47,-19 + 3439: 50,-19 + 3440: 48,-19 + 3441: 47,-19 - node: color: '#9FED58B3' id: BrickTileWhiteLineS decals: - 2536: -47,-30 - 2538: -47,-31 + 2534: -47,-30 + 2536: -47,-31 - node: color: '#BC863FFF' id: BrickTileWhiteLineS decals: - 3214: -56,-15 - 3215: -55,-15 - 3232: -50,-5 + 3212: -56,-15 + 3213: -55,-15 + 3230: -50,-5 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 846: -12,-51 - 847: -13,-51 - 2215: 7,-45 - 2216: 8,-45 - 2217: 9,-45 - 2218: 10,-45 - 2219: 11,-45 - 2220: 15,-44 - 2221: 6,-35 - 2222: 7,-35 - 2223: 8,-35 + 844: -12,-51 + 845: -13,-51 + 2213: 7,-45 + 2214: 8,-45 + 2215: 9,-45 + 2216: 10,-45 + 2217: 11,-45 + 2218: 15,-44 + 2219: 6,-35 + 2220: 7,-35 + 2221: 8,-35 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1359: 32,-9 - 1480: 35,-13 - 1481: 31,-13 - 1522: 50,-9 - 1555: 50,-4 - 1569: 41,-30 - 1606: 41,-37 - 1718: 41,-41 - 2839: 41,-23 + 1357: 32,-9 + 1478: 35,-13 + 1479: 31,-13 + 1520: 50,-9 + 1553: 50,-4 + 1567: 41,-30 + 1604: 41,-37 + 1716: 41,-41 + 2837: 41,-23 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 1810: 6,37 - 1836: 23,30 - 1837: 24,30 - 1838: 26,25 - 1839: 26,36 - 1840: 24,36 - 1841: 26,42 - 1875: 23,33 - 1876: 24,33 - 1877: 25,33 - 1878: 26,33 - 1879: 27,33 - 1882: 34,42 - 2504: 15,45 - 2505: 14,45 - 2506: 13,45 - 2507: 12,45 - 2508: 11,45 - 2525: 33,42 - 2530: 24,42 - 3047: 12,33 - 3048: 13,33 - 3049: 14,33 - 3050: 15,33 - 3051: 16,33 - 3052: 17,33 - 3107: -3,40 - 3108: -4,40 - 3109: -5,40 - 3113: -6,40 - 3121: 9,40 - 3122: 8,40 - 3127: 18,39 - 3133: 16,45 + 1808: 6,37 + 1834: 23,30 + 1835: 24,30 + 1836: 26,25 + 1837: 26,36 + 1838: 24,36 + 1839: 26,42 + 1873: 23,33 + 1874: 24,33 + 1875: 25,33 + 1876: 26,33 + 1877: 27,33 + 1880: 34,42 + 2502: 15,45 + 2503: 14,45 + 2504: 13,45 + 2505: 12,45 + 2506: 11,45 + 2523: 33,42 + 2528: 24,42 + 3045: 12,33 + 3046: 13,33 + 3047: 14,33 + 3048: 15,33 + 3049: 16,33 + 3050: 17,33 + 3105: -3,40 + 3106: -4,40 + 3107: -5,40 + 3111: -6,40 + 3119: 9,40 + 3120: 8,40 + 3125: 18,39 + 3131: 16,45 - node: color: '#F38BAAFF' id: BrickTileWhiteLineS @@ -2592,34 +2601,36 @@ entities: color: '#F9801D7F' id: BrickTileWhiteLineS decals: - 3444: 46,-19 - 3445: 44,-19 - 3446: 43,-19 + 3442: 46,-19 + 3443: 44,-19 + 3444: 43,-19 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 578: -31,-29 - 3484: -5,-26 - 3485: -4,-26 - 3486: -3,-26 + 576: -31,-29 + 3482: -5,-26 + 3483: -4,-26 + 3484: -3,-26 - node: color: '#00BEBE7F' id: BrickTileWhiteLineW decals: - 3166: -34,42 - 3167: -34,41 - 3168: -34,40 - 3201: -44,4 + 3164: -34,42 + 3165: -34,41 + 3166: -34,40 + 3199: -44,4 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 601: 21,6 - 602: 21,7 - 605: 20,6 - 606: 20,7 - 3212: -44,-10 + 599: 21,6 + 600: 21,7 + 603: 20,6 + 604: 20,7 + 3210: -44,-10 + 3596: 28,13 + 3597: 28,14 - node: color: '#4B709CFF' id: BrickTileWhiteLineW @@ -2640,517 +2651,517 @@ entities: 513: -33,-29 514: -33,-28 515: -33,-27 - 567: -28,-41 - 568: -28,-40 - 725: -2,-33 - 728: -2,-40 - 729: -1,-35 - 730: -1,-36 - 731: -1,-37 - 732: -1,-38 - 2354: 27,-41 - 2355: 27,-40 - 2356: 27,-39 - 2357: 27,-38 - 2358: 27,-37 - 2359: 27,-36 + 565: -28,-41 + 566: -28,-40 + 723: -2,-33 + 726: -2,-40 + 727: -1,-35 + 728: -1,-36 + 729: -1,-37 + 730: -1,-38 + 2352: 27,-41 + 2353: 27,-40 + 2354: 27,-39 + 2355: 27,-38 + 2356: 27,-37 + 2357: 27,-36 - node: color: '#765428FF' id: BrickTileWhiteLineW decals: - 3329: -58,-23 - 3330: -58,-22 - 3331: -58,-21 + 3327: -58,-23 + 3328: -58,-22 + 3329: -58,-21 - node: color: '#9FED58B3' id: BrickTileWhiteLineW decals: - 2545: -45,-31 - 2546: -45,-30 + 2543: -45,-31 + 2544: -45,-30 - node: color: '#BC863FFF' id: BrickTileWhiteLineW decals: - 3219: -51,-4 - 3220: -51,-3 - 3233: -47,-4 - 3234: -47,-3 - 3346: -47,0 - 3347: -47,1 - 3352: -47,-1 - 3355: -51,2 - 3359: -50,-1 - 3360: -50,0 + 3217: -51,-4 + 3218: -51,-3 + 3231: -47,-4 + 3232: -47,-3 + 3344: -47,0 + 3345: -47,1 + 3350: -47,-1 + 3353: -51,2 + 3357: -50,-1 + 3358: -50,0 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 840: -14,-50 - 841: -14,-49 - 842: -14,-48 - 2081: 5,-43 - 2082: 5,-44 - 2083: 5,-46 - 2084: 5,-47 - 2126: 13,-39 - 2206: 6,-44 - 2207: 14,-43 - 2208: 14,-42 - 2209: 14,-41 - 2210: 14,-39 - 2211: 14,-40 - 2212: 14,-38 - 2213: 14,-37 - 2214: 14,-36 - 2230: 9,-38 - 2231: 9,-37 - 2232: 9,-36 - 2238: -5,-47 - 2241: -9,-49 - 2253: -9,-54 - 2298: -9,-45 - 2345: -1,-46 - 2346: -1,-45 - 2347: -1,-44 - 2348: -1,-43 - 2352: -1,-47 - 2961: 16,-41 - 2962: 16,-40 + 838: -14,-50 + 839: -14,-49 + 840: -14,-48 + 2079: 5,-43 + 2080: 5,-44 + 2081: 5,-46 + 2082: 5,-47 + 2124: 13,-39 + 2204: 6,-44 + 2205: 14,-43 + 2206: 14,-42 + 2207: 14,-41 + 2208: 14,-39 + 2209: 14,-40 + 2210: 14,-38 + 2211: 14,-37 + 2212: 14,-36 + 2228: 9,-38 + 2229: 9,-37 + 2230: 9,-36 + 2236: -5,-47 + 2239: -9,-49 + 2251: -9,-54 + 2296: -9,-45 + 2343: -1,-46 + 2344: -1,-45 + 2345: -1,-44 + 2346: -1,-43 + 2350: -1,-47 + 2959: 16,-41 + 2960: 16,-40 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 1607: 39,-41 - 1612: 40,-34 - 1613: 40,-33 - 1614: 40,-32 - 1615: 30,-33 - 1616: 30,-32 - 2858: 40,-22 - 2859: 40,-21 + 1605: 39,-41 + 1610: 40,-34 + 1611: 40,-33 + 1612: 40,-32 + 1613: 30,-33 + 1614: 30,-32 + 2856: 40,-22 + 2857: 40,-21 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 1786: 4,32 - 1787: 4,33 - 1788: 4,35 - 1789: 4,36 - 1805: 7,32 - 1806: 7,33 - 1807: 7,34 - 1808: 7,35 - 1809: 7,36 - 1818: 12,30 - 1819: 10,33 - 1820: 10,32 - 1828: 21,32 - 1829: 21,33 - 1881: 28,32 - 3054: 18,32 - 3055: 12,34 - 3110: -7,41 - 3111: -7,42 - 3128: 17,40 - 3129: 17,41 - 3130: 17,42 - 3131: 17,43 - 3132: 17,44 + 1784: 4,32 + 1785: 4,33 + 1786: 4,35 + 1787: 4,36 + 1803: 7,32 + 1804: 7,33 + 1805: 7,34 + 1806: 7,35 + 1807: 7,36 + 1816: 12,30 + 1817: 10,33 + 1818: 10,32 + 1826: 21,32 + 1827: 21,33 + 1879: 28,32 + 3052: 18,32 + 3053: 12,34 + 3108: -7,41 + 3109: -7,42 + 3126: 17,40 + 3127: 17,41 + 3128: 17,42 + 3129: 17,43 + 3130: 17,44 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 579: -32,-28 - 580: -32,-28 + 577: -32,-28 + 578: -32,-28 - node: color: '#FFFFFFFF' id: BushAOne decals: - 2647: -12.173578,-13.16537 + 2645: -12.173578,-13.16537 - node: color: '#FFFFFFFF' id: BushAThree decals: - 2604: 7.063609,-17.083809 - 2648: -12.954828,-13.13412 - 2980: -13.009358,7.995878 - 2985: -15.09027,11.031727 + 2602: 7.063609,-17.083809 + 2646: -12.954828,-13.13412 + 2978: -13.009358,7.995878 + 2983: -15.09027,11.031727 - node: color: '#FFFFFFFF' id: BushATwo decals: - 2649: -12.996495,-12.238287 - 2650: -6.0969057,-13.717453 + 2647: -12.996495,-12.238287 + 2648: -6.0969057,-13.717453 - node: color: '#FFFFFFFF' id: BushCOne decals: - 2973: -11.007082,13.412277 + 2971: -11.007082,13.412277 - node: color: '#FFFFFFFF' id: BushCThree decals: - 2598: 17.014423,-8.300894 - 2634: -4.785802,3.4705331 + 2596: 17.014423,-8.300894 + 2632: -4.785802,3.4705331 - node: color: '#FFFFFFFF' id: BushCTwo decals: - 2653: -5.148989,-12.144537 + 2651: -5.148989,-12.144537 - node: color: '#FFFFFFFF' id: BushDTwo decals: - 2590: 17.163681,15.561111 - 2591: 3.516313,17.119299 + 2588: 17.163681,15.561111 + 2589: 3.516313,17.119299 - node: color: '#FFFFFFFF' id: Busha1 decals: - 2592: 4.90173,16.900549 - 2977: -13.092692,9.881294 + 2590: 4.90173,16.900549 + 2975: -13.092692,9.881294 - node: color: '#FFFFFFFF' id: Busha2 decals: - 2982: -13.96527,9.885894 - 2984: -14.642353,10.979644 + 2980: -13.96527,9.885894 + 2982: -14.642353,10.979644 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 2974: -10.975832,14.18311 - 2978: -13.092692,9.006294 + 2972: -10.975832,14.18311 + 2976: -13.092692,9.006294 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 2646: -12.183994,-14.061203 - 2975: -10.996666,15.02686 + 2644: -12.183994,-14.061203 + 2973: -10.996666,15.02686 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 2979: -13.009358,8.402128 - 2983: -14.017353,10.354644 + 2977: -13.009358,8.402128 + 2981: -14.017353,10.354644 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 2651: -5.1698227,-12.957037 - 2981: -14.02777,11.062977 + 2649: -5.1698227,-12.957037 + 2979: -14.02777,11.062977 - node: color: '#FFFFFFFF' id: Bushc3 decals: - 2589: 17.194931,12.9986105 - 2652: -8.055239,-11.332037 - 2976: -11.044625,12.930744 + 2587: 17.194931,12.9986105 + 2650: -8.055239,-11.332037 + 2974: -11.044625,12.930744 - node: color: '#FFFFFFFF' id: Bushe1 decals: - 2580: 6.2998166,3.7755318 - 2595: 17.076923,-7.467561 - 2596: 16.566507,-7.988394 - 2602: 7.2406926,-16.500475 - 2617: 3.5204434,-9.447139 - 2618: 3.2912767,-9.686723 - 2654: -8.044823,-11.092453 + 2578: 6.2998166,3.7755318 + 2593: 17.076923,-7.467561 + 2594: 16.566507,-7.988394 + 2600: 7.2406926,-16.500475 + 2615: 3.5204434,-9.447139 + 2616: 3.2912767,-9.686723 + 2652: -8.044823,-11.092453 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 2581: 6.6984973,3.4174294 - 2597: 17.014423,-8.030061 - 2611: 7.441076,6.766222 - 2971: -17.569584,14.99561 - 2994: -4.0134697,4.9046235 - 3476: 63.771957,-1.9947927 - 3480: 64.23029,-2.0052094 + 2579: 6.6984973,3.4174294 + 2595: 17.014423,-8.030061 + 2609: 7.441076,6.766222 + 2969: -17.569584,14.99561 + 2992: -4.0134697,4.9046235 + 3474: 63.771957,-1.9947927 + 3478: 64.23029,-2.0052094 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 2603: 6.6990256,-16.510893 - 3375: 58.245747,-2.973395 - 3376: 57.818665,-3.0463119 - 3377: 58.308247,-2.1817284 - 3475: 64.15737,-0.19270933 + 2601: 6.6990256,-16.510893 + 3373: 58.245747,-2.973395 + 3374: 57.818665,-3.0463119 + 3375: 58.308247,-2.1817284 + 3473: 64.15737,-0.19270933 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 1304: 57.84424,1.1426643 - 1305: 58.21924,0.9864143 - 1306: 57.885906,-2.0552526 - 1307: 58.15674,-1.5865024 - 1308: 57.90674,0.18433094 - 2628: 6.6556993,14.650438 - 2635: -4.7441354,3.6892834 - 2660: -12.329075,-5.2076516 - 2661: -11.683241,-5.540985 - 2995: -4.2530527,4.29004 - 3474: 63.792793,0.09895742 + 1302: 57.84424,1.1426643 + 1303: 58.21924,0.9864143 + 1304: 57.885906,-2.0552526 + 1305: 58.15674,-1.5865024 + 1306: 57.90674,0.18433094 + 2626: 6.6556993,14.650438 + 2633: -4.7441354,3.6892834 + 2658: -12.329075,-5.2076516 + 2659: -11.683241,-5.540985 + 2993: -4.2530527,4.29004 + 3472: 63.792793,0.09895742 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 1311: 58.167156,-0.24275243 - 3008: -4.922404,-3.8768375 + 1309: 58.167156,-0.24275243 + 3006: -4.922404,-3.8768375 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 1312: 57.833824,-0.37816906 - 3010: -4.4328203,-4.7726707 - 3011: -4.3255215,-5.3247385 + 1310: 57.833824,-0.37816906 + 3008: -4.4328203,-4.7726707 + 3009: -4.3255215,-5.3247385 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 2970: -17.132084,16.266443 - 3009: -4.3703203,-4.199754 - 3374: 57.943665,-2.723395 + 2968: -17.132084,16.266443 + 3007: -4.3703203,-4.199754 + 3372: 57.943665,-2.723395 - node: color: '#FFFFFFFF' id: Bushg1 decals: - 2599: 17.14984,-5.092561 - 2605: 8.53236,-17.187975 - 2639: 3.404969,-4.7533755 - 2986: -9.359586,2.9312673 + 2597: 17.14984,-5.092561 + 2603: 8.53236,-17.187975 + 2637: 3.404969,-4.7533755 + 2984: -9.359586,2.9312673 - node: color: '#FFFFFFFF' id: Bushg2 decals: - 2640: 4.175802,-4.0346255 - 2972: -16.8925,15.828943 + 2638: 4.175802,-4.0346255 + 2970: -16.8925,15.828943 - node: color: '#FFFFFFFF' id: Bushg3 decals: - 2559: -2.1416075,5.8916445 - 2560: -2.162441,14.072103 - 2561: 17.866562,15.155413 - 2562: 18.231146,11.999163 - 2563: 3.059716,-17.07088 - 2564: -4.1298733,-14.029394 - 2565: -2.3702574,-5.9809127 - 2566: -8.961391,-10.053829 - 2567: -17.146135,-6.1901164 + 2557: -2.1416075,5.8916445 + 2558: -2.162441,14.072103 + 2559: 17.866562,15.155413 + 2560: 18.231146,11.999163 + 2561: 3.059716,-17.07088 + 2562: -4.1298733,-14.029394 + 2563: -2.3702574,-5.9809127 + 2564: -8.961391,-10.053829 + 2565: -17.146135,-6.1901164 - node: color: '#FFFFFFFF' id: Bushg4 decals: - 2600: 17.160257,-5.6342273 - 2629: 7.2077823,13.712938 + 2598: 17.160257,-5.6342273 + 2627: 7.2077823,13.712938 - node: color: '#FFFFFFFF' id: Bushh1 decals: - 2577: 5.9211392,3.1419072 - 2582: 8.507914,15.796663 - 2583: 9.528748,15.46333 - 2993: -3.4732609,5.2424126 + 2575: 5.9211392,3.1419072 + 2580: 8.507914,15.796663 + 2581: 9.528748,15.46333 + 2991: -3.4732609,5.2424126 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 2578: 5.087806,3.9127407 - 2584: 8.528747,14.473747 - 2662: -13.162408,-5.0826516 - 2663: -14.037408,-5.988902 + 2576: 5.087806,3.9127407 + 2582: 8.528747,14.473747 + 2660: -13.162408,-5.0826516 + 2661: -14.037408,-5.988902 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 2579: 7.181556,4.0273237 - 2588: 17.465765,12.071527 - 2664: -13.756159,-5.822237 - 2665: -13.901991,-8.228487 - 2990: -9.230458,4.9216795 + 2577: 7.181556,4.0273237 + 2586: 17.465765,12.071527 + 2662: -13.756159,-5.822237 + 2663: -13.901991,-8.228487 + 2988: -9.230458,4.9216795 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 2568: -17.677385,-15.149096 - 2569: -6.0205603,-17.117607 - 2570: -9.970078,-14.052947 - 2571: -9.887934,2.4137444 - 2572: -18.05108,15.0529785 - 2601: 6.2927756,-17.073393 - 2612: 15.850491,-4.61609 - 2614: 9.772904,-4.483665 - 2626: 13.70388,8.66825 - 2627: 7.1036158,14.358771 - 2630: -5.465275,9.849015 - 2631: -6.746525,10.213598 - 2644: 3.4466357,-5.461709 - 2679: -20.130556,-17.838984 - 2680: -16.849306,-19.984818 - 2681: -17.307638,-19.6619 - 2682: -19.265972,-20.13065 - 2998: -14.051299,-2.1793242 - 3001: -17.143507,-2.1316965 - 3002: -14.734559,-9.289597 - 3004: -14.390809,-9.633347 - 3005: -10.377625,-9.233512 - 3013: -3.5338547,-5.210155 - 3014: -4.8467765,-14.670914 - 3370: -2.6337829,9.646117 + 2566: -17.677385,-15.149096 + 2567: -6.0205603,-17.117607 + 2568: -9.970078,-14.052947 + 2569: -9.887934,2.4137444 + 2570: -18.05108,15.0529785 + 2599: 6.2927756,-17.073393 + 2610: 15.850491,-4.61609 + 2612: 9.772904,-4.483665 + 2624: 13.70388,8.66825 + 2625: 7.1036158,14.358771 + 2628: -5.465275,9.849015 + 2629: -6.746525,10.213598 + 2642: 3.4466357,-5.461709 + 2677: -20.130556,-17.838984 + 2678: -16.849306,-19.984818 + 2679: -17.307638,-19.6619 + 2680: -19.265972,-20.13065 + 2996: -14.051299,-2.1793242 + 2999: -17.143507,-2.1316965 + 3000: -14.734559,-9.289597 + 3002: -14.390809,-9.633347 + 3003: -10.377625,-9.233512 + 3011: -3.5338547,-5.210155 + 3012: -4.8467765,-14.670914 + 3368: -2.6337829,9.646117 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 2573: -17.025719,17.03245 - 2574: 18.117056,13.867498 - 2619: 3.580893,-8.535644 - 2620: 8.918044,-3.98356 - 2621: 15.266736,-5.8692675 - 2622: 16.209822,-5.8538113 - 2623: 7.318463,5.66825 - 2624: 6.4642963,5.85575 - 2625: 14.620547,8.230751 - 2636: 6.318049,2.225238 - 2655: -8.044823,-13.97787 - 2656: -8.878156,-13.144537 - 2657: -5.867739,-11.154953 - 2658: -13.026991,-9.009735 - 2659: -11.860325,-5.124318 - 2683: -16.859722,-18.94315 - 2987: -8.75542,2.9208503 - 2992: -13.95071,2.256745 - 2999: -14.165881,-2.439741 - 3003: -14.713725,-9.602097 - 3006: -9.76849,-14.395954 - 3015: -4.450943,-14.608414 - 3371: -2.8004496,9.333617 + 2571: -17.025719,17.03245 + 2572: 18.117056,13.867498 + 2617: 3.580893,-8.535644 + 2618: 8.918044,-3.98356 + 2619: 15.266736,-5.8692675 + 2620: 16.209822,-5.8538113 + 2621: 7.318463,5.66825 + 2622: 6.4642963,5.85575 + 2623: 14.620547,8.230751 + 2634: 6.318049,2.225238 + 2653: -8.044823,-13.97787 + 2654: -8.878156,-13.144537 + 2655: -5.867739,-11.154953 + 2656: -13.026991,-9.009735 + 2657: -11.860325,-5.124318 + 2681: -16.859722,-18.94315 + 2985: -8.75542,2.9208503 + 2990: -13.95071,2.256745 + 2997: -14.165881,-2.439741 + 3001: -14.713725,-9.602097 + 3004: -9.76849,-14.395954 + 3013: -4.450943,-14.608414 + 3369: -2.8004496,9.333617 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 2575: 17.117056,10.211248 - 2576: 9.26489,2.9960737 - 2606: 14.499886,6.958212 - 2607: 13.541552,7.447795 - 2608: 6.0254874,14.498462 - 2613: 16.579659,-3.9598398 - 2637: 7.224299,2.3710713 - 2638: 4.0082765,6.5204124 - 2645: 5.713353,-3.1926599 - 2969: -14.413333,18.172693 - 2989: -9.557503,5.8271008 - 2991: -14.0402975,2.506745 - 3372: -2.8212829,8.989867 + 2573: 17.117056,10.211248 + 2574: 9.26489,2.9960737 + 2604: 14.499886,6.958212 + 2605: 13.541552,7.447795 + 2606: 6.0254874,14.498462 + 2611: 16.579659,-3.9598398 + 2635: 7.224299,2.3710713 + 2636: 4.0082765,6.5204124 + 2643: 5.713353,-3.1926599 + 2967: -14.413333,18.172693 + 2987: -9.557503,5.8271008 + 2989: -14.0402975,2.506745 + 3370: -2.8212829,8.989867 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 2547: -15.13607,-18.199955 - 2548: -18.14605,-11.80234 - 2549: -13.963279,-4.177868 - 2550: -5.8667884,-5.4799514 - 2551: 8.061129,-4.427868 - 2552: 15.901968,-2.2820346 - 2553: 17.151968,2.9988291 - 2554: 9.610178,17.11985 - 2555: 4.0546904,17.078184 - 2556: 3.480264,5.210905 - 2557: -15.017622,18.057854 - 2558: -5.5270247,2.9853945 - 2593: 5.777904,17.049623 - 2594: 9.139725,14.0701685 - 2609: 6.567154,13.456795 - 2610: 6.441076,6.7870555 - 2615: 9.397904,-5.046165 - 2616: 4.3850265,-9.488806 - 2632: -6.2881913,9.494848 - 2633: -5.402775,10.869849 - 2641: 3.8528857,-4.5242085 - 2666: -11.037408,-8.100949 - 2996: -3.7009702,4.4983735 - 2997: -5.697132,-3.1168242 - 3007: -9.425084,-14.560988 - 3012: -3.5442712,-4.7830715 + 2545: -15.13607,-18.199955 + 2546: -18.14605,-11.80234 + 2547: -13.963279,-4.177868 + 2548: -5.8667884,-5.4799514 + 2549: 8.061129,-4.427868 + 2550: 15.901968,-2.2820346 + 2551: 17.151968,2.9988291 + 2552: 9.610178,17.11985 + 2553: 4.0546904,17.078184 + 2554: 3.480264,5.210905 + 2555: -15.017622,18.057854 + 2556: -5.5270247,2.9853945 + 2591: 5.777904,17.049623 + 2592: 9.139725,14.0701685 + 2607: 6.567154,13.456795 + 2608: 6.441076,6.7870555 + 2613: 9.397904,-5.046165 + 2614: 4.3850265,-9.488806 + 2630: -6.2881913,9.494848 + 2631: -5.402775,10.869849 + 2639: 3.8528857,-4.5242085 + 2664: -11.037408,-8.100949 + 2994: -3.7009702,4.4983735 + 2995: -5.697132,-3.1168242 + 3005: -9.425084,-14.560988 + 3010: -3.5442712,-4.7830715 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 2585: 8.789164,15.109163 - 2671: -19.824345,-10.10782 - 2672: -20.11601,-9.63907 - 2674: -20.011845,-8.243237 - 2675: -18.730595,-8.79532 - 2676: -18.873224,-10.013859 - 2677: -19.654474,-7.0659423 - 3388: -18.860361,-7.807997 + 2583: 8.789164,15.109163 + 2669: -19.824345,-10.10782 + 2670: -20.11601,-9.63907 + 2672: -20.011845,-8.243237 + 2673: -18.730595,-8.79532 + 2674: -18.873224,-10.013859 + 2675: -19.654474,-7.0659423 + 3386: -18.860361,-7.807997 - node: color: '#FFFFFFFF' id: Bushj2 decals: - 2673: -18.793095,-6.868236 - 2678: -19.94614,-7.7117753 - 3386: -20.016611,-7.2975807 - 3387: -18.902029,-9.370498 - 3389: -19.318695,-8.485081 + 2671: -18.793095,-6.868236 + 2676: -19.94614,-7.7117753 + 3384: -20.016611,-7.2975807 + 3385: -18.902029,-9.370498 + 3387: -19.318695,-8.485081 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 3373: -4.6337833,10.114867 + 3371: -4.6337833,10.114867 - node: color: '#FFFFFFFF' id: Bushk1 decals: - 2643: 3.0091357,-5.795042 - 2988: -10.00542,5.191684 + 2641: 3.0091357,-5.795042 + 2986: -10.00542,5.191684 - node: color: '#FFFFFFFF' id: Bushk3 decals: - 2586: 15.903748,17.02583 - 2587: 18.067644,12.942497 - 2642: 4.8112187,-3.7846253 + 2584: 15.903748,17.02583 + 2585: 18.067644,12.942497 + 2640: 4.8112187,-3.7846253 - node: color: '#FFFFFFFF' id: Bushm1 decals: - 3477: 63.81363,-0.83854264 + 3475: 63.81363,-0.83854264 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 3478: 64.29279,-0.73437595 + 3476: 64.29279,-0.73437595 - node: color: '#FFFFFFFF' id: Bushm4 decals: - 2667: -10.9586735,-6.0094166 - 2668: -11.224603,-5.736016 - 2669: -13.307937,-8.381849 - 2670: -14.067469,-7.593817 - 3479: 64.12612,-1.2864593 + 2665: -10.9586735,-6.0094166 + 2666: -11.224603,-5.736016 + 2667: -13.307937,-8.381849 + 2668: -14.067469,-7.593817 + 3477: 64.12612,-1.2864593 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 1309: 58.021324,0.5489143 - 1310: 57.96924,-1.1594192 - 3378: 57.99387,-2.411529 + 1307: 58.021324,0.5489143 + 1308: 57.96924,-1.1594192 + 3376: 57.99387,-2.411529 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 3546: 56.20735,16.017925 + 3544: 56.20735,16.017925 - node: color: '#52B4E996' id: CheckerNWSE decals: - 2951: -19,-27 - 2952: -16,-27 - 2953: -22,-27 + 2949: -19,-27 + 2950: -16,-27 + 2951: -22,-27 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNe @@ -3181,33 +3192,33 @@ entities: decals: 30: -2,-2 31: -2,-2 - 3413: 2,4 - 3414: 3,3 - 3415: 4,2 + 3411: 2,4 + 3412: 3,3 + 3413: 4,2 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNw decals: 33: 2,-2 - 3410: -4,2 - 3411: -3,3 - 3412: -2,4 + 3408: -4,2 + 3409: -3,3 + 3410: -2,4 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSe decals: 29: -2,2 - 3407: 2,-4 - 3408: 3,-3 - 3409: 4,-2 + 3405: 2,-4 + 3406: 3,-3 + 3407: 4,-2 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSw decals: 32: 2,2 - 3404: -2,-4 - 3405: -3,-3 - 3406: -4,-2 + 3402: -2,-4 + 3403: -3,-3 + 3404: -4,-2 - node: color: '#FFFFFFFF' id: ConcreteTrimLineE @@ -3271,7 +3282,7 @@ entities: 95: -13,-2 96: -16,-2 97: -17,-2 - 3000: -14,-2 + 2998: -14,-2 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS @@ -3302,8 +3313,8 @@ entities: 105: -8,2 106: -7,2 107: -6,2 - 3396: 11,2 - 3397: 14,2 + 3394: 11,2 + 3395: 14,2 - node: color: '#FFFFFFFF' id: ConcreteTrimLineW @@ -3333,348 +3344,350 @@ entities: 76: 2,-14 77: 2,-16 78: 2,-17 - 3402: 2,10 - 3403: 2,13 + 3400: 2,10 + 3401: 2,13 - node: color: '#FFFFFFFF' id: Delivery decals: - 1736: 50,-39 - 1737: 50,-38 - 1738: 50,-37 - 1739: 50,-36 + 1734: 50,-39 + 1735: 50,-38 + 1736: 50,-37 + 1737: 50,-36 - node: color: '#3EB38896' id: DiagonalCheckerAOverlay decals: - 3523: 12,23 - 3524: 13,22 - 3525: 13,23 - 3526: 14,23 - 3527: 15,23 - 3528: 15,22 - 3529: 14,22 - 3530: 14,21 - 3531: 13,21 - 3532: 12,20 - 3533: 13,20 - 3534: 14,20 - 3535: 15,20 - 3536: 15,21 - 3538: 12,21 - 3539: 12,22 + 3521: 12,23 + 3522: 13,22 + 3523: 13,23 + 3524: 14,23 + 3525: 15,23 + 3526: 15,22 + 3527: 14,22 + 3528: 14,21 + 3529: 13,21 + 3530: 12,20 + 3531: 13,20 + 3532: 14,20 + 3533: 15,20 + 3534: 15,21 + 3536: 12,21 + 3537: 12,22 - node: color: '#639137FF' id: DiagonalCheckerBOverlay decals: - 3510: 12,20 - 3511: 13,20 - 3512: 13,21 - 3513: 13,22 - 3514: 13,23 - 3515: 14,23 - 3516: 14,22 - 3517: 14,21 - 3518: 14,20 - 3519: 15,20 - 3520: 15,21 - 3521: 15,22 - 3522: 15,23 - 3537: 12,23 - 3540: 12,21 - 3541: 12,22 + 3508: 12,20 + 3509: 13,20 + 3510: 13,21 + 3511: 13,22 + 3512: 13,23 + 3513: 14,23 + 3514: 14,22 + 3515: 14,21 + 3516: 14,20 + 3517: 15,20 + 3518: 15,21 + 3519: 15,22 + 3520: 15,23 + 3535: 12,23 + 3538: 12,21 + 3539: 12,22 - node: color: '#D381C996' id: DiagonalOverlay decals: - 2240: -10,-49 - 2316: -10,-45 - 3381: 4,-47 - 3382: 4,-46 - 3383: -2,-47 - 3384: -6,-47 + 2238: -10,-49 + 2314: -10,-45 + 3379: 4,-47 + 3380: 4,-46 + 3381: -2,-47 + 3382: -6,-47 - node: color: '#DE3A3A96' id: DiagonalOverlay decals: - 1556: 51,-2 - 1557: 49,-2 - 1558: 49,-5 - 1559: 51,-5 - 1560: 29,-33 - 1561: 29,-32 - 1562: 39,-34 - 1563: 39,-32 - 1564: 41,-31 - 1565: 44,-37 - 1566: 41,-38 - 1567: 38,-41 - 2851: 41,-24 + 1554: 51,-2 + 1555: 49,-2 + 1556: 49,-5 + 1557: 51,-5 + 1558: 29,-33 + 1559: 29,-32 + 1560: 39,-34 + 1561: 39,-32 + 1562: 41,-31 + 1563: 44,-37 + 1564: 41,-38 + 1565: 38,-41 + 2849: 41,-24 - node: color: '#EFB34196' id: DiagonalOverlay decals: - 1822: 9,33 - 1823: 9,32 - 1824: 20,33 - 1825: 20,32 + 1820: 9,33 + 1821: 9,32 + 1822: 20,33 + 1823: 20,32 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 2749: 16.070688,16.03927 - 2780: 9.361443,4.4135666 - 2781: 8.71561,5.3614836 + 2747: 16.070688,16.03927 + 2778: 9.361443,4.4135666 + 2779: 8.71561,5.3614836 - node: color: '#FFFFFFFF' id: FlowersBRThree decals: - 2750: 17.062426,11.239492 - 2751: 10.321154,17.060677 - 2784: 7.6635256,6.1948166 - 2785: 8.538526,6.2989836 - 2820: 9.51524,6.327868 + 2748: 17.062426,11.239492 + 2749: 10.321154,17.060677 + 2782: 7.6635256,6.1948166 + 2783: 8.538526,6.2989836 + 2818: 9.51524,6.327868 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 2777: 10.111443,4.4344 - 2778: 8.663526,4.5594 - 2779: 8.05936,5.5073166 - 2821: 9.79649,6.7862015 + 2775: 10.111443,4.4344 + 2776: 8.663526,4.5594 + 2777: 8.05936,5.5073166 + 2819: 9.79649,6.7862015 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 2746: 3.1090877,15.838451 - 2747: 15.10194,16.174686 + 2744: 3.1090877,15.838451 + 2745: 15.10194,16.174686 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 2748: 15.393607,16.737186 - 2782: 9.49686,5.1010666 - 2783: 9.080193,5.7260666 - 2786: 10.324566,5.2335067 - 2808: 16.988474,10.508276 - 2809: 16.363474,10.747859 - 2810: 11.000941,16.992361 - 2811: 11.6309395,17.170504 - 2827: 7.8013525,4.69695 - 2828: 9.145103,3.603201 - 2829: 9.15132,6.0905905 + 2746: 15.393607,16.737186 + 2780: 9.49686,5.1010666 + 2781: 9.080193,5.7260666 + 2784: 10.324566,5.2335067 + 2806: 16.988474,10.508276 + 2807: 16.363474,10.747859 + 2808: 11.000941,16.992361 + 2809: 11.6309395,17.170504 + 2825: 7.8013525,4.69695 + 2826: 9.145103,3.603201 + 2827: 9.15132,6.0905905 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 2819: 8.806907,6.8799515 + 2817: 8.806907,6.8799515 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 2787: 15.255633,6.9409747 - 2788: 14.661882,7.545141 + 2785: 15.255633,6.9409747 + 2786: 14.661882,7.545141 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 2789: 15.463966,7.690975 - 2791: 14.5844555,8.774308 - 2795: 14.978545,6.1768036 - 2796: 15.728544,6.3643036 - 2822: 14.814111,5.0989227 - 2823: 15.56411,4.4947557 - 2826: 12.9190645,9.799427 + 2787: 15.463966,7.690975 + 2789: 14.5844555,8.774308 + 2793: 14.978545,6.1768036 + 2794: 15.728544,6.3643036 + 2820: 14.814111,5.0989227 + 2821: 15.56411,4.4947557 + 2824: 12.9190645,9.799427 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 2740: 8.013186,3.1140726 - 2741: 10.378889,-5.012858 - 2742: 10.274722,-4.383773 - 2790: 15.219872,8.347224 - 2792: 13.9177885,8.774308 - 2793: 13.252036,8.115639 - 2794: 13.134795,8.926804 - 2797: 16.103544,7.1143036 - 2798: 16.42646,6.1143036 - 2799: 15.748611,5.544657 - 2824: 14.501611,4.234339 - 2825: 13.6690645,9.570259 + 2738: 8.013186,3.1140726 + 2739: 10.378889,-5.012858 + 2740: 10.274722,-4.383773 + 2788: 15.219872,8.347224 + 2790: 13.9177885,8.774308 + 2791: 13.252036,8.115639 + 2792: 13.134795,8.926804 + 2795: 16.103544,7.1143036 + 2796: 16.42646,6.1143036 + 2797: 15.748611,5.544657 + 2822: 14.501611,4.234339 + 2823: 13.6690645,9.570259 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 2738: 7.160172,13.449887 - 2739: 5.483089,13.918637 - 2752: 12.341987,18.164845 - 2759: 4.084557,12.876521 - 2760: 6.313724,11.689021 - 2761: 9.0012245,11.564021 - 2767: 8.3553915,12.168188 - 2768: 6.730391,12.855688 - 2769: 5.105391,14.376521 - 2770: 2.9283073,14.741104 - 2772: 4.719974,13.105688 - 2773: 4.355391,14.585857 - 2774: 3.473161,14.394393 - 2775: 4.3585773,13.821476 - 2801: 2.299132,6.662748 - 2806: 4.7337813,6.6002483 - 2807: 4.5150313,6.0064983 + 2736: 7.160172,13.449887 + 2737: 5.483089,13.918637 + 2750: 12.341987,18.164845 + 2757: 4.084557,12.876521 + 2758: 6.313724,11.689021 + 2759: 9.0012245,11.564021 + 2765: 8.3553915,12.168188 + 2766: 6.730391,12.855688 + 2767: 5.105391,14.376521 + 2768: 2.9283073,14.741104 + 2770: 4.719974,13.105688 + 2771: 4.355391,14.585857 + 2772: 3.473161,14.394393 + 2773: 4.3585773,13.821476 + 2799: 2.299132,6.662748 + 2804: 4.7337813,6.6002483 + 2805: 4.5150313,6.0064983 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 2753: 14.633654,18.154427 - 2762: 7.6991415,11.939021 - 2763: 7.0533075,11.282771 - 2764: 8.1783085,11.241104 - 2802: 3.0178826,5.8710814 + 2751: 14.633654,18.154427 + 2760: 7.6991415,11.939021 + 2761: 7.0533075,11.282771 + 2762: 8.1783085,11.241104 + 2800: 3.0178826,5.8710814 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 2754: 13.227404,18.091927 - 2756: 11.914904,18.11276 - 2757: 11.914904,18.11276 - 2765: 6.938724,12.168188 - 2766: 7.6158075,12.918188 - 2776: 3.4939945,13.592309 - 2803: 3.1637156,6.5481644 - 2804: 3.7887158,5.704415 - 2805: 3.9108648,7.0273314 + 2752: 13.227404,18.091927 + 2754: 11.914904,18.11276 + 2755: 11.914904,18.11276 + 2763: 6.938724,12.168188 + 2764: 7.6158075,12.918188 + 2774: 3.4939945,13.592309 + 2801: 3.1637156,6.5481644 + 2802: 3.7887158,5.704415 + 2803: 3.9108648,7.0273314 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 2743: 3.8501334,-9.470912 - 2744: 4.3709664,-9.908412 - 2745: 3.6209664,-9.960495 - 2755: 13.966987,18.133595 - 2758: 15.123237,18.071095 - 2771: 5.136641,13.511938 - 2800: 2.2574656,5.8294144 - 2812: 9.849766,11.338729 - 2813: 9.047683,10.619978 - 2814: 4.7809443,7.692894 - 2815: 5.676778,7.797061 - 2816: 5.4059443,8.505394 - 2817: 5.8902392,6.890369 - 2818: 6.223573,8.400785 + 2741: 3.8501334,-9.470912 + 2742: 4.3709664,-9.908412 + 2743: 3.6209664,-9.960495 + 2753: 13.966987,18.133595 + 2756: 15.123237,18.071095 + 2769: 5.136641,13.511938 + 2798: 2.2574656,5.8294144 + 2810: 9.849766,11.338729 + 2811: 9.047683,10.619978 + 2812: 4.7809443,7.692894 + 2813: 5.676778,7.797061 + 2814: 5.4059443,8.505394 + 2815: 5.8902392,6.890369 + 2816: 6.223573,8.400785 - node: color: '#00BEBE7F' id: FullTileOverlayGreyscale decals: - 3173: -26,40 - 3174: -26,42 - 3175: -43,2 - 3176: -42,2 - 3177: -37,2 - 3178: -36,2 + 3171: -26,40 + 3172: -26,42 + 3173: -43,2 + 3174: -42,2 + 3175: -37,2 + 3176: -36,2 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 706: 21,3 - 707: 23,3 - 708: 25,3 - 808: -33,-9 - 809: -29,-9 - 2860: -23,-36 + 704: 21,3 + 705: 23,3 + 706: 25,3 + 806: -33,-9 + 807: -29,-9 + 2858: -23,-36 + 3612: 27,13 + 3613: 27,14 - node: color: '#373737FF' id: FullTileOverlayGreyscale decals: - 3416: 21,-19 - 3417: 20,-19 - 3418: 19,-19 - 3419: 19,-18 - 3420: 18,-19 - 3421: 18,-20 - 3422: 19,-20 - 3423: 19,-21 - 3424: 18,-21 - 3425: 21,-18 - 3426: 20,-18 - 3434: 17,-18 - 3435: 18,-17 - 3436: 21,-22 - 3437: 22,-21 + 3414: 21,-19 + 3415: 20,-19 + 3416: 19,-19 + 3417: 19,-18 + 3418: 18,-19 + 3419: 18,-20 + 3420: 19,-20 + 3421: 19,-21 + 3422: 18,-21 + 3423: 21,-18 + 3424: 20,-18 + 3432: 17,-18 + 3433: 18,-17 + 3434: 21,-22 + 3435: 22,-21 - node: color: '#4A35194C' id: FullTileOverlayGreyscale decals: - 2689: -22,3 - 2690: -21,3 - 2691: -20,3 - 2692: -19,3 - 2693: -19,4 - 2694: -19,5 - 2695: -19,6 - 2696: -19,7 - 2697: -19,8 - 2698: -19,9 - 2699: -19,10 - 2700: -20,10 - 2701: -20,9 - 2702: -20,8 - 2703: -20,7 - 2704: -20,6 - 2705: -20,5 - 2706: -20,4 - 2707: -21,4 - 2708: -22,4 - 2709: -22,5 - 2710: -21,5 - 2711: -21,6 - 2712: -22,6 - 2713: -22,7 - 2714: -21,7 - 2715: -21,8 - 2716: -22,8 - 2717: -22,9 - 2718: -21,9 - 2719: -21,10 - 2720: -22,10 + 2687: -22,3 + 2688: -21,3 + 2689: -20,3 + 2690: -19,3 + 2691: -19,4 + 2692: -19,5 + 2693: -19,6 + 2694: -19,7 + 2695: -19,8 + 2696: -19,9 + 2697: -19,10 + 2698: -20,10 + 2699: -20,9 + 2700: -20,8 + 2701: -20,7 + 2702: -20,6 + 2703: -20,5 + 2704: -20,4 + 2705: -21,4 + 2706: -22,4 + 2707: -22,5 + 2708: -21,5 + 2709: -21,6 + 2710: -22,6 + 2711: -22,7 + 2712: -21,7 + 2713: -21,8 + 2714: -22,8 + 2715: -22,9 + 2716: -21,9 + 2717: -21,10 + 2718: -22,10 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: 244: -8,-39 245: -7,-39 - 530: -26,-27 - 531: -26,-28 - 532: -26,-29 - 533: -12,-30 - 534: -12,-29 - 535: -11,-29 - 550: -26,-41 - 735: -3,-37 - 736: -3,-36 - 818: -29,-6 - 819: -33,-6 - 927: -28,-29 - 928: -28,-28 - 929: -24,-29 - 930: -24,-28 + 528: -26,-27 + 529: -26,-28 + 530: -26,-29 + 531: -12,-30 + 532: -12,-29 + 533: -11,-29 + 548: -26,-41 + 733: -3,-37 + 734: -3,-36 + 816: -29,-6 + 817: -33,-6 + 925: -28,-29 + 926: -28,-28 + 927: -24,-29 + 928: -24,-28 - node: color: '#765428FF' id: FullTileOverlayGreyscale decals: - 3317: -55,-16 - 3318: -56,-16 + 3315: -55,-16 + 3316: -56,-16 - node: color: '#951710FF' id: FullTileOverlayGreyscale decals: - 2398: 43,37 - 2399: 43,38 - 2400: 43,39 - 2401: 43,40 - 2402: 43,41 - 2403: 43,36 - 2404: 43,42 + 2396: 43,37 + 2397: 43,38 + 2398: 43,39 + 2399: 43,40 + 2400: 43,41 + 2401: 43,36 + 2402: 43,42 - node: color: '#9FED5896' id: FullTileOverlayGreyscale @@ -3687,102 +3700,106 @@ entities: 193: -31,-17 263: -26,-14 474: -30,-22 - 814: -31,-9 - 815: -31,-4 + 812: -31,-9 + 813: -31,-4 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 812: -31,-8 - 813: -31,-5 + 810: -31,-8 + 811: -31,-5 - node: color: '#BC863FFF' id: FullTileOverlayGreyscale decals: - 3235: -48,-3 - 3236: -48,-4 - 3237: -52,-1 - 3238: -52,0 - 3349: -48,0 - 3350: -48,1 - 3351: -48,-1 - 3363: -51,-1 - 3364: -51,0 + 3233: -48,-3 + 3234: -48,-4 + 3235: -52,-1 + 3236: -52,0 + 3347: -48,0 + 3348: -48,1 + 3349: -48,-1 + 3361: -51,-1 + 3362: -51,0 - node: color: '#C6FF91FF' id: FullTileOverlayGreyscale decals: - 3018: -37,-35 - 3019: -37,-34 - 3020: -36,-34 - 3021: -35,-34 + 3016: -37,-35 + 3017: -37,-34 + 3018: -36,-34 + 3019: -35,-34 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: - 822: -29,-4 - 823: -33,-4 + 820: -29,-4 + 821: -33,-4 - node: color: '#D4D4D496' id: FullTileOverlayGreyscale decals: - 816: -29,-7 - 817: -33,-7 + 814: -29,-7 + 815: -33,-7 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 820: -29,-5 - 821: -33,-5 - 2735: 56,-10 - 2736: 56,-11 - 2737: 56,-12 - 3390: 32,-10 - 3391: 38,-10 - 3392: 40,-10 + 818: -29,-5 + 819: -33,-5 + 2733: 56,-10 + 2734: 56,-11 + 2735: 56,-12 + 3388: 32,-10 + 3389: 38,-10 + 3390: 40,-10 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 810: -29,-8 - 811: -33,-8 - 2886: -11,-39 - 2887: -19,-40 - 2932: -16,-38 + 808: -29,-8 + 809: -33,-8 + 2884: -11,-39 + 2885: -19,-40 + 2930: -16,-38 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineE decals: - 3393: 11,2 + 3391: 11,2 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 3400: 2,10 + 3398: 2,10 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 3395: 12.501469,3.9993005 - 3398: 2,13 - 3399: 2,13 + 3393: 12.501469,3.9993005 + 3396: 2,13 + 3397: 2,13 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineW decals: - 3394: 14,2 - 3401: 4.001555,11.500919 + 3392: 14,2 + 3399: 4.001555,11.500919 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 593: 20,9 - 594: 21,9 - 595: 21,9 - 596: 22,9 - 597: 22,9 - 598: 25,9 - 622: 26,9 + 591: 20,9 + 592: 21,9 + 593: 21,9 + 594: 22,9 + 595: 22,9 + 596: 25,9 + 620: 26,9 + 3585: 22,18 + 3586: 23,18 + 3587: 24,18 + 3588: 25,18 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -3795,18 +3812,18 @@ entities: 332: -17,-33 333: -16,-33 334: -15,-33 - 537: -13,-29 - 549: -26,-42 + 535: -13,-29 + 547: -26,-42 - node: color: '#639137FF' id: HalfTileOverlayGreyscale decals: - 640: 4,24 - 641: 5,24 - 642: 6,24 - 643: 7,24 - 644: 8,24 - 645: 9,24 + 638: 4,24 + 639: 5,24 + 640: 6,24 + 641: 7,24 + 642: 8,24 + 643: 9,24 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale @@ -3825,35 +3842,37 @@ entities: color: '#C6FF91FF' id: HalfTileOverlayGreyscale decals: - 3022: -36,-31 - 3023: -37,-31 - 3024: -38,-31 + 3020: -36,-31 + 3021: -37,-31 + 3022: -38,-31 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 830: -13,-50 - 831: -12,-50 - 2957: 15,-42 + 828: -13,-50 + 829: -12,-50 + 2955: 15,-42 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 1435: 45,-15 - 1436: 44,-15 - 1437: 43,-15 - 1438: 42,-15 - 1439: 41,-15 + 1433: 45,-15 + 1434: 44,-15 + 1435: 43,-15 + 1436: 42,-15 + 1437: 41,-15 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 588: 20,4 - 589: 20,4 - 590: 21,4 - 591: 22,4 - 592: 25,4 - 623: 26,4 + 586: 20,4 + 587: 20,4 + 588: 21,4 + 589: 22,4 + 590: 25,4 + 621: 26,4 + 3589: 23,11 + 3590: 24,11 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -3864,26 +3883,26 @@ entities: 340: -18,-36 341: -20,-36 342: -19,-36 - 536: -13,-28 - 548: -26,-40 + 534: -13,-28 + 546: -26,-40 - node: color: '#639137FF' id: HalfTileOverlayGreyscale180 decals: - 632: 8,22 - 633: 7,22 - 634: 7,22 - 635: 6,22 - 636: 5,22 - 646: 4,19 - 647: 5,19 - 648: 6,19 - 649: 7,19 - 650: 7,19 - 651: 8,19 - 652: 9,19 - 665: 5,23 - 666: 8,23 + 630: 8,22 + 631: 7,22 + 632: 7,22 + 633: 6,22 + 634: 5,22 + 644: 4,19 + 645: 5,19 + 646: 6,19 + 647: 7,19 + 648: 7,19 + 649: 8,19 + 650: 9,19 + 663: 5,23 + 664: 8,23 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -3901,33 +3920,38 @@ entities: color: '#C6FF91FF' id: HalfTileOverlayGreyscale180 decals: - 3017: -38,-35 + 3015: -38,-35 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 824: -13,-48 - 825: -12,-48 - 2958: 15,-39 + 822: -13,-48 + 823: -12,-48 + 2956: 15,-39 - node: color: '#1E5026FF' id: HalfTileOverlayGreyscale270 decals: - 2412: 42,36 - 2413: 42,37 - 2414: 42,38 - 2415: 42,39 - 2416: 42,40 - 2417: 42,41 - 2418: 42,42 + 2410: 42,36 + 2411: 42,37 + 2412: 42,38 + 2413: 42,39 + 2414: 42,40 + 2415: 42,41 + 2416: 42,42 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 584: 19,5 - 585: 19,6 - 586: 19,7 - 587: 19,8 + 582: 19,5 + 583: 19,6 + 584: 19,7 + 585: 19,8 + 3580: 21,13 + 3581: 21,14 + 3582: 21,15 + 3583: 21,16 + 3584: 21,17 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -3944,32 +3968,32 @@ entities: 257: -8,-34 327: -21,-34 328: -21,-35 - 541: -11,-28 - 542: -11,-27 - 543: -11,-26 - 547: -11,-25 + 539: -11,-28 + 540: -11,-27 + 541: -11,-26 + 545: -11,-25 - node: color: '#639137FF' id: HalfTileOverlayGreyscale270 decals: - 631: 9,21 - 653: 3,20 - 654: 3,21 - 655: 3,22 - 656: 3,23 - 667: 7,20 - 670: 7,21 + 629: 9,21 + 651: 3,20 + 652: 3,21 + 653: 3,22 + 654: 3,23 + 665: 7,20 + 668: 7,21 - node: color: '#951710FF' id: HalfTileOverlayGreyscale270 decals: - 2426: 44,36 - 2427: 44,37 - 2428: 44,38 - 2429: 44,39 - 2430: 44,40 - 2431: 44,41 - 2432: 44,42 + 2424: 44,36 + 2425: 44,37 + 2426: 44,38 + 2427: 44,39 + 2428: 44,40 + 2429: 44,41 + 2430: 44,42 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -3985,32 +4009,39 @@ entities: color: '#C6FF91FF' id: HalfTileOverlayGreyscale270 decals: - 3026: -39,-32 - 3027: -39,-33 - 3028: -39,-34 + 3024: -39,-32 + 3025: -39,-33 + 3026: -39,-34 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 829: -13,-49 + 827: -13,-49 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 2730: 57,-12 - 2731: 57,-11 - 2732: 57,-10 + 2728: 57,-12 + 2729: 57,-11 + 2730: 57,-10 - node: color: '#1E5026FF' id: HalfTileOverlayGreyscale90 decals: - 2405: 44,36 - 2406: 44,37 - 2407: 44,38 - 2408: 44,39 - 2409: 44,40 - 2410: 44,41 - 2411: 44,42 + 2403: 44,36 + 2404: 44,37 + 2405: 44,38 + 2406: 44,39 + 2407: 44,40 + 2408: 44,41 + 2409: 44,42 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 3591: 26,15 + 3592: 26,16 + 3593: 26,17 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -4021,31 +4052,31 @@ entities: 255: -10,-34 335: -14,-34 336: -14,-35 - 544: -12,-27 - 545: -12,-26 - 546: -12,-25 + 542: -12,-27 + 543: -12,-26 + 544: -12,-25 - node: color: '#639137FF' id: HalfTileOverlayGreyscale90 decals: - 637: 4,21 - 657: 10,20 - 658: 10,21 - 659: 10,22 - 660: 10,23 - 668: 6,20 - 669: 6,21 + 635: 4,21 + 655: 10,20 + 656: 10,21 + 657: 10,22 + 658: 10,23 + 666: 6,20 + 667: 6,21 - node: color: '#951710FF' id: HalfTileOverlayGreyscale90 decals: - 2419: 42,36 - 2420: 42,37 - 2421: 42,38 - 2422: 42,39 - 2423: 42,40 - 2424: 42,41 - 2425: 42,42 + 2417: 42,36 + 2418: 42,37 + 2419: 42,38 + 2420: 42,39 + 2421: 42,40 + 2422: 42,41 + 2423: 42,42 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 @@ -4059,238 +4090,238 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 828: -12,-49 + 826: -12,-49 - node: color: '#EFB34196' id: MiniTileCornerOverlayNE decals: - 2881: -14,-40 + 2879: -14,-40 - node: color: '#EFB34196' id: MiniTileCornerOverlayNW decals: - 2878: -16,-40 + 2876: -16,-40 - node: color: '#EFB34196' id: MiniTileCornerOverlaySE decals: - 2879: -14,-42 + 2877: -14,-42 - node: color: '#EFB34196' id: MiniTileCornerOverlaySW decals: - 2880: -16,-42 + 2878: -16,-42 - node: color: '#DE3A3A96' id: MiniTileInnerOverlaySE decals: - 2830: 36,-13 + 2828: 36,-13 - node: color: '#EFB34196' id: MiniTileLineOverlayE decals: - 2883: -14,-41 + 2881: -14,-41 - node: color: '#DE3A3A96' id: MiniTileLineOverlayN decals: - 2729: 55,-10 + 2727: 55,-10 - node: color: '#EFB34196' id: MiniTileLineOverlayN decals: - 2882: -15,-40 + 2880: -15,-40 - node: color: '#DE3A3A96' id: MiniTileLineOverlayS decals: - 2728: 55,-12 + 2726: 55,-12 - node: color: '#EFB34196' id: MiniTileLineOverlayS decals: - 2885: -15,-42 + 2883: -15,-42 - node: color: '#EFB34196' id: MiniTileLineOverlayW decals: - 2884: -16,-41 + 2882: -16,-41 - node: color: '#D4D4D496' id: MiniTileOverlay decals: - 1751: 46,-35 - 1752: 46,-41 + 1749: 46,-35 + 1750: 46,-41 - node: color: '#FFFFFFFF' id: MiniTileOverlay decals: - 1753: 6,39 + 1751: 6,39 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNe decals: - 1741: 48,-36 + 1739: 48,-36 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 1742: 45,-36 + 1740: 45,-36 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 1740: 48,-39 - 1744: 47,-40 + 1738: 48,-39 + 1742: 47,-40 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: - 1743: 45,-40 + 1741: 45,-40 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 1745: 46,-36 - 1746: 47,-36 + 1743: 46,-36 + 1744: 47,-36 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 1747: 46,-40 + 1745: 46,-40 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1748: 45,-39 - 1749: 45,-38 - 1750: 45,-37 + 1746: 45,-39 + 1747: 45,-38 + 1748: 45,-37 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe decals: - 989: -52,-9 + 987: -52,-9 - node: color: '#A4610696' id: MiniTileWhiteCornerNe decals: - 1004: -57,-3 - 1007: -57,-3 + 1002: -57,-3 + 1005: -57,-3 - node: color: '#BC863FBF' id: MiniTileWhiteCornerNe decals: - 960: -57,-18 + 958: -57,-18 - node: color: '#EFB34196' id: MiniTileWhiteCornerNe decals: - 2923: -11,-42 - 2924: -12,-39 + 2921: -11,-42 + 2922: -12,-39 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNe decals: 441: -15,-34 - 2891: -12,-39 - 2892: -11,-42 + 2889: -12,-39 + 2890: -11,-42 - node: color: '#A4610696' id: MiniTileWhiteCornerNw decals: - 1005: -58,-3 - 1006: -58,-3 + 1003: -58,-3 + 1004: -58,-3 - node: color: '#BC863FBF' id: MiniTileWhiteCornerNw decals: - 959: -58,-18 + 957: -58,-18 - node: color: '#EFB34196' id: MiniTileWhiteCornerNw decals: - 2925: -18,-39 + 2923: -18,-39 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNw decals: 440: -20,-34 - 2890: -18,-39 + 2888: -18,-39 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSe decals: - 988: -52,-11 + 986: -52,-11 - node: color: '#A4610696' id: MiniTileWhiteCornerSe decals: - 1002: -57,-5 - 1008: -57,-5 + 1000: -57,-5 + 1006: -57,-5 - node: color: '#BC863FBF' id: MiniTileWhiteCornerSe decals: - 957: -57,-20 + 955: -57,-20 - node: color: '#EFB34196' id: MiniTileWhiteCornerSe decals: - 2922: -11,-43 + 2920: -11,-43 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSe decals: 438: -15,-35 - 2888: -11,-43 + 2886: -11,-43 - node: color: '#A4610696' id: MiniTileWhiteCornerSw decals: - 1003: -58,-5 - 1009: -58,-5 + 1001: -58,-5 + 1007: -58,-5 - node: color: '#BC863FBF' id: MiniTileWhiteCornerSw decals: - 958: -58,-20 + 956: -58,-20 - node: color: '#EFB34196' id: MiniTileWhiteCornerSw decals: - 2921: -18,-43 + 2919: -18,-43 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw decals: 439: -20,-35 - 2889: -18,-43 + 2887: -18,-43 - node: color: '#D381C996' id: MiniTileWhiteInnerNe decals: - 3385: -7,-48 + 3383: -7,-48 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerNe decals: - 3380: 42,-39 + 3378: 42,-39 - node: color: '#EFB34196' id: MiniTileWhiteInnerNe decals: - 2931: -12,-42 + 2929: -12,-42 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNe decals: 434: -21,-36 - 2909: -12,-42 + 2907: -12,-42 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerNw decals: - 3379: 42,-39 + 3377: 42,-39 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNw @@ -4311,24 +4342,24 @@ entities: color: '#334E6DC8' id: MiniTileWhiteLineE decals: - 987: -52,-10 + 985: -52,-10 - node: color: '#A4610696' id: MiniTileWhiteLineE decals: - 1012: -57,-4 - 1013: -57,-4 + 1010: -57,-4 + 1011: -57,-4 - node: color: '#BC863FBF' id: MiniTileWhiteLineE decals: - 962: -57,-19 + 960: -57,-19 - node: color: '#EFB34196' id: MiniTileWhiteLineE decals: - 2929: -12,-41 - 2930: -12,-40 + 2927: -12,-41 + 2928: -12,-40 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE @@ -4336,17 +4367,17 @@ entities: 425: -21,-34 426: -21,-34 427: -21,-35 - 2898: -12,-40 - 2899: -12,-41 + 2896: -12,-40 + 2897: -12,-41 - node: color: '#EFB34196' id: MiniTileWhiteLineN decals: - 2910: -17,-39 - 2911: -16,-39 - 2912: -15,-39 - 2913: -14,-39 - 2914: -13,-39 + 2908: -17,-39 + 2909: -16,-39 + 2910: -15,-39 + 2911: -14,-39 + 2912: -13,-39 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN @@ -4361,21 +4392,21 @@ entities: 443: -18,-34 444: -17,-34 445: -16,-34 - 2893: -17,-39 - 2894: -16,-39 - 2895: -15,-39 - 2896: -14,-39 - 2897: -13,-39 + 2891: -17,-39 + 2892: -16,-39 + 2893: -15,-39 + 2894: -14,-39 + 2895: -13,-39 - node: color: '#EFB34196' id: MiniTileWhiteLineS decals: - 2915: -12,-43 - 2916: -13,-43 - 2917: -14,-43 - 2918: -15,-43 - 2919: -16,-43 - 2920: -17,-43 + 2913: -12,-43 + 2914: -13,-43 + 2915: -14,-43 + 2916: -15,-43 + 2917: -16,-43 + 2918: -17,-43 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS @@ -4390,39 +4421,39 @@ entities: 447: -17,-35 448: -18,-35 449: -19,-35 - 2900: -12,-43 - 2901: -13,-43 - 2902: -14,-43 - 2903: -15,-43 - 2904: -16,-43 - 2905: -17,-43 + 2898: -12,-43 + 2899: -13,-43 + 2900: -14,-43 + 2901: -15,-43 + 2902: -16,-43 + 2903: -17,-43 - node: color: '#A4610696' id: MiniTileWhiteLineW decals: - 1010: -58,-4 - 1011: -58,-4 + 1008: -58,-4 + 1009: -58,-4 - node: color: '#BC863FBF' id: MiniTileWhiteLineW decals: - 961: -58,-19 + 959: -58,-19 - node: color: '#EFB34196' id: MiniTileWhiteLineW decals: - 2926: -18,-40 - 2927: -18,-41 - 2928: -18,-42 + 2924: -18,-40 + 2925: -18,-41 + 2926: -18,-42 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW decals: 417: -14,-35 418: -14,-34 - 2906: -18,-42 - 2907: -18,-41 - 2908: -18,-40 + 2904: -18,-42 + 2905: -18,-41 + 2906: -18,-40 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerNe @@ -4486,53 +4517,53 @@ entities: color: '#D4D4D428' id: PavementOverlay decals: - 1366: 44,-21 - 1367: 45,-21 - 1368: 46,-21 - 1369: 46,-22 - 1370: 45,-22 - 1371: 44,-22 - 1372: 48,-21 - 1373: 49,-21 - 1374: 50,-21 - 1375: 50,-22 - 1376: 49,-22 - 1377: 48,-22 - 1378: 52,-21 - 1379: 53,-21 - 1380: 54,-21 - 1381: 54,-22 - 1382: 53,-22 - 1383: 52,-22 - 3459: 42,-12 - 3460: 44,-12 - 3461: 44,-13 - 3462: 43,-13 - 3463: 41,-12 - 3464: 41,-14 - 3465: 42,-13 - 3466: 41,-13 - 3467: 42,-14 - 3468: 43,-14 - 3469: 44,-14 - 3470: 45,-14 - 3471: 45,-13 - 3472: 45,-12 - 3473: 43,-12 + 1364: 44,-21 + 1365: 45,-21 + 1366: 46,-21 + 1367: 46,-22 + 1368: 45,-22 + 1369: 44,-22 + 1370: 48,-21 + 1371: 49,-21 + 1372: 50,-21 + 1373: 50,-22 + 1374: 49,-22 + 1375: 48,-22 + 1376: 52,-21 + 1377: 53,-21 + 1378: 54,-21 + 1379: 54,-22 + 1380: 53,-22 + 1381: 52,-22 + 3457: 42,-12 + 3458: 44,-12 + 3459: 44,-13 + 3460: 43,-13 + 3461: 41,-12 + 3462: 41,-14 + 3463: 42,-13 + 3464: 41,-13 + 3465: 42,-14 + 3466: 43,-14 + 3467: 44,-14 + 3468: 45,-14 + 3469: 45,-13 + 3470: 45,-12 + 3471: 43,-12 - node: color: '#1D1D21FF' id: QuarterTileOverlayGreyscale decals: - 2433: 43,37 - 2436: 44,41 + 2431: 43,37 + 2434: 44,41 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 1344: 30,-3 - 1348: 30,-8 - 1351: 30,-5 - 1352: 30,-6 + 1342: 30,-3 + 1346: 30,-8 + 1349: 30,-5 + 1350: 30,-6 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -4586,19 +4617,19 @@ entities: 394: -22,-28 395: -19,-28 396: -16,-28 - 520: -31,-32 - 521: -31,-31 - 524: -31,-33 - 525: -22,-36 - 529: -24,-29 - 538: -14,-29 - 554: -25,-42 - 570: -12,-31 - 737: -2,-37 - 3029: -36,-33 - 3033: -37,-33 - 3037: -35,-33 - 3039: -34,-33 + 518: -31,-32 + 519: -31,-31 + 522: -31,-33 + 523: -22,-36 + 527: -24,-29 + 536: -14,-29 + 552: -25,-42 + 568: -12,-31 + 735: -2,-37 + 3027: -36,-33 + 3031: -37,-33 + 3035: -35,-33 + 3037: -34,-33 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale @@ -4608,168 +4639,169 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 832: -11,-50 + 830: -11,-50 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1018: -48,-2 - 1020: -48,3 - 1055: -33,-2 - 1120: -1,18 - 1121: -1,19 - 1122: -1,20 - 1123: -1,21 - 1124: -1,22 - 1125: -1,23 - 1126: -1,24 - 1127: -1,25 - 1128: -1,29 - 1129: -1,30 - 1130: -2,31 - 1131: -2,32 - 1132: -2,33 - 1133: -2,34 - 1134: -2,35 - 1135: -2,36 - 1136: -2,37 - 1137: -2,38 - 1152: -13,53 - 1154: -12,53 - 1155: -11,53 - 1156: -10,53 - 1157: -9,53 - 1162: -8,50 - 1163: -7,50 - 1164: -6,50 - 1165: -5,50 - 1166: -5,50 - 1167: -4,50 - 1168: -3,50 - 1169: -3,51 - 1170: -3,52 - 1171: -3,53 - 1172: -2,53 - 1173: -1,53 - 1174: 0,53 - 1176: 1,53 - 1218: -2,26 - 1219: -2,27 - 1220: -2,27 - 1221: -2,28 - 1257: 53,1 - 1258: 53,2 - 1259: 54,3 - 1260: 55,4 - 1261: 56,5 - 1302: 45,-3 - 1303: 45,-2 - 1315: 59,-3 - 1329: 57,5 - 1330: 58,5 - 1331: 59,5 - 1332: 60,5 - 1333: 61,5 - 1339: 62,0 - 1933: 3,-83 - 1934: 3,-82 - 1935: 3,-81 - 1936: 3,-80 - 1937: 3,-79 - 1938: 3,-78 - 1939: 3,-77 - 1940: 3,-76 - 1941: 3,-75 - 1942: 3,-74 - 1943: 3,-73 - 1944: 3,-72 - 1945: 3,-71 - 1946: 3,-70 - 1947: 3,-69 - 1948: 3,-68 - 1949: 3,-67 - 1950: 3,-66 - 1951: 3,-65 - 1952: 3,-64 - 1987: -10,-81 - 1988: -10,-80 - 1989: -10,-79 - 1990: -10,-78 - 1991: -11,-77 - 1992: -11,-76 - 1993: -11,-75 - 1994: -11,-75 - 1995: -10,-75 - 1996: -10,-74 - 1997: -10,-73 - 1998: -10,-72 - 1999: -10,-71 - 2000: -11,-70 - 2001: -11,-69 - 2002: -11,-68 - 2003: -10,-68 - 2004: -10,-67 - 2005: -10,-66 - 2006: -10,-65 - 2007: -10,-64 - 2008: -10,-63 - 2009: -10,-62 - 2010: -10,-61 - 2011: -10,-60 - 2012: -10,-59 - 2013: -10,-58 - 2014: -10,-57 - 2015: -9,-57 - 2016: -1,-57 - 2017: -1,-56 - 2018: -1,-55 - 2019: -1,-54 - 2020: -1,-53 - 2021: -1,-52 - 2022: -1,-51 - 2023: -1,-50 - 2024: -1,-49 - 2025: -1,-46 - 2026: -1,-45 - 2027: -1,-44 - 2028: -1,-43 - 2029: -1,-42 - 2030: -1,-41 - 2350: -1,-47 - 2351: -1,-48 + 1016: -48,-2 + 1018: -48,3 + 1053: -33,-2 + 1118: -1,18 + 1119: -1,19 + 1120: -1,20 + 1121: -1,21 + 1122: -1,22 + 1123: -1,23 + 1124: -1,24 + 1125: -1,25 + 1126: -1,29 + 1127: -1,30 + 1128: -2,31 + 1129: -2,32 + 1130: -2,33 + 1131: -2,34 + 1132: -2,35 + 1133: -2,36 + 1134: -2,37 + 1135: -2,38 + 1150: -13,53 + 1152: -12,53 + 1153: -11,53 + 1154: -10,53 + 1155: -9,53 + 1160: -8,50 + 1161: -7,50 + 1162: -6,50 + 1163: -5,50 + 1164: -5,50 + 1165: -4,50 + 1166: -3,50 + 1167: -3,51 + 1168: -3,52 + 1169: -3,53 + 1170: -2,53 + 1171: -1,53 + 1172: 0,53 + 1174: 1,53 + 1216: -2,26 + 1217: -2,27 + 1218: -2,27 + 1219: -2,28 + 1255: 53,1 + 1256: 53,2 + 1257: 54,3 + 1258: 55,4 + 1259: 56,5 + 1300: 45,-3 + 1301: 45,-2 + 1313: 59,-3 + 1327: 57,5 + 1328: 58,5 + 1329: 59,5 + 1330: 60,5 + 1331: 61,5 + 1337: 62,0 + 1931: 3,-83 + 1932: 3,-82 + 1933: 3,-81 + 1934: 3,-80 + 1935: 3,-79 + 1936: 3,-78 + 1937: 3,-77 + 1938: 3,-76 + 1939: 3,-75 + 1940: 3,-74 + 1941: 3,-73 + 1942: 3,-72 + 1943: 3,-71 + 1944: 3,-70 + 1945: 3,-69 + 1946: 3,-68 + 1947: 3,-67 + 1948: 3,-66 + 1949: 3,-65 + 1950: 3,-64 + 1985: -10,-81 + 1986: -10,-80 + 1987: -10,-79 + 1988: -10,-78 + 1989: -11,-77 + 1990: -11,-76 + 1991: -11,-75 + 1992: -11,-75 + 1993: -10,-75 + 1994: -10,-74 + 1995: -10,-73 + 1996: -10,-72 + 1997: -10,-71 + 1998: -11,-70 + 1999: -11,-69 + 2000: -11,-68 + 2001: -10,-68 + 2002: -10,-67 + 2003: -10,-66 + 2004: -10,-65 + 2005: -10,-64 + 2006: -10,-63 + 2007: -10,-62 + 2008: -10,-61 + 2009: -10,-60 + 2010: -10,-59 + 2011: -10,-58 + 2012: -10,-57 + 2013: -9,-57 + 2014: -1,-57 + 2015: -1,-56 + 2016: -1,-55 + 2017: -1,-54 + 2018: -1,-53 + 2019: -1,-52 + 2020: -1,-51 + 2021: -1,-50 + 2022: -1,-49 + 2023: -1,-46 + 2024: -1,-45 + 2025: -1,-44 + 2026: -1,-43 + 2027: -1,-42 + 2028: -1,-41 + 2348: -1,-47 + 2349: -1,-48 - node: color: '#D4D4D433' id: QuarterTileOverlayGreyscale decals: - 3139: 0,48 - 3140: 0,47 - 3141: 0,46 - 3142: 0,45 - 3143: 0,44 - 3144: 0,43 - 3145: 0,42 - 3146: 0,41 - 3147: 0,40 - 3148: 0,38 - 3149: 0,39 - 3150: -1,38 + 3137: 0,48 + 3138: 0,47 + 3139: 0,46 + 3140: 0,45 + 3141: 0,44 + 3142: 0,43 + 3143: 0,42 + 3144: 0,41 + 3145: 0,40 + 3146: 0,38 + 3147: 0,39 + 3148: -1,38 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 2734: 57,-13 + 2732: 57,-13 - node: color: '#1D1D21FF' id: QuarterTileOverlayGreyscale180 decals: - 2434: 43,39 - 2437: 43,36 + 2432: 43,39 + 2435: 43,36 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 630: 27,5 - 1346: 33,-9 + 628: 27,5 + 1344: 33,-9 + 3598: 25,12 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -4820,305 +4852,306 @@ entities: 381: -16,-28 382: -15,-28 391: -19,-28 - 522: -31,-31 - 523: -31,-33 - 526: -22,-36 - 527: -22,-35 - 528: -24,-28 - 539: -14,-28 - 551: -27,-40 - 569: -12,-31 - 581: -12,-33 - 3030: -36,-32 - 3031: -37,-32 - 3032: -38,-32 - 3038: -35,-32 - 3040: -34,-32 + 520: -31,-31 + 521: -31,-33 + 524: -22,-36 + 525: -22,-35 + 526: -24,-28 + 537: -14,-28 + 549: -27,-40 + 567: -12,-31 + 579: -12,-33 + 3028: -36,-32 + 3029: -37,-32 + 3030: -38,-32 + 3036: -35,-32 + 3038: -34,-32 - node: color: '#639137FF' id: QuarterTileOverlayGreyscale180 decals: - 639: 4,22 + 637: 4,22 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 826: -14,-48 + 824: -14,-48 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1041: -18,-1 - 1042: -19,-1 - 1043: -20,-1 - 1044: -21,-1 - 1045: -22,-1 - 1046: -23,-1 - 1047: -27,-1 - 1048: -28,-1 - 1049: -29,-1 - 1050: -29,-2 - 1051: -31,-2 - 1053: -33,-2 - 1056: -34,-1 - 1057: -35,-1 - 1058: -36,-1 - 1059: -37,-1 - 1060: -38,-1 - 1061: -39,-1 - 1062: -40,-1 - 1063: -41,-1 - 1064: -41,-2 - 1065: -41,-3 - 1066: -41,-4 - 1067: -41,-5 - 1068: -41,-6 - 1069: -41,-7 - 1070: -41,-8 - 1071: -41,-9 - 1072: -41,-10 - 1073: -41,-13 - 1074: -41,-14 - 1075: -41,-15 - 1076: -41,-16 - 1077: -41,-17 - 1078: -41,-18 - 1079: -41,-19 - 1080: -41,-20 - 1081: -41,-21 - 1082: -41,-22 - 1083: -41,-23 - 1084: -41,-24 - 1085: -41,-25 - 1086: -41,-26 - 1087: -41,-27 - 1088: -41,-28 - 1089: -41,-29 - 1090: -41,-30 - 1091: -41,-31 - 1092: -43,-31 - 1159: -9,53 - 1160: -9,52 - 1161: -9,51 - 1177: 1,53 - 1202: 2,31 - 1205: -2,31 - 1268: 52,-1 - 1269: 51,-1 - 1270: 50,-1 - 1271: 49,-1 - 1272: 48,-1 - 1273: 47,-2 - 1274: 47,-3 - 1275: 46,-3 - 1276: 44,-1 - 1277: 42,-1 - 1278: 39,-1 - 1279: 38,-1 - 1280: 37,-1 - 1281: 36,-1 - 1282: 35,-1 - 1283: 34,-1 - 1284: 33,-1 - 1285: 32,-1 - 1286: 31,-1 - 1287: 29,-1 - 1288: 28,-2 - 1289: 27,-2 - 1290: 26,-2 - 1291: 25,-1 - 1292: 24,-1 - 1293: 23,-1 - 1294: 22,-1 - 1295: 21,-1 - 1296: 20,-1 - 1297: 19,-1 - 1298: 18,-1 - 1301: 45,-3 - 1316: 57,2 - 1317: 57,1 - 1318: 57,0 - 1319: 57,-1 - 1334: 61,5 - 1335: 61,4 - 1336: 61,3 - 1337: 61,2 - 1338: 61,1 - 1342: 62,-1 - 1343: 30,-1 - 1884: 1,-19 - 1885: 1,-20 - 1886: 1,-18 - 1887: 1,-21 - 1888: 1,-22 - 1889: 1,-23 - 1890: 2,-26 - 1891: 2,-28 - 1892: 1,-29 - 1893: 1,-30 - 1894: 1,-31 - 1895: 1,-32 - 1931: 4,-83 - 1932: 3,-83 - 1953: 2,-63 - 1954: 1,-63 - 1955: 0,-63 - 1956: -1,-63 - 1957: -2,-63 - 1964: -3,-63 - 2042: 1,-33 - 2043: 1,-34 - 2044: 1,-35 - 2045: 1,-36 - 2046: 1,-37 - 2047: 1,-38 - 2048: 1,-39 - 2049: 1,-40 - 2069: 1,-25 + 1039: -18,-1 + 1040: -19,-1 + 1041: -20,-1 + 1042: -21,-1 + 1043: -22,-1 + 1044: -23,-1 + 1045: -27,-1 + 1046: -28,-1 + 1047: -29,-1 + 1048: -29,-2 + 1049: -31,-2 + 1051: -33,-2 + 1054: -34,-1 + 1055: -35,-1 + 1056: -36,-1 + 1057: -37,-1 + 1058: -38,-1 + 1059: -39,-1 + 1060: -40,-1 + 1061: -41,-1 + 1062: -41,-2 + 1063: -41,-3 + 1064: -41,-4 + 1065: -41,-5 + 1066: -41,-6 + 1067: -41,-7 + 1068: -41,-8 + 1069: -41,-9 + 1070: -41,-10 + 1071: -41,-13 + 1072: -41,-14 + 1073: -41,-15 + 1074: -41,-16 + 1075: -41,-17 + 1076: -41,-18 + 1077: -41,-19 + 1078: -41,-20 + 1079: -41,-21 + 1080: -41,-22 + 1081: -41,-23 + 1082: -41,-24 + 1083: -41,-25 + 1084: -41,-26 + 1085: -41,-27 + 1086: -41,-28 + 1087: -41,-29 + 1088: -41,-30 + 1089: -41,-31 + 1090: -43,-31 + 1157: -9,53 + 1158: -9,52 + 1159: -9,51 + 1175: 1,53 + 1200: 2,31 + 1203: -2,31 + 1266: 52,-1 + 1267: 51,-1 + 1268: 50,-1 + 1269: 49,-1 + 1270: 48,-1 + 1271: 47,-2 + 1272: 47,-3 + 1273: 46,-3 + 1274: 44,-1 + 1275: 42,-1 + 1276: 39,-1 + 1277: 38,-1 + 1278: 37,-1 + 1279: 36,-1 + 1280: 35,-1 + 1281: 34,-1 + 1282: 33,-1 + 1283: 32,-1 + 1284: 31,-1 + 1285: 29,-1 + 1286: 28,-2 + 1287: 27,-2 + 1288: 26,-2 + 1289: 25,-1 + 1290: 24,-1 + 1291: 23,-1 + 1292: 22,-1 + 1293: 21,-1 + 1294: 20,-1 + 1295: 19,-1 + 1296: 18,-1 + 1299: 45,-3 + 1314: 57,2 + 1315: 57,1 + 1316: 57,0 + 1317: 57,-1 + 1332: 61,5 + 1333: 61,4 + 1334: 61,3 + 1335: 61,2 + 1336: 61,1 + 1340: 62,-1 + 1341: 30,-1 + 1882: 1,-19 + 1883: 1,-20 + 1884: 1,-18 + 1885: 1,-21 + 1886: 1,-22 + 1887: 1,-23 + 1888: 2,-26 + 1889: 2,-28 + 1890: 1,-29 + 1891: 1,-30 + 1892: 1,-31 + 1893: 1,-32 + 1929: 4,-83 + 1930: 3,-83 + 1951: 2,-63 + 1952: 1,-63 + 1953: 0,-63 + 1954: -1,-63 + 1955: -2,-63 + 1962: -3,-63 + 2040: 1,-33 + 2041: 1,-34 + 2042: 1,-35 + 2043: 1,-36 + 2044: 1,-37 + 2045: 1,-38 + 2046: 1,-39 + 2047: 1,-40 + 2067: 1,-25 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 1345: 30,-9 - 1349: 30,-7 - 1350: 30,-4 - 1353: 30,-6 + 1343: 30,-9 + 1347: 30,-7 + 1348: 30,-4 + 1351: 30,-6 + 3599: 22,12 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: 249: -7,-38 - 553: -25,-40 - 738: -2,-36 - 3035: -37,-32 + 551: -25,-40 + 736: -2,-36 + 3033: -37,-32 - node: color: '#639137FF' id: QuarterTileOverlayGreyscale270 decals: - 638: 9,22 + 636: 9,22 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 827: -11,-48 + 825: -11,-48 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 1019: -48,3 - 1052: -31,-2 - 1054: -33,-2 - 1094: -43,-29 - 1095: -43,-28 - 1096: -43,-27 - 1097: -43,-26 - 1098: -43,-25 - 1099: -43,-24 - 1100: -43,-23 - 1101: -43,-22 - 1102: -43,-21 - 1103: -43,-20 - 1104: -43,-19 - 1105: -43,-18 - 1106: -43,-14 - 1107: -43,-13 - 1108: -43,-12 - 1109: -43,-8 - 1110: -43,-7 - 1111: -43,-6 - 1112: -44,-5 - 1113: -45,-5 - 1114: -46,-5 - 1115: -47,-5 - 1116: -48,-5 - 1117: -43,-5 - 1118: -29,-2 - 1138: -4,49 - 1139: -5,49 - 1140: -6,49 - 1141: -7,49 - 1142: -8,49 - 1143: -9,49 - 1144: -10,49 - 1145: -11,49 - 1146: -12,49 - 1147: -13,49 - 1148: -13,50 - 1149: -13,51 - 1150: -13,52 - 1151: -13,53 - 1203: 2,31 - 1204: -2,31 - 1262: 53,-3 - 1263: 54,-4 - 1264: 55,-5 - 1265: 56,-6 - 1266: 53,-1 - 1267: 53,-2 - 1299: 41,-1 - 1300: 45,-3 - 1314: 59,2 - 1320: 59,-1 - 1321: 59,0 - 1322: 59,1 - 1323: 61,-6 - 1340: 62,-1 - 1958: -8,-63 - 1959: -7,-63 - 1960: -6,-63 - 1961: -5,-63 - 1962: -4,-63 - 1963: -3,-63 - 1985: -9,-83 - 1986: -10,-83 - 2031: -1,-32 - 2032: -1,-31 - 2033: -1,-29 - 2034: -1,-30 - 2035: -1,-26 - 2036: -2,-23 - 2037: -2,-22 - 2038: -1,-21 - 2039: -1,-20 - 2040: -1,-19 - 2041: -1,-18 - 2062: 4,-51 - 2063: 3,-51 - 2064: 2,-51 - 2065: -1,-24 - 2066: -1,-25 - 2067: -1,-27 - 2068: -1,-28 + 1017: -48,3 + 1050: -31,-2 + 1052: -33,-2 + 1092: -43,-29 + 1093: -43,-28 + 1094: -43,-27 + 1095: -43,-26 + 1096: -43,-25 + 1097: -43,-24 + 1098: -43,-23 + 1099: -43,-22 + 1100: -43,-21 + 1101: -43,-20 + 1102: -43,-19 + 1103: -43,-18 + 1104: -43,-14 + 1105: -43,-13 + 1106: -43,-12 + 1107: -43,-8 + 1108: -43,-7 + 1109: -43,-6 + 1110: -44,-5 + 1111: -45,-5 + 1112: -46,-5 + 1113: -47,-5 + 1114: -48,-5 + 1115: -43,-5 + 1116: -29,-2 + 1136: -4,49 + 1137: -5,49 + 1138: -6,49 + 1139: -7,49 + 1140: -8,49 + 1141: -9,49 + 1142: -10,49 + 1143: -11,49 + 1144: -12,49 + 1145: -13,49 + 1146: -13,50 + 1147: -13,51 + 1148: -13,52 + 1149: -13,53 + 1201: 2,31 + 1202: -2,31 + 1260: 53,-3 + 1261: 54,-4 + 1262: 55,-5 + 1263: 56,-6 + 1264: 53,-1 + 1265: 53,-2 + 1297: 41,-1 + 1298: 45,-3 + 1312: 59,2 + 1318: 59,-1 + 1319: 59,0 + 1320: 59,1 + 1321: 61,-6 + 1338: 62,-1 + 1956: -8,-63 + 1957: -7,-63 + 1958: -6,-63 + 1959: -5,-63 + 1960: -4,-63 + 1961: -3,-63 + 1983: -9,-83 + 1984: -10,-83 + 2029: -1,-32 + 2030: -1,-31 + 2031: -1,-29 + 2032: -1,-30 + 2033: -1,-26 + 2034: -2,-23 + 2035: -2,-22 + 2036: -1,-21 + 2037: -1,-20 + 2038: -1,-19 + 2039: -1,-18 + 2060: 4,-51 + 2061: 3,-51 + 2062: 2,-51 + 2063: -1,-24 + 2064: -1,-25 + 2065: -1,-27 + 2066: -1,-28 - node: color: '#D4D4D433' id: QuarterTileOverlayGreyscale270 decals: - 3135: -3,49 - 3136: -2,49 - 3137: -1,49 + 3133: -3,49 + 3134: -2,49 + 3135: -1,49 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 2733: 57,-9 + 2731: 57,-9 - node: color: '#1D1D21FF' id: QuarterTileOverlayGreyscale90 decals: - 2435: 42,40 + 2433: 42,40 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 629: 27,8 - 1347: 33,-3 + 627: 27,8 + 1345: 33,-3 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: 247: -8,-40 - 552: -27,-42 - 3034: -38,-33 + 550: -27,-42 + 3032: -38,-33 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 @@ -5128,246 +5161,249 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 833: -14,-50 + 831: -14,-50 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1021: -48,3 - 1022: -47,3 - 1023: -46,3 - 1024: -46,2 - 1025: -46,1 - 1026: -45,1 - 1027: -34,1 - 1028: -33,1 - 1029: -32,1 - 1030: -31,1 - 1031: -30,1 - 1032: -29,1 - 1033: -28,1 - 1034: -27,1 - 1035: -23,1 - 1036: -22,1 - 1037: -21,1 - 1038: -20,1 - 1039: -19,1 - 1040: -18,1 - 1093: -44,-30 - 1119: -29,-2 - 1153: -13,53 - 1158: -9,53 - 1175: 1,53 - 1178: 1,52 - 1179: 1,51 - 1180: 1,50 - 1181: 1,48 - 1182: 1,47 - 1183: 1,46 - 1184: 1,45 - 1185: 1,44 - 1186: 1,43 - 1187: 1,42 - 1188: 1,41 - 1189: 1,40 - 1190: 1,39 - 1191: 1,38 - 1192: 2,38 - 1193: 2,37 - 1194: 2,37 - 1195: 2,36 - 1196: 2,35 - 1197: 2,34 - 1198: 2,33 - 1199: 2,32 - 1200: 2,31 - 1201: 1,30 - 1206: 1,29 - 1207: 1,25 - 1208: 1,24 - 1209: 1,23 - 1210: 1,22 - 1211: 1,21 - 1212: 1,20 - 1213: 1,20 - 1214: 1,19 - 1215: 1,18 - 1216: 2,26 - 1217: 2,27 - 1222: 18,1 - 1223: 19,1 - 1224: 20,1 - 1225: 21,1 - 1226: 22,1 - 1227: 23,1 - 1228: 24,1 - 1229: 25,1 - 1230: 26,1 - 1231: 27,1 - 1232: 28,1 - 1233: 29,1 - 1234: 30,1 - 1235: 31,1 - 1236: 32,1 - 1237: 33,1 - 1238: 34,2 - 1239: 35,2 - 1240: 36,2 - 1241: 37,1 - 1242: 38,1 - 1243: 39,1 - 1244: 40,1 - 1245: 41,1 - 1246: 42,1 - 1247: 43,1 - 1248: 44,1 - 1249: 45,1 - 1250: 46,1 - 1251: 47,1 - 1252: 48,1 - 1253: 49,1 - 1254: 50,1 - 1255: 51,1 - 1256: 52,1 - 1313: 57,-3 - 1324: 61,-6 - 1325: 61,-5 - 1326: 61,-4 - 1327: 61,-3 - 1328: 61,-2 - 1341: 62,0 - 1896: 1,-52 - 1897: 1,-53 - 1898: 1,-54 - 1899: 1,-55 - 1900: 1,-56 - 1901: 1,-57 - 1902: 1,-58 - 1903: 1,-59 - 1904: 1,-60 - 1905: 2,-60 - 1906: 3,-60 - 1907: 4,-60 - 1908: 4,-61 - 1909: 4,-62 - 1910: 4,-63 - 1911: 4,-64 - 1912: 4,-65 - 1913: 4,-66 - 1914: 4,-68 - 1915: 5,-68 - 1916: 5,-69 - 1917: 5,-70 - 1918: 4,-71 - 1919: 4,-67 - 1920: 4,-72 - 1921: 4,-73 - 1922: 4,-74 - 1923: 4,-75 - 1924: 5,-75 - 1925: 5,-76 - 1926: 5,-77 - 1927: 4,-78 - 1928: 4,-79 - 1929: 4,-80 - 1930: 4,-81 - 1965: -9,-64 - 1966: -9,-65 - 1967: -9,-66 - 1968: -9,-67 - 1969: -9,-68 - 1970: -9,-69 - 1971: -9,-70 - 1972: -9,-71 - 1973: -9,-72 - 1974: -9,-73 - 1975: -9,-74 - 1976: -9,-75 - 1977: -9,-76 - 1978: -9,-77 - 1979: -9,-78 - 1980: -9,-79 - 1981: -9,-80 - 1982: -9,-81 - 1983: -9,-82 - 1984: -9,-83 - 2050: 1,-41 - 2051: 2,-42 - 2052: 3,-42 - 2053: 3,-43 - 2054: 3,-44 - 2055: 3,-45 - 2056: 3,-46 - 2057: 3,-47 - 2058: 3,-48 - 2059: 4,-49 - 2060: 4,-50 - 2061: 4,-51 + 1019: -48,3 + 1020: -47,3 + 1021: -46,3 + 1022: -46,2 + 1023: -46,1 + 1024: -45,1 + 1025: -34,1 + 1026: -33,1 + 1027: -32,1 + 1028: -31,1 + 1029: -30,1 + 1030: -29,1 + 1031: -28,1 + 1032: -27,1 + 1033: -23,1 + 1034: -22,1 + 1035: -21,1 + 1036: -20,1 + 1037: -19,1 + 1038: -18,1 + 1091: -44,-30 + 1117: -29,-2 + 1151: -13,53 + 1156: -9,53 + 1173: 1,53 + 1176: 1,52 + 1177: 1,51 + 1178: 1,50 + 1179: 1,48 + 1180: 1,47 + 1181: 1,46 + 1182: 1,45 + 1183: 1,44 + 1184: 1,43 + 1185: 1,42 + 1186: 1,41 + 1187: 1,40 + 1188: 1,39 + 1189: 1,38 + 1190: 2,38 + 1191: 2,37 + 1192: 2,37 + 1193: 2,36 + 1194: 2,35 + 1195: 2,34 + 1196: 2,33 + 1197: 2,32 + 1198: 2,31 + 1199: 1,30 + 1204: 1,29 + 1205: 1,25 + 1206: 1,24 + 1207: 1,23 + 1208: 1,22 + 1209: 1,21 + 1210: 1,20 + 1211: 1,20 + 1212: 1,19 + 1213: 1,18 + 1214: 2,26 + 1215: 2,27 + 1220: 18,1 + 1221: 19,1 + 1222: 20,1 + 1223: 21,1 + 1224: 22,1 + 1225: 23,1 + 1226: 24,1 + 1227: 25,1 + 1228: 26,1 + 1229: 27,1 + 1230: 28,1 + 1231: 29,1 + 1232: 30,1 + 1233: 31,1 + 1234: 32,1 + 1235: 33,1 + 1236: 34,2 + 1237: 35,2 + 1238: 36,2 + 1239: 37,1 + 1240: 38,1 + 1241: 39,1 + 1242: 40,1 + 1243: 41,1 + 1244: 42,1 + 1245: 43,1 + 1246: 44,1 + 1247: 45,1 + 1248: 46,1 + 1249: 47,1 + 1250: 48,1 + 1251: 49,1 + 1252: 50,1 + 1253: 51,1 + 1254: 52,1 + 1311: 57,-3 + 1322: 61,-6 + 1323: 61,-5 + 1324: 61,-4 + 1325: 61,-3 + 1326: 61,-2 + 1339: 62,0 + 1894: 1,-52 + 1895: 1,-53 + 1896: 1,-54 + 1897: 1,-55 + 1898: 1,-56 + 1899: 1,-57 + 1900: 1,-58 + 1901: 1,-59 + 1902: 1,-60 + 1903: 2,-60 + 1904: 3,-60 + 1905: 4,-60 + 1906: 4,-61 + 1907: 4,-62 + 1908: 4,-63 + 1909: 4,-64 + 1910: 4,-65 + 1911: 4,-66 + 1912: 4,-68 + 1913: 5,-68 + 1914: 5,-69 + 1915: 5,-70 + 1916: 4,-71 + 1917: 4,-67 + 1918: 4,-72 + 1919: 4,-73 + 1920: 4,-74 + 1921: 4,-75 + 1922: 5,-75 + 1923: 5,-76 + 1924: 5,-77 + 1925: 4,-78 + 1926: 4,-79 + 1927: 4,-80 + 1928: 4,-81 + 1963: -9,-64 + 1964: -9,-65 + 1965: -9,-66 + 1966: -9,-67 + 1967: -9,-68 + 1968: -9,-69 + 1969: -9,-70 + 1970: -9,-71 + 1971: -9,-72 + 1972: -9,-73 + 1973: -9,-74 + 1974: -9,-75 + 1975: -9,-76 + 1976: -9,-77 + 1977: -9,-78 + 1978: -9,-79 + 1979: -9,-80 + 1980: -9,-81 + 1981: -9,-82 + 1982: -9,-83 + 2048: 1,-41 + 2049: 2,-42 + 2050: 3,-42 + 2051: 3,-43 + 2052: 3,-44 + 2053: 3,-45 + 2054: 3,-46 + 2055: 3,-47 + 2056: 3,-48 + 2057: 4,-49 + 2058: 4,-50 + 2059: 4,-51 - node: color: '#D4D4D433' id: QuarterTileOverlayGreyscale90 decals: - 3138: 1,49 - 3209: -35,1 + 3136: 1,49 + 3207: -35,1 - node: color: '#FFFFFFFF' id: Rock06 decals: - 2684: -6.549043,-18.995234 + 2682: -6.549043,-18.995234 - node: color: '#FFFFFFFF' id: Rock07 decals: - 2685: -10.21571,-19.245234 - 2686: -19.922543,-12.716649 - 2687: -18.60001,-10.259648 - 2688: -18.846893,-8.106161 + 2683: -10.21571,-19.245234 + 2684: -19.922543,-12.716649 + 2685: -18.60001,-10.259648 + 2686: -18.846893,-8.106161 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 956: 31,0 + 954: 31,0 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 955: 32,0 + 953: 32,0 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 954: 33,0 + 952: 33,0 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 953: 34,0 + 951: 34,0 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 952: 35,0 + 950: 35,0 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 951: 36,0 + 949: 36,0 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 950: 37,0 + 948: 37,0 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClearGreyscale decals: - 3369: -56,-4 + 3367: -56,-4 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale decals: - 582: 19,9 + 580: 19,9 + 3574: 21,18 + 3600: 28,15 + 3601: 29,16 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale @@ -5377,7 +5413,7 @@ entities: color: '#639137FF' id: ThreeQuarterTileOverlayGreyscale decals: - 661: 3,24 + 659: 3,24 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale @@ -5392,25 +5428,29 @@ entities: color: '#C6FF91FF' id: ThreeQuarterTileOverlayGreyscale decals: - 3025: -39,-31 + 3023: -39,-31 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 decals: - 624: 27,4 - 625: 28,5 - 626: 28,5 + 622: 27,4 + 623: 28,5 + 624: 28,5 + 3578: 25,11 + 3579: 26,12 + 3604: 33,12 + 3605: 32,11 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: 489: -14,-36 - 540: -12,-28 + 538: -12,-28 - node: color: '#639137FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 664: 10,19 + 662: 10,19 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 @@ -5426,7 +5466,11 @@ entities: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 decals: - 583: 19,4 + 581: 19,4 + 3576: 21,12 + 3577: 22,11 + 3606: 29,11 + 3607: 28,12 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 @@ -5436,7 +5480,7 @@ entities: color: '#639137FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 663: 3,19 + 661: 3,19 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 @@ -5452,13 +5496,16 @@ entities: color: '#C6FF91FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3016: -39,-35 + 3014: -39,-35 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 627: 28,8 - 628: 27,9 + 625: 28,8 + 626: 27,9 + 3575: 26,18 + 3602: 32,16 + 3603: 33,15 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 @@ -5468,7 +5515,7 @@ entities: color: '#639137FF' id: ThreeQuarterTileOverlayGreyscale90 decals: - 662: 10,24 + 660: 10,24 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 @@ -5478,200 +5525,201 @@ entities: 174: -29,-11 175: -32,-11 483: -29,-23 - 3036: -35,-31 + 3034: -35,-31 - node: color: '#FFFFFFFF' id: WarnBox decals: - 3559: -24,36 - 3560: -25,37 - 3561: -26,37 - 3562: -27,37 - 3563: -28,37 - 3564: -29,37 - 3565: -30,37 - 3566: -31,36 - 3567: -25,35 - 3568: -26,35 - 3569: -28,35 - 3570: -29,35 - 3571: -30,35 + 3557: -24,36 + 3558: -25,37 + 3559: -26,37 + 3560: -27,37 + 3561: -28,37 + 3562: -29,37 + 3563: -30,37 + 3564: -31,36 + 3565: -25,35 + 3566: -26,35 + 3567: -28,35 + 3568: -29,35 + 3569: -30,35 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNW decals: - 3492: -6,-26 + 3490: -6,-26 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW decals: - 3508: -6,-29 + 3506: -6,-29 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 3342: -58,-13 - 3558: -22,42 - 3574: -31,35 + 3340: -58,-13 + 3556: -22,42 + 3572: -31,35 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 981: -56,-7 - 985: -56,-3 - 1001: -54,-13 - 3557: -18,42 - 3575: -24,35 + 979: -56,-7 + 983: -56,-3 + 999: -54,-13 + 3555: -18,42 + 3573: -24,35 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 3341: -58,-8 - 3555: -22,44 - 3573: -31,37 + 3339: -58,-8 + 3553: -22,44 + 3571: -31,37 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 979: -56,-1 - 980: -56,-1 - 986: -56,-5 - 1000: -54,-8 - 3556: -18,44 - 3572: -24,37 + 977: -56,-1 + 978: -56,-1 + 984: -56,-5 + 998: -54,-8 + 3554: -18,44 + 3570: -24,37 - node: color: '#FFFFFFFF' id: WarnFull decals: - 2481: 12,53 - 2482: 13,53 - 2483: 14,53 + 2479: 12,53 + 2480: 13,53 + 2481: 14,53 - node: color: '#BC863FFF' id: WarnFullGreyscale decals: - 3365: -51,-1 - 3366: -51,0 - 3367: -52,-1 - 3368: -52,0 + 3363: -51,-1 + 3364: -51,0 + 3365: -52,-1 + 3366: -52,0 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 2463: 9,49 - 2465: 19,49 - 2466: 19,48 - 2467: 19,47 - 2468: 19,46 - 3336: -58,-12 - 3337: -58,-11 - 3338: -58,-10 - 3339: -58,-9 - 3551: -22,43 + 2461: 9,49 + 2463: 19,49 + 2464: 19,48 + 2465: 19,47 + 2466: 19,46 + 3334: -58,-12 + 3335: -58,-11 + 3336: -58,-10 + 3337: -58,-9 + 3549: -22,43 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 3493: -5,-26 - 3494: -4,-26 - 3495: -3,-26 - 3505: -9,-29 - 3506: -8,-29 - 3507: -7,-29 + 3491: -5,-26 + 3492: -4,-26 + 3493: -3,-26 + 3503: -9,-29 + 3504: -8,-29 + 3505: -7,-29 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 3498: -9,-30 - 3499: -8,-30 - 3500: -7,-30 - 3501: -6,-30 - 3502: -5,-30 - 3503: -4,-30 - 3504: -3,-30 + 3496: -9,-30 + 3497: -8,-30 + 3498: -7,-30 + 3499: -6,-30 + 3500: -5,-30 + 3501: -4,-30 + 3502: -3,-30 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 982: -56,-5 - 983: -56,-4 - 984: -56,-3 - 3496: -6,-27 - 3497: -6,-28 + 980: -56,-5 + 981: -56,-4 + 982: -56,-3 + 3494: -6,-27 + 3495: -6,-28 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 976: -57,-1 - 990: -57,-8 - 991: -56,-8 - 992: -56,-8 - 993: -55,-8 - 3343: -58,-1 - 3548: -19,44 - 3549: -20,44 - 3550: -21,44 + 974: -57,-1 + 988: -57,-8 + 989: -56,-8 + 990: -56,-8 + 991: -55,-8 + 3341: -58,-1 + 3546: -19,44 + 3547: -20,44 + 3548: -21,44 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 977: -56,-6 - 978: -56,-2 - 994: -54,-10 - 995: -54,-11 - 996: -54,-12 - 2464: 17,49 - 3340: -54,-9 - 3542: 21,46 - 3543: 21,47 - 3544: 21,48 - 3545: 21,49 - 3547: -18,43 + 975: -56,-6 + 976: -56,-2 + 992: -54,-10 + 993: -54,-11 + 994: -54,-12 + 2462: 17,49 + 3338: -54,-9 + 3540: 21,46 + 3541: 21,47 + 3542: 21,48 + 3543: 21,49 + 3545: -18,43 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 975: -57,-7 - 997: -55,-13 - 998: -56,-13 - 999: -57,-13 - 2460: 12,46 - 2461: 13,46 - 2462: 14,46 - 2473: 7,51 - 2474: 8,51 - 2475: 9,51 - 2476: 17,51 - 2477: 18,51 - 2478: 19,51 - 2479: 15,53 - 2480: 11,53 - 3344: -58,-7 - 3552: -21,42 - 3553: -20,42 - 3554: -19,42 + 973: -57,-7 + 995: -55,-13 + 996: -56,-13 + 997: -57,-13 + 2458: 12,46 + 2459: 13,46 + 2460: 14,46 + 2471: 7,51 + 2472: 8,51 + 2473: 9,51 + 2474: 17,51 + 2475: 18,51 + 2476: 19,51 + 2477: 15,53 + 2478: 11,53 + 3342: -58,-7 + 3550: -21,42 + 3551: -20,42 + 3552: -19,42 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: 266: -30,-39 286: -29,-35 - 685: 37,-7 - 691: 44,-5 - 739: -4,38 - 740: -12,33 - 781: -16,32 - 797: -19,-3 - 851: -49,7 - 854: -53,12 - 855: -51,10 - 897: 36,18 - 904: 40,16 - 924: 44,-9 - 931: 17,-30 - 932: 20,-30 - 2831: 41,23 - 3066: 19,37 + 683: 37,-7 + 689: 44,-5 + 737: -4,38 + 738: -12,33 + 779: -16,32 + 795: -19,-3 + 849: -49,7 + 852: -53,12 + 853: -51,10 + 895: 36,18 + 902: 40,16 + 922: 44,-9 + 929: 17,-30 + 930: 20,-30 + 2829: 41,23 + 3064: 19,37 + 3614: 10,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw @@ -5679,108 +5727,111 @@ entities: 269: -31,-39 270: -31,-39 287: -33,-35 - 678: 35,-7 - 679: 35,-3 - 692: 39,-5 - 741: -14,38 - 742: -14,33 - 782: -19,32 - 798: -22,-3 - 850: -50,7 - 856: -55,12 - 857: -57,10 - 898: 35,18 - 905: 38,16 - 906: 35,15 - 921: 42,-9 - 933: 13,-30 - 934: 19,-30 - 2832: 39,23 - 3067: 12,37 + 676: 35,-7 + 677: 35,-3 + 690: 39,-5 + 739: -14,38 + 740: -14,33 + 780: -19,32 + 796: -22,-3 + 848: -50,7 + 854: -55,12 + 855: -57,10 + 896: 35,18 + 903: 38,16 + 904: 35,15 + 919: 42,-9 + 931: 13,-30 + 932: 19,-30 + 2830: 39,23 + 3065: 12,37 + 3615: 7,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 268: -30,-41 297: -29,-37 - 689: 37,-5 - 704: 44,-7 - 743: -12,31 - 744: -4,31 - 783: -16,27 - 799: -19,-5 - 848: -49,5 - 859: -51,9 - 889: 41,18 - 900: 36,17 - 901: 40,11 - 922: 44,-10 - 935: 17,-32 - 936: 20,-32 - 3077: 19,36 + 687: 37,-5 + 702: 44,-7 + 741: -12,31 + 742: -4,31 + 781: -16,27 + 797: -19,-5 + 846: -49,5 + 857: -51,9 + 887: 41,18 + 898: 36,17 + 899: 40,11 + 920: 44,-10 + 933: 17,-32 + 934: 20,-32 + 3075: 19,36 + 3617: 10,-21 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 267: -31,-41 295: -33,-37 - 676: 35,-5 - 677: 35,-9 - 693: 39,-7 - 745: -14,31 - 746: -14,35 - 747: -10,31 - 784: -19,27 - 800: -22,-5 - 849: -50,5 - 858: -57,9 - 888: 39,18 - 899: 35,17 - 902: 38,11 - 903: 35,12 - 923: 42,-10 - 937: 13,-32 - 938: 19,-32 + 674: 35,-5 + 675: 35,-9 + 691: 39,-7 + 743: -14,31 + 744: -14,35 + 745: -10,31 + 782: -19,27 + 798: -22,-5 + 847: -50,5 + 856: -57,9 + 886: 39,18 + 897: 35,17 + 900: 38,11 + 901: 35,12 + 921: 42,-10 + 935: 13,-32 + 936: 19,-32 + 3616: 7,-21 - node: color: '#FFFFFFFF' id: WoodTrimThinEndE decals: - 671: 38,-3 - 672: 38,-9 + 669: 38,-3 + 670: 38,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 919: 46,-5 + 917: 46,-5 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS decals: - 920: 46,-6 + 918: 46,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 687: 37,-9 - 870: -53,10 + 685: 37,-9 + 868: -53,10 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 871: -55,10 - 918: 38,15 + 869: -55,10 + 916: 38,15 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 690: 37,-3 - 3079: 17,36 + 688: 37,-3 + 3077: 17,36 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 777: -10,35 - 917: 38,12 + 775: -10,35 + 915: 38,12 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -5797,34 +5848,35 @@ entities: 279: -32.293655,-40.00201 280: -32.29232,-41.003887 298: -29,-36 - 686: 37,-8 - 688: 37,-4 - 705: 44,-6 - 754: -4,32 - 755: -4,33 - 756: -4,34 - 757: -4,35 - 758: -4,36 - 759: -4,37 - 760: -12,32 - 785: -16,31 - 786: -16,30 - 787: -16,29 - 788: -16,28 - 801: -19,-4 - 853: -49,6 - 869: -53,11 - 890: 41,19 - 891: 41,20 - 892: 41,21 - 907: 40,14 - 908: 40,15 - 909: 40,12 - 910: 40,13 - 939: 20,-31 - 940: 17,-31 - 2833: 41,22 - 3068: 17,35 + 684: 37,-8 + 686: 37,-4 + 703: 44,-6 + 752: -4,32 + 753: -4,33 + 754: -4,34 + 755: -4,35 + 756: -4,36 + 757: -4,37 + 758: -12,32 + 783: -16,31 + 784: -16,30 + 785: -16,29 + 786: -16,28 + 799: -19,-4 + 851: -49,6 + 867: -53,11 + 888: 41,19 + 889: 41,20 + 890: 41,21 + 905: 40,14 + 906: 40,15 + 907: 40,12 + 908: 40,13 + 937: 20,-31 + 938: 17,-31 + 2831: 41,22 + 3066: 17,35 + 3623: 10,-20 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -5834,46 +5886,48 @@ entities: 288: -32,-35 289: -31,-35 290: -30,-35 - 680: 36,-3 - 681: 37,-3 - 684: 36,-7 - 699: 40,-5 - 700: 41,-5 - 701: 41,-5 - 702: 42,-5 - 703: 43,-5 - 761: -5,38 - 762: -6,38 - 763: -7,38 - 764: -8,38 - 765: -9,38 - 766: -10,38 - 767: -11,38 - 768: -12,38 - 769: -13,38 - 770: -13,33 - 791: -17,32 - 792: -18,32 - 805: -21,-3 - 806: -20,-3 - 807: -19,-3 - 865: -54,12 - 866: -56,10 - 867: -52,10 - 913: 36,15 - 914: 37,15 - 926: 43,-9 - 946: 14,-30 - 947: 15,-30 - 948: 15,-30 - 949: 16,-30 - 2835: 40,23 - 3071: 13,37 - 3072: 14,37 - 3073: 15,37 - 3074: 16,37 - 3075: 17,37 - 3076: 18,37 + 678: 36,-3 + 679: 37,-3 + 682: 36,-7 + 697: 40,-5 + 698: 41,-5 + 699: 41,-5 + 700: 42,-5 + 701: 43,-5 + 759: -5,38 + 760: -6,38 + 761: -7,38 + 762: -8,38 + 763: -9,38 + 764: -10,38 + 765: -11,38 + 766: -12,38 + 767: -13,38 + 768: -13,33 + 789: -17,32 + 790: -18,32 + 803: -21,-3 + 804: -20,-3 + 805: -19,-3 + 863: -54,12 + 864: -56,10 + 865: -52,10 + 911: 36,15 + 912: 37,15 + 924: 43,-9 + 944: 14,-30 + 945: 15,-30 + 946: 15,-30 + 947: 16,-30 + 2833: 40,23 + 3069: 13,37 + 3070: 14,37 + 3071: 15,37 + 3072: 16,37 + 3073: 17,37 + 3074: 18,37 + 3621: 8,-19 + 3622: 9,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -5885,71 +5939,74 @@ entities: 292: -31,-37 293: -31,-37 294: -30,-37 - 673: 37,-9 - 674: 36,-9 - 675: 36,-5 - 695: 40,-7 - 696: 41,-7 - 697: 42,-7 - 698: 43,-7 - 748: -13,31 - 749: -9,31 - 750: -8,31 - 751: -7,31 - 752: -6,31 - 753: -5,31 - 778: -11,35 - 779: -12,35 - 780: -13,35 - 789: -17,27 - 790: -18,27 - 803: -21,-5 - 804: -20,-5 - 860: -56,9 - 861: -55,9 - 862: -54,9 - 863: -53,9 - 864: -52,9 - 893: 40,18 - 915: 36,12 - 916: 37,12 - 925: 43,-10 - 943: 14,-32 - 944: 15,-32 - 945: 16,-32 - 3078: 18,36 + 671: 37,-9 + 672: 36,-9 + 673: 36,-5 + 693: 40,-7 + 694: 41,-7 + 695: 42,-7 + 696: 43,-7 + 746: -13,31 + 747: -9,31 + 748: -8,31 + 749: -7,31 + 750: -6,31 + 751: -5,31 + 776: -11,35 + 777: -12,35 + 778: -13,35 + 787: -17,27 + 788: -18,27 + 801: -21,-5 + 802: -20,-5 + 858: -56,9 + 859: -55,9 + 860: -54,9 + 861: -53,9 + 862: -52,9 + 891: 40,18 + 913: 36,12 + 914: 37,12 + 923: 43,-10 + 941: 14,-32 + 942: 15,-32 + 943: 16,-32 + 3076: 18,36 + 3618: 9,-21 + 3619: 8,-21 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: 264: -31,-40 296: -33,-36 - 682: 35,-4 - 683: 35,-8 - 694: 39,-6 - 771: -14,37 - 772: -14,36 - 773: -14,32 - 774: -10,32 - 775: -10,33 - 776: -10,34 - 793: -19,31 - 794: -19,30 - 795: -19,29 - 796: -19,28 - 802: -22,-4 - 852: -50,6 - 868: -55,11 - 894: 39,19 - 895: 39,20 - 896: 39,21 - 911: 35,13 - 912: 35,14 - 941: 19,-31 - 942: 13,-31 - 2834: 39,22 - 3069: 12,35 - 3070: 12,36 + 680: 35,-4 + 681: 35,-8 + 692: 39,-6 + 769: -14,37 + 770: -14,36 + 771: -14,32 + 772: -10,32 + 773: -10,33 + 774: -10,34 + 791: -19,31 + 792: -19,30 + 793: -19,29 + 794: -19,28 + 800: -22,-4 + 850: -50,6 + 866: -55,11 + 892: 39,19 + 893: 39,20 + 894: 39,21 + 909: 35,13 + 910: 35,14 + 939: 19,-31 + 940: 13,-31 + 2832: 39,22 + 3067: 12,35 + 3068: 12,36 + 3620: 7,-20 - type: GridAtmosphere version: 2 data: @@ -6313,7 +6370,8 @@ entities: 1,6: 0: 65295 1,7: - 0: 65295 + 0: 62223 + 2: 3072 1,8: 0: 65535 2,5: @@ -6646,7 +6704,7 @@ entities: 0: 16383 1,-13: 0: 57104 - 2: 8 + 3: 8 2,-12: 0: 65308 2,-11: @@ -6655,7 +6713,7 @@ entities: 0: 28671 2,-13: 0: 7936 - 2: 8 + 3: 8 3,-12: 0: 62349 3,-11: @@ -6664,7 +6722,7 @@ entities: 0: 61182 3,-13: 0: 55040 - 2: 4 + 3: 4 3,-9: 0: 3822 4,-12: @@ -6792,7 +6850,7 @@ entities: 10,-10: 0: 62207 10,-13: - 2: 9902 + 3: 9902 11,-12: 0: 4913 11,-11: @@ -6801,7 +6859,7 @@ entities: 0: 65262 11,-13: 0: 4352 - 2: 127 + 3: 127 12,-10: 0: 65488 12,-9: @@ -6907,14 +6965,14 @@ entities: 12,6: 0: 64271 12,7: - 2: 16368 + 3: 16368 -12,-12: 0: 13119 -12,-13: 0: 65427 -13,-12: 0: 56524 - 3: 17 + 4: 17 -12,-11: 0: 60931 -13,-11: @@ -7012,70 +7070,70 @@ entities: -13,1: 0: 57296 -12,1: - 2: 36352 + 3: 36352 -12,3: - 2: 34956 + 3: 34956 -11,1: 0: 127 - 2: 30464 + 3: 30464 -12,2: - 2: 34952 + 3: 34952 -11,2: - 2: 255 - 4: 57344 + 3: 255 + 5: 57344 -12,4: - 2: 53192 + 3: 53192 -11,3: - 2: 61440 - 5: 224 + 3: 61440 + 6: 224 -10,1: 0: 40847 -10,2: - 2: 8755 + 3: 8755 0: 34952 -10,3: - 2: 12834 + 3: 12834 0: 34952 -10,4: - 2: 8738 + 3: 8738 0: 34952 -13,4: - 2: 32630 + 3: 32630 -12,7: - 2: 52476 + 3: 52476 -13,7: - 2: 26615 + 3: 26615 -12,6: - 2: 51336 + 3: 51336 -12,5: - 2: 34952 + 3: 34952 -11,6: - 2: 61440 - 3: 224 + 3: 61440 + 4: 224 -12,8: - 2: 34952 + 3: 34952 -11,4: - 6: 224 - 3: 57344 + 7: 224 + 4: 57344 -11,5: - 3: 57568 + 4: 57568 -11,7: - 3: 57568 + 4: 57568 -10,6: - 2: 12834 + 3: 12834 0: 34952 -10,5: - 2: 8738 + 3: 8738 0: 34952 -10,7: - 2: 8738 + 3: 8738 0: 34952 -10,8: - 2: 62258 + 3: 62258 0: 136 -9,8: 0: 52479 - 2: 4096 + 3: 4096 0,-16: 0: 65528 -1,-16: @@ -7096,23 +7154,23 @@ entities: 0: 257 1,-14: 0: 4369 - 2: 34956 + 3: 34956 1,-17: 0: 4371 2,-14: - 2: 63631 + 3: 63631 2,-15: - 2: 39315 + 3: 39315 2,-16: - 2: 27776 + 3: 27776 3,-16: - 2: 57375 + 3: 57375 3,-15: - 2: 12443 + 3: 12443 3,-14: - 2: 61488 + 3: 61488 4,-16: - 2: 4883 + 3: 4883 -4,-15: 0: 65088 -4,-14: @@ -7136,7 +7194,7 @@ entities: -2,-14: 0: 65520 -9,-15: - 3: 2048 + 4: 2048 -8,-14: 0: 4080 -9,-14: @@ -7146,69 +7204,69 @@ entities: -9,-13: 0: 4095 -7,-15: - 3: 61184 + 4: 61184 -7,-14: 0: 32752 -6,-15: - 3: 256 + 4: 256 0: 32768 -6,-14: 0: 65528 -12,-16: - 2: 4880 + 3: 4880 -13,-16: - 2: 65520 + 3: 65520 -12,-15: - 3: 53128 + 4: 53128 -12,-14: 0: 30483 - 3: 4 + 4: 4 -13,-14: 0: 52232 - 2: 23 + 3: 23 -11,-16: - 3: 4352 + 4: 4352 -11,-15: - 3: 65425 + 4: 65425 -11,-14: 0: 65520 -11,-13: 0: 831 -10,-15: - 3: 14327 + 4: 14327 -10,-14: 0: 16304 -10,-13: 0: 2187 -10,-16: - 3: 8704 + 4: 8704 -10,-17: - 3: 49152 + 4: 49152 -16,-7: - 2: 52416 + 3: 52416 -16,-6: - 2: 3276 + 3: 3276 0: 32768 -16,-5: 0: 3080 -16,-4: - 2: 140 + 3: 140 -15,-7: - 2: 4368 + 3: 4368 0: 3276 -15,-6: - 2: 273 + 3: 273 0: 52428 -15,-5: 0: 53199 -15,-4: - 2: 4369 + 3: 4369 0: 52416 -15,-8: 0: 52416 -15,-9: 0: 34952 - 3: 256 + 4: 256 -14,-8: 0: 49080 -14,-7: @@ -7228,31 +7286,31 @@ entities: -13,-7: 0: 26214 -16,-12: - 3: 32 + 4: 32 -16,-11: - 3: 32768 + 4: 32768 -16,-10: - 3: 8 + 4: 8 -15,-11: - 3: 13036 + 4: 13036 0: 32768 -15,-10: - 3: 307 + 4: 307 0: 34952 -15,-12: - 3: 51336 + 4: 51336 -14,-12: - 3: 4607 + 4: 4607 0: 49152 -14,-11: - 3: 17 + 4: 17 0: 61644 -14,-10: 0: 65535 -14,-13: - 3: 59392 + 4: 59392 -13,-13: - 3: 4352 + 4: 4352 0: 1604 8,9: 0: 65535 @@ -7281,28 +7339,28 @@ entities: 10,10: 0: 3549 10,11: - 3: 275 + 4: 275 10,12: 0: 305 - 2: 3276 + 3: 3276 11,9: 0: 4469 - 2: 49152 + 3: 49152 11,10: 0: 273 - 2: 52428 + 3: 52428 11,11: - 2: 61166 + 3: 61166 11,12: - 2: 53247 + 3: 53247 12,8: - 2: 13107 + 3: 13107 12,9: - 2: 13107 + 3: 13107 12,10: - 2: 63923 + 3: 63923 12,11: - 2: 61443 + 3: 61443 4,9: 0: 57599 3,9: @@ -7325,7 +7383,7 @@ entities: 0: 60928 5,12: 0: 238 - 2: 49152 + 3: 49152 6,9: 0: 65535 6,10: @@ -7394,26 +7452,26 @@ entities: 0: 16183 15,1: 0: 13119 - 2: 18432 + 3: 18432 15,2: 0: 13107 - 2: 32836 + 3: 32836 15,3: 0: 13107 - 2: 2184 + 3: 2184 15,-1: 0: 30527 15,4: 0: 13107 - 2: 32768 + 3: 32768 16,0: 0: 1793 - 2: 4 + 3: 4 16,1: 0: 7 - 2: 1024 + 3: 1024 16,3: - 2: 4368 + 3: 4368 13,-4: 0: 26215 13,-3: @@ -7432,22 +7490,22 @@ entities: 0: 61098 15,-4: 0: 4113 - 2: 34952 + 3: 34952 15,-3: 0: 4369 - 2: 34952 + 3: 34952 15,-2: 0: 16177 - 2: 8 + 3: 8 15,-5: 0: 4353 - 2: 34952 + 3: 34952 16,-2: 0: 1792 - 2: 4 + 3: 4 16,-1: 0: 4359 - 2: 17408 + 3: 17408 13,-8: 0: 15 13,-6: @@ -7461,56 +7519,56 @@ entities: 14,-9: 0: 36623 15,-8: - 3: 16 + 4: 16 15,-6: - 3: 16 + 4: 16 0: 4096 - 2: 32768 + 3: 32768 15,-9: 0: 4353 16,-5: - 2: 304 + 3: 304 12,-11: - 3: 49156 + 4: 49156 12,-12: - 2: 12 + 3: 12 12,-13: - 2: 52303 + 3: 52303 13,-12: - 2: 15 - 3: 16384 + 3: 15 + 4: 16384 13,-11: - 3: 65228 + 4: 65228 13,-10: 0: 65520 13,-13: - 2: 65295 + 3: 65295 14,-12: - 2: 15 + 3: 15 14,-11: - 3: 65521 + 4: 65521 14,-10: 0: 65392 14,-13: - 2: 65295 + 3: 65295 15,-12: - 2: 1 + 3: 1 15,-11: - 3: 4112 + 4: 4112 15,-10: - 3: 52451 + 4: 52451 0: 4096 15,-13: - 2: 4511 + 3: 4511 16,-10: - 3: 19 + 4: 19 -4,9: 0: 7421 -5,9: 0: 62719 -4,10: 0: 65533 - 7: 2 + 8: 2 -5,10: 0: 65535 -4,11: @@ -7519,13 +7577,13 @@ entities: 0: 32767 -4,12: 0: 34945 - 3: 13072 + 4: 13072 -3,9: 0: 4095 -3,10: 0: 65535 -3,11: - 3: 61408 + 4: 61408 -2,9: 0: 4095 -2,10: @@ -7538,23 +7596,23 @@ entities: 0: 61678 -9,9: 0: 52428 - 2: 4369 + 3: 4369 -8,10: 0: 65535 -9,10: 0: 52428 -8,11: - 2: 43808 + 3: 43808 -9,11: - 2: 20224 + 3: 20224 -8,12: - 2: 43690 + 3: 43690 -7,9: 0: 45311 -7,10: 0: 49087 -7,11: - 2: 768 + 3: 768 0: 34952 -6,9: 0: 61661 @@ -7562,44 +7620,44 @@ entities: 0: 65535 -6,11: 0: 64255 - 8: 256 - 7: 1024 + 9: 256 + 8: 1024 -7,12: 0: 34952 - 2: 12322 + 3: 12322 -6,12: 0: 65535 -5,12: 0: 13111 - 3: 34816 + 4: 34816 -12,9: - 2: 65433 + 3: 65433 -13,9: - 2: 8 + 3: 8 -12,10: - 2: 52428 + 3: 52428 -11,8: - 2: 65520 + 3: 65520 -11,9: - 2: 4607 - 3: 49152 + 3: 4607 + 4: 49152 -11,10: - 2: 33041 - 3: 204 + 3: 33041 + 4: 204 -12,11: - 2: 136 + 3: 136 -11,11: - 2: 248 + 3: 248 -10,9: - 2: 52479 - 3: 4096 + 3: 52479 + 4: 4096 -10,10: - 3: 17 - 2: 34952 + 4: 17 + 3: 34952 -10,11: - 2: 2296 + 3: 2296 -9,12: - 2: 17476 + 3: 17476 8,-15: 0: 65535 7,-15: @@ -7613,50 +7671,50 @@ entities: 9,-14: 0: 4403 10,-16: - 2: 3584 + 3: 3584 11,-16: - 2: 7936 + 3: 7936 10,-14: - 2: 34816 + 3: 34816 11,-14: - 2: 29489 + 3: 29489 11,-15: - 2: 4369 + 3: 4369 12,-16: - 2: 3840 + 3: 3840 4,-17: - 2: 4096 + 3: 4096 4,-14: - 2: 2048 + 3: 2048 5,-14: - 2: 1024 + 3: 1024 6,-14: - 2: 512 + 3: 512 -8,13: - 2: 29666 + 3: 29666 -9,13: - 2: 3140 + 3: 3140 -8,14: - 2: 15 + 3: 15 -7,13: - 2: 32816 + 3: 32816 0: 1032 -7,14: - 2: 15 + 3: 15 -6,13: 0: 255 -6,14: - 2: 49 + 3: 49 -5,13: 0: 51 - 3: 51208 + 4: 51208 -5,14: - 3: 264 + 4: 264 -4,13: - 3: 29443 + 4: 29443 0: 136 -4,14: - 3: 3 + 4: 3 -3,12: 0: 65520 -3,13: @@ -7675,166 +7733,166 @@ entities: 0: 8866 1,14: 0: 8710 - 2: 34952 + 3: 34952 1,15: 0: 8226 - 2: 34952 + 3: 34952 1,16: 0: 8738 - 2: 34952 + 3: 34952 2,13: 0: 184 2,14: - 2: 49023 + 3: 49023 2,15: - 2: 44974 + 3: 44974 2,16: - 2: 32702 + 3: 32702 3,13: 0: 255 3,14: - 2: 44847 + 3: 44847 3,15: - 2: 44975 + 3: 44975 3,16: - 2: 12207 + 3: 12207 4,14: - 2: 61439 + 3: 61439 4,15: - 2: 44971 + 3: 44971 4,13: 0: 224 4,16: - 2: 65515 + 3: 65515 5,15: - 2: 1279 + 3: 1279 0: 8192 5,13: 0: 8738 - 3: 136 + 4: 136 5,14: 0: 546 - 2: 16384 + 3: 16384 5,16: 0: 8738 6,15: - 2: 255 + 3: 255 6,13: 0: 1262 7,13: 0: 1279 7,15: - 2: 255 + 3: 255 8,15: - 2: 255 + 3: 255 9,15: - 2: 255 + 3: 255 10,15: - 2: 55 + 3: 55 10,14: - 2: 65224 + 3: 65224 11,14: - 2: 311 + 3: 311 11,13: - 2: 65228 + 3: 65228 12,12: - 2: 65535 + 3: 65535 13,10: - 2: 17 + 3: 17 13,9: - 2: 13028 + 3: 13028 13,8: - 2: 19652 + 3: 19652 13,7: - 2: 20478 + 3: 20478 14,9: - 2: 248 + 3: 248 14,8: - 2: 52428 + 3: 52428 14,7: - 2: 51711 + 3: 51711 15,8: - 2: 56797 + 3: 56797 15,9: - 2: 248 + 3: 248 15,7: - 2: 55539 + 3: 55539 16,8: - 2: 56797 + 3: 56797 16,9: - 2: 248 + 3: 248 13,5: 0: 1911 13,6: 0: 4111 - 2: 60928 + 3: 60928 14,5: 0: 4369 14,6: 0: 1 - 2: 13056 + 3: 13056 15,6: - 2: 14024 + 3: 14024 16,4: - 2: 29233 + 3: 29233 16,6: - 2: 34947 + 3: 34947 16,7: - 2: 55544 + 3: 55544 13,12: - 2: 4095 + 3: 4095 14,12: - 2: 4095 + 3: 4095 15,12: - 2: 4095 + 3: 4095 16,12: - 2: 883 + 3: 883 0,18: - 2: 49160 + 3: 49160 0,17: - 2: 34816 + 3: 34816 1,17: - 2: 24856 + 3: 24856 0: 3106 1,18: - 2: 61987 + 3: 61987 2,17: - 2: 57359 + 3: 57359 0: 1792 2,18: - 2: 4238 + 3: 4238 3,17: - 2: 61455 + 3: 61455 0: 1792 3,18: - 2: 255 + 3: 255 4,17: - 2: 12303 + 3: 12303 0: 3840 4,18: - 2: 49155 + 3: 49155 5,17: 0: 290 - 2: 48192 + 3: 48192 5,18: - 2: 61998 + 3: 61998 6,17: - 2: 18244 + 3: 18244 6,18: - 2: 4164 + 3: 4164 6,16: - 2: 16384 + 3: 16384 -15,0: - 2: 1 + 3: 1 0: 52428 -15,1: - 2: 4401 + 3: 4401 0: 34944 -15,2: - 2: 4369 + 3: 4369 0: 2176 -15,3: - 2: 34959 + 3: 34959 -15,-1: 0: 52732 -14,0: @@ -7844,49 +7902,49 @@ entities: -14,2: 0: 61439 -14,3: - 2: 61440 + 3: 61440 0: 14 -14,-1: 0: 65535 -13,2: 0: 817 - 2: 128 + 3: 128 -13,3: - 2: 12834 + 3: 12834 -13,5: - 2: 8742 + 3: 8742 -13,6: - 2: 25122 + 3: 25122 -13,8: - 2: 50722 + 3: 50722 -16,-16: - 2: 30583 + 3: 30583 -16,-17: - 2: 29187 + 3: 29187 -16,-15: - 2: 29426 + 3: 29426 -17,-15: - 2: 29426 + 3: 29426 -16,-14: - 2: 30583 + 3: 30583 -16,-13: - 2: 2 + 3: 2 -15,-15: - 2: 240 + 3: 240 -15,-16: - 2: 65520 + 3: 65520 -15,-13: - 3: 64 + 4: 64 -14,-16: - 2: 24404 + 3: 24404 -14,-15: - 2: 52980 + 3: 52980 -14,-17: - 2: 24404 + 3: 24404 -13,-15: - 2: 29456 + 3: 29456 -14,-14: - 2: 8 + 3: 8 0,-20: 0: 34952 0,-19: @@ -7920,140 +7978,140 @@ entities: -2,-18: 0: 4096 -16,-2: - 2: 12 + 3: 12 0: 51200 -16,-1: 0: 2240 -16,-3: - 2: 32768 + 3: 32768 -15,-3: - 2: 4369 + 3: 4369 0: 52428 -15,-2: - 2: 1 + 3: 1 0: 64972 -14,-3: 0: 65535 -14,-2: 0: 65535 16,5: - 2: 62242 + 3: 62242 17,5: - 2: 61440 + 3: 61440 17,6: - 2: 65520 + 3: 65520 17,7: - 2: 55536 + 3: 55536 17,8: - 2: 56797 + 3: 56797 18,5: - 2: 61440 + 3: 61440 18,6: - 2: 65520 + 3: 65520 18,7: - 2: 55536 + 3: 55536 18,8: - 2: 56797 + 3: 56797 19,5: - 2: 61440 + 3: 61440 19,6: - 2: 48056 + 3: 48056 19,7: - 2: 39162 + 3: 39162 19,8: - 2: 39321 + 3: 39321 20,7: - 2: 16 + 3: 16 -12,-19: - 2: 61440 + 3: 61440 -13,-19: - 2: 61440 + 3: 61440 -12,-18: - 2: 4880 + 3: 4880 -13,-18: - 2: 65520 + 3: 65520 -12,-17: - 2: 4880 + 3: 4880 -13,-17: - 2: 65520 + 3: 65520 -11,-19: - 2: 61440 + 3: 61440 -10,-19: - 2: 4096 + 3: 4096 -10,-18: 0: 4 -18,-12: - 2: 68 + 3: 68 -18,-13: - 2: 17476 + 3: 17476 -18,-15: - 2: 17636 + 3: 17636 -18,-16: - 2: 17476 + 3: 17476 -18,-17: - 2: 17484 + 3: 17484 -18,-14: - 2: 17476 + 3: 17476 -17,-16: - 2: 30583 + 3: 30583 -17,-17: - 2: 29199 + 3: 29199 -17,-14: - 2: 30583 + 3: 30583 -17,-13: - 2: 2 + 3: 2 16,-12: - 2: 546 + 3: 546 16,-13: - 2: 8743 + 3: 8743 -16,-19: - 2: 57344 + 3: 57344 -16,-18: - 2: 10786 + 3: 10786 -15,-19: - 2: 61440 + 3: 61440 -15,-18: - 2: 65520 + 3: 65520 -15,-17: - 2: 65520 + 3: 65520 -14,-19: - 2: 62464 + 3: 62464 -14,-18: - 2: 24404 + 3: 24404 12,-15: - 2: 30496 + 3: 30496 12,-14: - 2: 10103 + 3: 10103 13,-16: - 2: 3840 + 3: 3840 13,-15: - 2: 30496 + 3: 30496 13,-14: - 2: 10103 + 3: 10103 14,-16: - 2: 3840 + 3: 3840 14,-15: - 2: 30496 + 3: 30496 14,-14: - 2: 10103 + 3: 10103 15,-16: - 2: 3840 + 3: 3840 15,-15: - 2: 30496 + 3: 30496 15,-14: - 2: 10103 + 3: 10103 16,-16: - 2: 8960 + 3: 8960 16,-15: - 2: 8738 + 3: 8738 16,-14: - 2: 8738 + 3: 8738 17,9: - 2: 248 + 3: 248 18,9: - 2: 248 + 3: 248 19,9: - 2: 248 + 3: 248 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -8085,6 +8143,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 immutable: True moles: @@ -9836,6 +9909,16 @@ entities: container: 8991 - proto: AirAlarm entities: + - uid: 3220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 16149 + - 16148 - uid: 5583 components: - type: Transform @@ -9919,6 +10002,17 @@ entities: - 5218 - 16531 - 16532 + - uid: 14996 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 876 + - 18504 + - 16179 + - 16180 - uid: 15512 components: - type: Transform @@ -10525,26 +10619,6 @@ entities: - 18457 - 14690 - 14689 - - uid: 18469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,16.5 - parent: 2 - - type: DeviceList - devices: - - 18471 - - 18472 - - 18473 - - 18474 - - 18475 - - 18476 - - 18468 - - 18467 - - 18459 - - 14721 - - 18461 - - 14720 - uid: 18478 components: - type: Transform @@ -10620,7 +10694,7 @@ entities: - 18490 - 16551 - 16552 - - 18502 + - 876 - 18504 - 18485 - 13281 @@ -10710,15 +10784,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18560 - - 18559 - - 18571 - 18572 - - 18568 - - 18569 - - 18574 - - 16794 + - 18571 + - 18559 + - 18560 - 13584 + - 16794 - 18573 - uid: 18570 components: @@ -10740,7 +10811,6 @@ entities: - 18577 - 13560 - 13559 - - 18574 - uid: 18582 components: - type: Transform @@ -11399,6 +11469,26 @@ entities: - 3136 - 9112 - 28612 + - uid: 28879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 18459 + - 14721 + - 18461 + - 14720 + - 18474 + - 18473 + - 18475 + - 18476 + - 18467 + - 18468 + - 18471 + - 18472 - proto: AirCanister entities: - uid: 4223 @@ -11770,21 +11860,43 @@ entities: - type: Transform pos: -32.5,34.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28923: + - DoorStatus: InputB - uid: 8505 components: - type: Transform pos: -33.5,34.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28923: + - DoorStatus: InputA - uid: 8506 components: - type: Transform pos: -32.5,38.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28922: + - DoorStatus: InputB - uid: 8507 components: - type: Transform pos: -33.5,38.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28922: + - DoorStatus: InputA - proto: AirlockAtmosphericsLocked entities: - uid: 8143 @@ -12432,6 +12544,22 @@ entities: linkedPorts: 8424: - DoorStatus: DoorBolt + - uid: 28436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 5 + - type: DeviceLinkSource + linkedPorts: + 8507: + - DoorStatus: DoorBolt + 8506: + - DoorStatus: DoorBolt + 8505: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - uid: 826 @@ -12439,6 +12567,12 @@ entities: - type: Transform pos: -60.5,-20.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28494: + - DoorStatus: DoorBolt - uid: 11331 components: - type: Transform @@ -12454,6 +12588,12 @@ entities: - type: Transform pos: -58.5,-19.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 826: + - DoorStatus: DoorBolt - uid: 28495 components: - type: Transform @@ -12839,10 +12979,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,54.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6863: - - DoorStatus: DoorBolt - uid: 6991 components: - type: Transform @@ -13083,6 +13219,48 @@ entities: - type: Transform pos: 17.5,-17.5 parent: 2 + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,51.5 + parent: 2 + - uid: 859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,51.5 + parent: 2 + - uid: 873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,37.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-28.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-28.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-55.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-55.5 + parent: 2 - uid: 3448 components: - type: Transform @@ -13107,29 +13285,191 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,2.5 parent: 2 - - uid: 6863 + - uid: 8247 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,51.5 + rot: -1.5707963267948966 rad + pos: -41.5,-5.5 parent: 2 - - uid: 6864 + - uid: 8252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,51.5 + rot: -1.5707963267948966 rad + pos: -0.5,18.5 parent: 2 - - uid: 7850 + - uid: 8254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,38.5 + rot: -1.5707963267948966 rad + pos: -0.5,-17.5 parent: 2 - - uid: 7851 + - uid: 8256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,37.5 + rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + - uid: 8257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,48.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 + - uid: 8262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 2 + - uid: 8263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-5.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,0.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,29.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,48.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,29.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,29.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-28.5 + parent: 2 + - uid: 8775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,1.5 + parent: 2 + - uid: 8780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,1.5 + parent: 2 + - uid: 8821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - uid: 8890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + - uid: 8891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 2 + - uid: 8927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 2 + - uid: 9161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + - uid: 9311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-55.5 parent: 2 - uid: 12229 components: @@ -13163,6 +13503,12 @@ entities: - type: Transform pos: 4.5,-63.5 parent: 2 + - uid: 28603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,36.5 + parent: 2 - proto: AirlockHatch entities: - uid: 10942 @@ -13729,21 +14075,18 @@ entities: - type: Transform pos: -22.5,-39.5 parent: 2 - - uid: 1372 + - uid: 877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-36.5 + rot: 3.141592653589793 rad + pos: -3.5,-35.5 parent: 2 - - uid: 1373 + - uid: 1372 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-35.5 + pos: -3.5,-36.5 parent: 2 - - type: Door - secondsUntilStateChange: -583970.1 - state: Opening - uid: 1496 components: - type: Transform @@ -13899,6 +14242,12 @@ entities: parent: 2 - proto: AirlockScienceGlassLocked entities: + - uid: 878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-48.5 + parent: 2 - uid: 9731 components: - type: Transform @@ -13931,11 +14280,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-43.5 parent: 2 - - uid: 10272 - components: - - type: Transform - pos: -9.5,-48.5 - parent: 2 - uid: 10308 components: - type: Transform @@ -14119,23 +14463,47 @@ entities: - type: Transform pos: 60.5,48.5 parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -4821.3525 + state: Opening - uid: 6934 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,50.5 parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -4823.986 + state: Opening - uid: 6935 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,50.5 parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -4822.836 + state: Opening - uid: 6936 components: - type: Transform pos: 62.5,48.5 parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -4822.0522 + state: Opening - proto: AirlockTheatreLocked entities: - uid: 2191 @@ -14479,7 +14847,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18469 + - 28879 - uid: 18460 components: - type: Transform @@ -14494,7 +14862,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18469 + - 28879 - uid: 18462 components: - type: Transform @@ -14650,16 +15018,6 @@ entities: - type: DeviceNetwork deviceLists: - 18567 - - uid: 18574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18567 - - 18570 - uid: 18576 components: - type: Transform @@ -15515,6 +15873,12 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,45.5 parent: 2 + - uid: 884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,17.5 + parent: 2 - uid: 2023 components: - type: MetaData @@ -15528,12 +15892,6 @@ entities: - type: Transform pos: 12.5,-40.5 parent: 2 - - uid: 12830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,17.5 - parent: 2 - proto: APCSuperCapacity entities: - uid: 733 @@ -15548,8 +15906,36 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-45.5 parent: 2 +- proto: Ash + entities: + - uid: 28873 + components: + - type: Transform + pos: 35.773716,-16.714659 + parent: 2 - proto: Ashtray entities: + - uid: 10272 + components: + - type: Transform + pos: 34.393116,-15.167919 + parent: 2 + - type: Storage + storedItems: + 11535: + position: 0,0 + _rotation: South + 11867: + position: 1,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11535 + - 11867 - uid: 23244 components: - type: Transform @@ -34704,36 +35090,6 @@ entities: - type: Transform pos: -42.5,25.5 parent: 2 - - uid: 9293 - components: - - type: Transform - pos: -40.5,29.5 - parent: 2 - - uid: 9294 - components: - - type: Transform - pos: -41.5,29.5 - parent: 2 - - uid: 9295 - components: - - type: Transform - pos: -42.5,29.5 - parent: 2 - - uid: 9296 - components: - - type: Transform - pos: -40.5,31.5 - parent: 2 - - uid: 9297 - components: - - type: Transform - pos: -41.5,31.5 - parent: 2 - - uid: 9298 - components: - - type: Transform - pos: -42.5,31.5 - parent: 2 - uid: 9299 components: - type: Transform @@ -35889,10 +36245,10 @@ entities: parent: 2 - proto: Autolathe entities: - - uid: 6716 + - uid: 6864 components: - type: Transform - pos: 8.5,31.5 + pos: 7.5,30.5 parent: 2 - uid: 9959 components: @@ -37250,6 +37606,12 @@ entities: rot: 3.141592653589793 rad pos: -53.658516,9.595246 parent: 2 + - uid: 28614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.492344,-15.954241 + parent: 2 - proto: BoxFolderWhite entities: - uid: 1115 @@ -37581,11 +37943,6 @@ entities: - type: Transform pos: 7.3088074,9.718449 parent: 21002 - - uid: 23354 - components: - - type: Transform - pos: 38.630417,16.50916 - parent: 2 - proto: ButtonFrameGrey entities: - uid: 4519 @@ -37678,11 +38035,26 @@ entities: - type: Transform pos: -21.5,-10.5 parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: -39.5,32.5 + parent: 2 - uid: 1330 components: - type: Transform pos: -11.5,-80.5 parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -38.5,32.5 + parent: 2 - uid: 1434 components: - type: Transform @@ -38493,6 +38865,11 @@ entities: - type: Transform pos: -9.5,-82.5 parent: 2 + - uid: 1865 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 - uid: 1929 components: - type: Transform @@ -49138,6 +49515,11 @@ entities: - type: Transform pos: -40.5,40.5 parent: 2 + - uid: 14151 + components: + - type: Transform + pos: -40.5,32.5 + parent: 2 - uid: 14189 components: - type: Transform @@ -51858,46 +52240,6 @@ entities: - type: Transform pos: -37.5,33.5 parent: 2 - - uid: 23308 - components: - - type: Transform - pos: -38.5,31.5 - parent: 2 - - uid: 23309 - components: - - type: Transform - pos: -39.5,31.5 - parent: 2 - - uid: 23310 - components: - - type: Transform - pos: -40.5,31.5 - parent: 2 - - uid: 23311 - components: - - type: Transform - pos: -41.5,31.5 - parent: 2 - - uid: 23312 - components: - - type: Transform - pos: -41.5,29.5 - parent: 2 - - uid: 23313 - components: - - type: Transform - pos: -40.5,29.5 - parent: 2 - - uid: 23314 - components: - - type: Transform - pos: -39.5,29.5 - parent: 2 - - uid: 23315 - components: - - type: Transform - pos: -38.5,29.5 - parent: 2 - uid: 23316 components: - type: Transform @@ -54923,6 +55265,76 @@ entities: - type: Transform pos: -31.5,9.5 parent: 2 + - uid: 28908 + components: + - type: Transform + pos: -41.5,32.5 + parent: 2 + - uid: 28909 + components: + - type: Transform + pos: -42.5,32.5 + parent: 2 + - uid: 28910 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - uid: 28911 + components: + - type: Transform + pos: -44.5,32.5 + parent: 2 + - uid: 28912 + components: + - type: Transform + pos: -44.5,31.5 + parent: 2 + - uid: 28913 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 28914 + components: + - type: Transform + pos: -44.5,29.5 + parent: 2 + - uid: 28915 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 28916 + components: + - type: Transform + pos: -44.5,27.5 + parent: 2 + - uid: 28917 + components: + - type: Transform + pos: -44.5,33.5 + parent: 2 + - uid: 28918 + components: + - type: Transform + pos: -44.5,34.5 + parent: 2 + - uid: 28919 + components: + - type: Transform + pos: -44.5,35.5 + parent: 2 + - uid: 28920 + components: + - type: Transform + pos: -44.5,36.5 + parent: 2 + - uid: 28921 + components: + - type: Transform + pos: -44.5,37.5 + parent: 2 - proto: CableApcStack1 entities: - uid: 23589 @@ -68331,26 +68743,6 @@ entities: - type: Transform pos: 22.5,-16.5 parent: 2 - - uid: 857 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 2 - - uid: 858 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 2 - - uid: 859 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 2 - - uid: 873 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 2 - uid: 874 components: - type: Transform @@ -68361,36 +68753,6 @@ entities: - type: Transform pos: 19.5,-23.5 parent: 2 - - uid: 876 - components: - - type: Transform - pos: 22.5,-22.5 - parent: 2 - - uid: 877 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 2 - - uid: 878 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 2 - - uid: 880 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 2 - - uid: 884 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 2 - - uid: 885 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 2 - uid: 886 components: - type: Transform @@ -68401,21 +68763,6 @@ entities: - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 888 - components: - - type: Transform - pos: 21.5,-22.5 - parent: 2 - - uid: 889 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 2 - - uid: 890 - components: - - type: Transform - pos: 23.5,-20.5 - parent: 2 - uid: 891 components: - type: Transform @@ -68568,11 +68915,53 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-23.5 parent: 2 + - uid: 2604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-23.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-21.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-21.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-21.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-20.5 + parent: 2 - uid: 5738 components: - type: Transform pos: 13.5,29.5 parent: 2 + - uid: 6258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-22.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-22.5 + parent: 2 - uid: 6376 components: - type: Transform @@ -68608,6 +68997,24 @@ entities: - type: Transform pos: 16.5,28.5 parent: 2 + - uid: 6716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-22.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-23.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-20.5 + parent: 2 - uid: 12160 components: - type: Transform @@ -68628,6 +69035,42 @@ entities: - type: Transform pos: -38.5,-23.5 parent: 2 + - uid: 28886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-19.5 + parent: 2 + - uid: 28887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-19.5 + parent: 2 + - uid: 28888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 2 + - uid: 28889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-20.5 + parent: 2 + - uid: 28890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 2 + - uid: 28891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 2 - proto: CarpetBlue entities: - uid: 2676 @@ -70638,6 +71081,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,36.5 parent: 2 + - uid: 9212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-31.5 + parent: 2 - uid: 9384 components: - type: Transform @@ -73527,6 +73976,12 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,23.5 parent: 2 + - uid: 28604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-31.5 + parent: 2 - proto: Chair entities: - uid: 495 @@ -73724,12 +74179,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-21.5 parent: 2 - - uid: 18707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-21.5 - parent: 2 - uid: 18708 components: - type: Transform @@ -74569,6 +75018,19 @@ entities: rot: 3.141592653589793 rad pos: -9.4977665,-59.404213 parent: 2 +- proto: ChurchBell + entities: + - uid: 28892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 2 + - uid: 28893 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 - proto: ChurchOrganInstrument entities: - uid: 45 @@ -74608,6 +75070,26 @@ entities: - type: Transform pos: -54.0773,9.794919 parent: 2 +- proto: Cigarette + entities: + - uid: 28871 + components: + - type: Transform + pos: 34.674366,-15.053335 + parent: 2 + - uid: 28872 + components: + - type: Transform + pos: 34.580616,-15.188752 + parent: 2 +- proto: CigaretteSpent + entities: + - uid: 11535 + components: + - type: Transform + parent: 10272 + - type: Physics + canCollide: False - proto: CigarGold entities: - uid: 2705 @@ -74640,6 +75122,21 @@ entities: rot: 1.5707963267948966 rad pos: -46.538147,-11.384542 parent: 2 +- proto: CigarSpent + entities: + - uid: 11867 + components: + - type: Transform + parent: 10272 + - type: Physics + canCollide: False +- proto: CigPackRed + entities: + - uid: 28869 + components: + - type: Transform + pos: 34.622284,-14.886669 + parent: 2 - proto: CircuitImprinter entities: - uid: 9961 @@ -76703,6 +77200,12 @@ entities: - type: Transform pos: -16.5,14.5 parent: 2 + - uid: 28595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,35.5 + parent: 2 - proto: ComputerAlert entities: - uid: 9322 @@ -77607,10 +78110,10 @@ entities: parent: 2 - proto: CrateElectrical entities: - - uid: 6259 + - uid: 9603 components: - type: Transform - pos: 7.5,30.5 + pos: 8.5,31.5 parent: 2 - uid: 19667 components: @@ -77703,10 +78206,10 @@ entities: parent: 2 - proto: CrateEngineeringElectricalSupplies entities: - - uid: 6258 + - uid: 1276 components: - type: Transform - pos: 6.5,30.5 + pos: 8.5,30.5 parent: 2 - proto: CrateEngineeringMiniJetpack entities: @@ -78341,7 +78844,7 @@ entities: - uid: 28353 components: - type: Transform - pos: -20.5,-4.5 + pos: -24.5,-20.5 parent: 2 - type: EntityStorage open: True @@ -87605,7 +88108,7 @@ entities: - uid: 23355 components: - type: Transform - pos: 38.60958,16.707075 + pos: 38.62831,16.89455 parent: 2 - uid: 23370 components: @@ -87718,6 +88221,11 @@ entities: - type: Transform pos: 19.668665,37.711403 parent: 2 + - uid: 23353 + components: + - type: Transform + pos: 34.69026,-16.54799 + parent: 2 - uid: 23571 components: - type: Transform @@ -87772,12 +88280,12 @@ entities: - type: Transform pos: -48.22078,-11.387981 parent: 2 -- proto: DrinkIceJug +- proto: DrinkIceBucket entities: - - uid: 23353 + - uid: 7849 components: - type: Transform - pos: 38.8075,16.75916 + pos: 38.63873,16.467466 parent: 2 - proto: DrinkJar entities: @@ -88136,6 +88644,11 @@ entities: - type: Transform pos: 36.738503,-2.8382018 parent: 2 + - uid: 8622 + components: + - type: Transform + pos: 34.48193,-16.51674 + parent: 2 - uid: 23618 components: - type: Transform @@ -89153,6 +89666,13 @@ entities: - type: Transform pos: -59.512844,-33.467316 parent: 2 +- proto: EvidenceMarkerOne + entities: + - uid: 28866 + components: + - type: Transform + pos: 34.392616,-14.27478 + parent: 2 - proto: ExosuitFabricator entities: - uid: 10470 @@ -89247,12 +89767,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-47.5 parent: 2 - - uid: 23799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-51.5 - parent: 2 - uid: 23800 components: - type: Transform @@ -89270,6 +89784,12 @@ entities: - type: Transform pos: -29.5,34.5 parent: 2 + - uid: 28905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-52.5 + parent: 2 - proto: FaxMachineBase entities: - uid: 1043 @@ -89405,6 +89925,14 @@ entities: - type: Transform pos: 32.5,20.5 parent: 2 +- proto: FenceWoodSmallGate + entities: + - uid: 28615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-36.5 + parent: 2 - proto: FigureSpawner entities: - uid: 23863 @@ -89688,6 +90216,16 @@ entities: - 17899 - 16671 - 12062 + - uid: 15810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 876 + - 18504 - uid: 18231 components: - type: Transform @@ -90302,7 +90840,7 @@ entities: - 18490 - 16551 - 16552 - - 18502 + - 876 - 18504 - uid: 18531 components: @@ -90934,6 +91472,15 @@ entities: - 26798 - 26787 - 26792 + - uid: 28901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,51.5 + parent: 2 + - type: DeviceList + devices: + - 18546 - proto: FireAxeCabinetFilled entities: - uid: 2471 @@ -92346,6 +92893,18 @@ entities: - 18288 - 18282 - 18271 + - uid: 876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18500 + - 18501 + - 15810 + - 14996 - uid: 2200 components: - type: Transform @@ -93488,7 +94047,7 @@ entities: - 18464 - 18463 - 18470 - - 18469 + - 28879 - uid: 18468 components: - type: Transform @@ -93500,7 +94059,7 @@ entities: - 18464 - 18463 - 18470 - - 18469 + - 28879 - uid: 18471 components: - type: Transform @@ -93510,7 +94069,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18477 - 18478 - uid: 18472 @@ -93522,7 +94081,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18477 - 18478 - uid: 18473 @@ -93534,7 +94093,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18484 - 18480 - uid: 18474 @@ -93546,7 +94105,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18484 - 18480 - uid: 18475 @@ -93558,7 +94117,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18483 - 18482 - uid: 18476 @@ -93570,7 +94129,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18483 - 18482 - uid: 18488 @@ -93685,15 +94244,6 @@ entities: deviceLists: - 18498 - 18499 - - uid: 18502 - components: - - type: Transform - pos: -2.5,38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18500 - - 18501 - uid: 18504 components: - type: Transform @@ -93703,6 +94253,8 @@ entities: deviceLists: - 18500 - 18501 + - 15810 + - 14996 - uid: 18522 components: - type: Transform @@ -93830,6 +94382,7 @@ entities: - 18551 - 18553 - 9410 + - 28901 - uid: 18547 components: - type: Transform @@ -93903,7 +94456,6 @@ entities: - type: DeviceNetwork deviceLists: - 18566 - - 18567 - 18575 - 18570 - uid: 18569 @@ -93915,7 +94467,6 @@ entities: - type: DeviceNetwork deviceLists: - 18566 - - 18567 - 18575 - 18570 - uid: 18571 @@ -95382,16 +95933,6 @@ entities: - type: Transform pos: -42.5,25.5 parent: 2 - - uid: 8580 - components: - - type: Transform - pos: -42.5,29.5 - parent: 2 - - uid: 8581 - components: - - type: Transform - pos: -42.5,31.5 - parent: 2 - uid: 9778 components: - type: Transform @@ -95468,18 +96009,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,31.5 - parent: 2 - - uid: 8524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,29.5 - parent: 2 - uid: 8527 components: - type: Transform @@ -95662,17 +96191,6 @@ entities: - type: Transform pos: 52.5,16.5 parent: 21002 - - uid: 28594 - components: - - type: Transform - pos: -41.5,29.5 - parent: 2 - - uid: 28595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,31.5 - parent: 2 - proto: GasPipeBend entities: - uid: 51 @@ -95864,18 +96382,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,24.5 parent: 2 - - uid: 8588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,28.5 - parent: 2 - - uid: 8589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,30.5 - parent: 2 - uid: 8652 components: - type: Transform @@ -96036,30 +96542,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,34.5 - parent: 2 - - uid: 9204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,27.5 - parent: 2 - - uid: 9212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,36.5 - parent: 2 - - uid: 9234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,27.5 - parent: 2 - uid: 9390 components: - type: Transform @@ -98016,46 +98498,6 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,33.5 - parent: 2 - - uid: 28600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,33.5 - parent: 2 - - uid: 28613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,34.5 - parent: 2 - - uid: 28614 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -40.5,34.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 28615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,36.5 - parent: 2 - - uid: 28616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,34.5 - parent: 2 - uid: 28634 components: - type: Transform @@ -98902,6 +99344,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 8250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' - uid: 8534 components: - type: Transform @@ -98944,18 +99394,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,25.5 parent: 2 - - uid: 8541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,29.5 - parent: 2 - - uid: 8542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,31.5 - parent: 2 - uid: 8543 components: - type: Transform @@ -99286,42 +99724,14 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,28.5 parent: 2 - - uid: 8622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,28.5 - parent: 2 - - uid: 8623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,28.5 - parent: 2 - - uid: 8624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,28.5 - parent: 2 - - uid: 8625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,30.5 - parent: 2 - uid: 8626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,30.5 - parent: 2 - - uid: 8627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,30.5 + rot: -1.5707963267948966 rad + pos: -33.5,35.5 parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' - uid: 8628 components: - type: Transform @@ -99963,13 +100373,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#3AB334FF' - - uid: 8775 - components: - - type: Transform - pos: -33.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#3AB334FF' - uid: 8776 components: - type: Transform @@ -99998,13 +100401,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#3AB334FF' - - uid: 8780 - components: - - type: Transform - pos: -32.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#B3A234FF' - uid: 8781 components: - type: Transform @@ -100050,17 +100446,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,34.5 - parent: 2 - - uid: 8821 - components: - - type: Transform - pos: -44.5,32.5 - parent: 2 - uid: 8822 components: - type: Transform @@ -100302,16 +100687,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 9199 - components: - - type: Transform - pos: -44.5,29.5 - parent: 2 - - uid: 9200 - components: - - type: Transform - pos: -44.5,28.5 - parent: 2 - uid: 9386 components: - type: Transform @@ -100408,12 +100783,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,27.5 - parent: 2 - uid: 9611 components: - type: Transform @@ -105924,18 +106293,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14128 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 14129 components: - type: Transform @@ -106071,17 +106428,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14151 - components: - - type: Transform - anchored: False - pos: 32.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 14155 components: - type: Transform @@ -117403,16 +117749,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 16792 - components: - - type: Transform - pos: -44.5,33.5 - parent: 2 - - uid: 16793 - components: - - type: Transform - pos: -44.5,31.5 - parent: 2 - uid: 16796 components: - type: Transform @@ -118944,6 +119280,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 23463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 23478 components: - type: Transform @@ -119299,11 +119643,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 24118 - components: - - type: Transform - pos: -44.5,30.5 - parent: 2 - uid: 25219 components: - type: Transform @@ -119846,28 +120185,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,28.5 - parent: 2 - - uid: 28597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,32.5 - parent: 2 - - uid: 28598 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -41.5,32.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 28620 components: - type: Transform @@ -120197,6 +120514,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 8524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 8541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' - uid: 8683 components: - type: Transform @@ -122911,30 +123244,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,34.5 - parent: 2 - - uid: 28604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,36.5 - parent: 2 - - uid: 28617 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,34.5 - parent: 2 - - uid: 28618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,36.5 - parent: 2 - uid: 28624 components: - type: Transform @@ -123269,22 +123578,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,29.5 parent: 2 - - uid: 9202 - components: - - type: Transform - pos: -42.5,35.5 - parent: 2 - - uid: 9311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,35.5 - parent: 2 - - uid: 9603 - components: - - type: Transform - pos: -40.5,35.5 - parent: 2 - uid: 9752 components: - type: Transform @@ -123319,12 +123612,6 @@ entities: targetPressure: 501.325 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,35.5 - parent: 2 - proto: GasThermoMachineFreezer entities: - uid: 9281 @@ -123384,6 +123671,16 @@ entities: bodyType: Dynamic - proto: GasValve entities: + - uid: 888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,37.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 8100 components: - type: Transform @@ -123434,6 +123731,48 @@ entities: open: False - type: AtmosPipeColor color: '#B3A234FF' + - uid: 8248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,35.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 8329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,30.5 + parent: 2 + - type: GasValve + open: False + - uid: 8359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,28.5 + parent: 2 + - type: GasValve + open: False + - uid: 8361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,31.5 + parent: 2 + - type: GasValve + open: False + - uid: 8523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,29.5 + parent: 2 + - type: GasValve + open: False - uid: 8689 components: - type: Transform @@ -123499,14 +123838,6 @@ entities: parent: 2 - type: GasValve open: False - - uid: 9211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,27.5 - parent: 2 - - type: GasValve - open: False - uid: 9759 components: - type: Transform @@ -123554,14 +123885,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,33.5 - parent: 2 - - type: GasValve - open: False - uid: 28605 components: - type: Transform @@ -124248,7 +124571,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18469 + - 28879 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14741 @@ -124954,6 +125277,9 @@ entities: rot: 3.141592653589793 rad pos: -17.5,29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 3220 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16179 @@ -124962,6 +125288,9 @@ entities: rot: 3.141592653589793 rad pos: -6.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14996 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16188 @@ -126065,7 +126394,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18469 + - 28879 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14740 @@ -126608,18 +126937,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15810 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -6.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 15814 components: - type: Transform @@ -126776,6 +127093,9 @@ entities: rot: 3.141592653589793 rad pos: -16.5,28.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 3220 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16180 @@ -126784,6 +127104,9 @@ entities: rot: 3.141592653589793 rad pos: -8.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14996 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16189 @@ -129202,12 +129525,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,54.5 parent: 2 - - uid: 6857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,54.5 - parent: 2 - uid: 6858 components: - type: Transform @@ -130189,12 +130506,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,16.5 parent: 2 - - uid: 8393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,15.5 - parent: 2 - uid: 8394 components: - type: Transform @@ -130243,16 +130554,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,2.5 parent: 2 - - uid: 8514 - components: - - type: Transform - pos: -39.5,31.5 - parent: 2 - - uid: 8515 - components: - - type: Transform - pos: -39.5,29.5 - parent: 2 - uid: 8516 components: - type: Transform @@ -131070,6 +131371,12 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,-15.5 parent: 2 + - uid: 11983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,15.5 + parent: 2 - uid: 12307 components: - type: Transform @@ -135868,7 +136175,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -16897.393 + secondsUntilStateChange: -32977.18 state: Opening - uid: 5211 components: @@ -136775,6 +137082,14 @@ entities: - type: Transform pos: 27.345627,0.6012745 parent: 21002 +- proto: Lighter + entities: + - uid: 28870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.559784,-14.813752 + parent: 2 - proto: LightReplacer entities: - uid: 9677 @@ -137567,6 +137882,41 @@ entities: - type: Transform pos: 35.5,35.5 parent: 2 +- proto: LogicGate + entities: + - uid: 28922 + components: + - type: Transform + pos: -32.477474,37.47289 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 28924: + - Output: InputA + - uid: 28923 + components: + - type: Transform + pos: -32.49831,35.52497 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + - type: DeviceLinkSource + linkedPorts: + 28924: + - Output: InputB + - uid: 28924 + components: + - type: Transform + pos: -33.46706,36.483307 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 28436: + - Output: DoorBolt - proto: MachineAnomalyGenerator entities: - uid: 3797 @@ -137849,6 +138199,11 @@ entities: - type: Transform pos: 58.5,7.5 parent: 2 + - uid: 12259 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 - uid: 23232 components: - type: Transform @@ -137874,6 +138229,21 @@ entities: - type: Transform pos: -11.5,26.5 parent: 2 + - uid: 28594 + components: + - type: Transform + pos: 48.5,-31.5 + parent: 2 + - uid: 28880 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 28882 + components: + - type: Transform + pos: 41.5,-44.5 + parent: 2 - proto: MaintenanceToolSpawner entities: - uid: 255 @@ -138004,11 +138374,6 @@ entities: - type: Transform pos: -54.5,-30.5 parent: 2 - - uid: 8712 - components: - - type: Transform - pos: -57.5,-14.5 - parent: 2 - proto: MatterBinStockPart entities: - uid: 23592 @@ -138592,11 +138957,6 @@ entities: - type: Transform pos: 40.5,50.5 parent: 2 - - uid: 11868 - components: - - type: Transform - pos: -57.5,-21.5 - parent: 2 - uid: 15320 components: - type: Transform @@ -138757,10 +139117,10 @@ entities: parent: 2 - proto: OreProcessor entities: - - uid: 11983 + - uid: 9204 components: - type: Transform - pos: -56.5,-16.5 + pos: -57.5,-15.5 parent: 2 - proto: OxygenCanister entities: @@ -138799,6 +139159,11 @@ entities: - type: Transform pos: -42.5,13.5 parent: 2 + - uid: 9211 + components: + - type: Transform + pos: -57.5,-21.5 + parent: 2 - uid: 9468 components: - type: Transform @@ -138809,11 +139174,6 @@ entities: - type: Transform pos: 8.5,-35.5 parent: 2 - - uid: 11867 - components: - - type: Transform - pos: -57.5,-16.5 - parent: 2 - uid: 18928 components: - type: Transform @@ -139604,6 +139964,12 @@ entities: - type: Transform pos: -16.680094,39.619514 parent: 2 + - uid: 28865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.554844,-15.797991 + parent: 2 - proto: PenCap entities: - uid: 2672 @@ -139656,6 +140022,13 @@ entities: - type: Transform pos: -4.5151863,-48.460827 parent: 2 +- proto: PetCarrier + entities: + - uid: 16800 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 - proto: PhoneInstrument entities: - uid: 2675 @@ -140255,15 +140628,24 @@ entities: - type: Transform pos: 22.5,35.5 parent: 2 - - uid: 28331 + - uid: 28332 components: - type: Transform - pos: 3.5,30.5 + pos: -32.5,7.5 parent: 2 - - uid: 28332 + - uid: 28881 components: - type: Transform - pos: -32.5,7.5 + rot: -1.5707963267948966 rad + pos: 8.5,39.5 + parent: 2 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 9399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-33.5 parent: 2 - proto: PosterLegitCarpMount entities: @@ -140348,6 +140730,22 @@ entities: - type: Transform pos: -5.5,53.5 parent: 2 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 1051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 2 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 8712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-37.5 + parent: 2 - proto: PosterLegitThereIsNoGasGiant entities: - uid: 9176 @@ -141638,11 +142036,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,22.5 parent: 2 - - uid: 5571 - components: - - type: Transform - pos: -4.5,38.5 - parent: 2 - uid: 5641 components: - type: Transform @@ -141826,18 +142219,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,52.5 parent: 2 - - uid: 7938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,35.5 - parent: 2 - - uid: 7939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,31.5 - parent: 2 - uid: 7940 components: - type: Transform @@ -141983,6 +142364,23 @@ entities: - type: Transform pos: -11.5,43.5 parent: 2 + - uid: 9294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,31.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,35.5 + parent: 2 + - uid: 9296 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 - uid: 9578 components: - type: Transform @@ -142888,6 +143286,12 @@ entities: powerLoad: 10 - proto: PoweredLightPostSmall entities: + - uid: 1042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,37.5 + parent: 2 - uid: 2259 components: - type: Transform @@ -142898,6 +143302,12 @@ entities: - type: Transform pos: 46.5,-50.5 parent: 2 + - uid: 8258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,31.5 + parent: 2 - uid: 11558 components: - type: Transform @@ -142950,11 +143360,6 @@ entities: - type: Transform pos: -41.5,7.5 parent: 2 - - uid: 14996 - components: - - type: Transform - pos: -38.5,34.5 - parent: 2 - uid: 20783 components: - type: Transform @@ -143123,12 +143528,6 @@ entities: - type: Transform pos: 30.5,-14.5 parent: 2 - - uid: 4011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-16.5 - parent: 2 - uid: 4239 components: - type: Transform @@ -143199,16 +143598,6 @@ entities: - type: Transform pos: -41.5,25.5 parent: 2 - - uid: 9161 - components: - - type: Transform - pos: -41.5,29.5 - parent: 2 - - uid: 9162 - components: - - type: Transform - pos: -41.5,31.5 - parent: 2 - uid: 9186 components: - type: Transform @@ -143233,6 +143622,12 @@ entities: rot: 3.141592653589793 rad pos: -12.5,46.5 parent: 2 + - uid: 9298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-15.5 + parent: 2 - uid: 9852 components: - type: Transform @@ -143854,6 +144249,12 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,25.5 parent: 2 + - uid: 28877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,8.5 + parent: 2 - proto: PresentRandomCash entities: - uid: 9641 @@ -143881,10 +144282,10 @@ entities: color: '#03FCD3FF' - proto: Protolathe entities: - - uid: 6715 + - uid: 7789 components: - type: Transform - pos: 8.5,30.5 + pos: 6.5,30.5 parent: 2 - uid: 9960 components: @@ -145603,6 +146004,16 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-16.5 parent: 21002 + - uid: 28894 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 28895 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 - proto: RailingCornerSmall entities: - uid: 380 @@ -146014,6 +146425,30 @@ entities: - type: Transform pos: 19.5,-25.5 parent: 21002 + - uid: 28896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-22.5 + parent: 2 + - uid: 28897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-19.5 + parent: 2 + - uid: 28898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-21.5 + parent: 2 + - uid: 28899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-18.5 + parent: 2 - proto: RailingRound entities: - uid: 3408 @@ -147322,21 +147757,11 @@ entities: - type: Transform pos: -7.5,46.5 parent: 2 - - uid: 8359 - components: - - type: Transform - pos: -39.5,31.5 - parent: 2 - uid: 8360 components: - type: Transform pos: -39.5,25.5 parent: 2 - - uid: 8361 - components: - - type: Transform - pos: -39.5,29.5 - parent: 2 - uid: 8508 components: - type: Transform @@ -148760,11 +149185,6 @@ entities: - type: Transform pos: 31.5,54.5 parent: 2 - - uid: 6849 - components: - - type: Transform - pos: 28.5,54.5 - parent: 2 - uid: 6850 components: - type: Transform @@ -149034,12 +149454,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,14.5 parent: 2 - - uid: 8329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,15.5 - parent: 2 - uid: 8330 components: - type: Transform @@ -149244,6 +149658,12 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-30.5 parent: 2 + - uid: 9200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,15.5 + parent: 2 - uid: 9256 components: - type: Transform @@ -150906,6 +151326,29 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-7.5 parent: 2 + - uid: 23309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-4.5 + parent: 2 + - uid: 23310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,3.5 + parent: 2 + - uid: 23311 + components: + - type: Transform + pos: 56.5,6.5 + parent: 2 + - uid: 23312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 2 - uid: 23440 components: - type: Transform @@ -150988,6 +151431,16 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,46.5 parent: 2 + - uid: 24118 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 28331 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 - uid: 28364 components: - type: Transform @@ -151302,18 +151755,6 @@ entities: parent: 21002 - proto: ShuttersNormal entities: - - uid: 2604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,12.5 - parent: 2 - - uid: 2605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 2 - uid: 7762 components: - type: Transform @@ -151337,6 +151778,18 @@ entities: - type: Transform pos: 20.5,-1.5 parent: 2 + - uid: 12261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,12.5 + parent: 2 - uid: 16922 components: - type: Transform @@ -151953,10 +152406,18 @@ entities: parent: 2 - proto: SignAi entities: - - uid: 23184 + - uid: 23308 components: - type: Transform - rot: 3.141592653589793 rad + rot: -1.5707963267948966 rad + pos: 57.5,18.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 12285 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: 59.5,6.5 parent: 2 - proto: SignalButtonDirectional @@ -152102,18 +152563,6 @@ entities: - Pressed: Toggle 5742: - Pressed: Toggle - - uid: 2730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2604: - - Pressed: Toggle - 2605: - - Pressed: Toggle - uid: 2735 components: - type: MetaData @@ -152314,22 +152763,6 @@ entities: - Pressed: Toggle 7860: - Pressed: Toggle - - uid: 7984 - components: - - type: MetaData - name: light switch - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,36.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5571: - - Pressed: Toggle - 7939: - - Pressed: Toggle - 7938: - - Pressed: Toggle - uid: 8946 components: - type: Transform @@ -152553,6 +152986,17 @@ entities: linkedPorts: 23781: - Pressed: Toggle + - uid: 18469 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12261: + - Pressed: Toggle + 12830: + - Pressed: Toggle - uid: 18694 components: - type: MetaData @@ -152874,14 +153318,78 @@ entities: linkedPorts: 12131: - Pressed: DoorBolt + - uid: 28868 + components: + - type: MetaData + name: light + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9298: + - Pressed: Toggle + - uid: 28874 + components: + - type: MetaData + name: light + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3764: + - Pressed: Toggle + - uid: 28878 + components: + - type: MetaData + name: door bolt + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23642: + - Pressed: DoorBolt + - uid: 28900 + components: + - type: MetaData + name: lights + - type: Transform + pos: -4.5,39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9296: + - Pressed: Toggle + 9294: + - Pressed: Toggle + 9295: + - Pressed: Toggle - proto: SignAnomaly entities: + - uid: 16793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-36.5 + parent: 2 - uid: 23200 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-36.5 parent: 2 +- proto: SignArcade + entities: + - uid: 6863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-40.5 + parent: 2 - proto: SignArmory entities: - uid: 23185 @@ -152914,6 +153422,14 @@ entities: rot: 3.141592653589793 rad pos: 24.5,2.5 parent: 2 +- proto: SignCans + entities: + - uid: 8260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,11.5 + parent: 2 - proto: SignCargo entities: - uid: 23190 @@ -152938,7 +153454,7 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 2 -- proto: SignChemistry1 +- proto: SignChem entities: - uid: 8921 components: @@ -152962,16 +153478,27 @@ entities: rot: 3.141592653589793 rad pos: 28.5,16.5 parent: 2 -- proto: SignCourt +- proto: SignCryo entities: - - uid: 8922 + - uid: 23799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-1.5 + pos: -45.5,-28.5 parent: 2 - proto: SignDangerMed entities: + - uid: 889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-52.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-52.5 + parent: 2 - uid: 28305 components: - type: Transform @@ -152994,6 +153521,12 @@ entities: parent: 2 - proto: SignDirectionalChapel entities: + - uid: 1279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 2 - uid: 3461 components: - type: Transform @@ -153056,11 +153589,6 @@ entities: rot: 3.141592653589793 rad pos: -1.497997,-40.258747 parent: 2 - - uid: 20992 - components: - - type: Transform - pos: -2.4500175,39.76776 - parent: 2 - uid: 20995 components: - type: Transform @@ -153073,8 +153601,18 @@ entities: rot: 1.5707963267948966 rad pos: 38.525524,2.687672 parent: 2 + - uid: 28601 + components: + - type: Transform + pos: -0.50126964,39.711143 + parent: 2 - proto: SignDirectionalFood entities: + - uid: 14128 + components: + - type: Transform + pos: -0.5,39.5 + parent: 2 - uid: 20980 components: - type: Transform @@ -153093,11 +153631,6 @@ entities: rot: 3.141592653589793 rad pos: -1.497997,-40.456665 parent: 2 - - uid: 20993 - components: - - type: Transform - pos: -2.4500175,39.54901 - parent: 2 - uid: 20994 components: - type: Transform @@ -153407,6 +153940,12 @@ entities: parent: 2 - proto: SignEngineering entities: + - uid: 9293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,30.5 + parent: 2 - uid: 23196 components: - type: Transform @@ -153429,6 +153968,12 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-34.5 parent: 2 + - uid: 23198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-38.5 + parent: 2 - proto: SignFire entities: - uid: 28553 @@ -153436,7 +153981,65 @@ entities: - type: Transform pos: -27.5,34.5 parent: 2 -- proto: SignHydro2 +- proto: SignGravity + entities: + - uid: 9201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,34.5 + parent: 2 +- proto: SignHead + entities: + - uid: 857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-36.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-3.5 + parent: 2 + - uid: 9604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,45.5 + parent: 2 + - uid: 18707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-33.5 + parent: 2 + - uid: 23313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-37.5 + parent: 2 + - uid: 23314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,4.5 + parent: 2 + - uid: 28593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 2 +- proto: SignHydro1 entities: - uid: 23182 components: @@ -153446,11 +154049,11 @@ entities: parent: 2 - proto: SignInterrogation entities: - - uid: 8927 + - uid: 23315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-13.5 + rot: -1.5707963267948966 rad + pos: 33.5,-13.5 parent: 2 - proto: SignJanitor entities: @@ -153462,6 +154065,12 @@ entities: parent: 2 - proto: SignLawyer entities: + - uid: 8922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 2 - uid: 8925 components: - type: Transform @@ -153566,13 +154175,21 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-47.5 parent: 2 +- proto: SignSalvage + entities: + - uid: 28902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-15.5 + parent: 2 - proto: SignScience entities: - - uid: 23198 + - uid: 28906 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-36.5 + pos: 4.5,-40.5 parent: 2 - proto: SignSecurity entities: @@ -153594,6 +154211,22 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-26.5 parent: 2 +- proto: SignServer + entities: + - uid: 28903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-33.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 8514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,2.5 + parent: 2 - proto: SignShock entities: - uid: 5411 @@ -153657,11 +154290,35 @@ entities: parent: 2 - proto: SignSpace entities: - - uid: 7789 + - uid: 880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-18.5 + rot: -1.5707963267948966 rad + pos: -34.5,38.5 + parent: 2 + - uid: 885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-81.5 + parent: 2 + - uid: 890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-51.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-47.5 + parent: 2 + - uid: 8249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-20.5 parent: 2 - uid: 8936 components: @@ -153669,6 +154326,24 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-32.5 parent: 2 + - uid: 9162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,34.5 + parent: 2 + - uid: 9297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,7.5 + parent: 2 + - uid: 23354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-18.5 + parent: 2 - uid: 28314 components: - type: Transform @@ -153689,6 +154364,18 @@ entities: - type: Transform pos: 47.5,-45.5 parent: 21002 + - uid: 28437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-54.5 + parent: 2 + - uid: 28864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-81.5 + parent: 2 - proto: SignSurgery entities: - uid: 8937 @@ -153704,6 +154391,14 @@ entities: - type: Transform pos: -30.5,-2.5 parent: 2 +- proto: SignTheater + entities: + - uid: 28904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-48.5 + parent: 2 - proto: SignToolStorage entities: - uid: 5794 @@ -153712,6 +154407,22 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 +- proto: SignVirology + entities: + - uid: 28907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-24.5 + parent: 2 +- proto: SignXenobio + entities: + - uid: 7850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-51.5 + parent: 2 - proto: SingularityGenerator entities: - uid: 7089 @@ -154006,11 +154717,6 @@ entities: - type: Transform pos: 15.5,37.5 parent: 2 - - uid: 9399 - components: - - type: Transform - pos: 15.5,37.5 - parent: 2 - proto: SodaDispenserMachineCircuitboard entities: - uid: 5812 @@ -157436,6 +158142,18 @@ entities: parent: 2 - proto: StairStageDark entities: + - uid: 4011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-23.5 + parent: 2 - uid: 28344 components: - type: Transform @@ -157469,6 +158187,17 @@ entities: parent: 2 - proto: StationMap entities: + - uid: 18502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-16.5 + parent: 2 + - uid: 18574 + components: + - type: Transform + pos: -47.5,-28.5 + parent: 2 - uid: 23439 components: - type: Transform @@ -157508,11 +158237,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 - - uid: 23463 - components: - - type: Transform - pos: -43.5,-28.5 - parent: 2 - uid: 23493 components: - type: Transform @@ -157842,16 +158566,6 @@ entities: - type: Transform pos: -42.5,25.5 parent: 2 - - uid: 8890 - components: - - type: Transform - pos: -42.5,29.5 - parent: 2 - - uid: 8891 - components: - - type: Transform - pos: -42.5,31.5 - parent: 2 - uid: 9743 components: - type: Transform @@ -159023,14 +159737,19 @@ entities: pos: -20.5,-2.5 parent: 2 - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment id: Exhibit A - uid: 532 components: - type: Transform + anchored: False pos: -21.5,-2.5 parent: 2 - type: SurveillanceCamera id: Exhibit B + - type: Physics + bodyType: Dynamic - uid: 3481 components: - type: Transform @@ -160064,6 +160783,12 @@ entities: - type: Transform pos: 37.5,-34.5 parent: 2 + - uid: 9202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-16.5 + parent: 2 - uid: 13006 components: - type: Transform @@ -160094,6 +160819,18 @@ entities: - type: Transform pos: 58.5,14.5 parent: 2 + - uid: 16792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 2 + - uid: 28613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 2 - proto: TableCounterWood entities: - uid: 294 @@ -160160,24 +160897,12 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-54.5 parent: 2 - - uid: 12259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-36.5 - parent: 2 - uid: 12260 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-36.5 parent: 2 - - uid: 12261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-36.5 - parent: 2 - uid: 12263 components: - type: Transform @@ -160220,6 +160945,16 @@ entities: rot: 3.141592653589793 rad pos: 12.5,34.5 parent: 2 + - uid: 20992 + components: + - type: Transform + pos: -54.5,-36.5 + parent: 2 + - uid: 20993 + components: + - type: Transform + pos: -56.5,-36.5 + parent: 2 - uid: 23276 components: - type: Transform @@ -161119,11 +161854,6 @@ entities: - type: Transform pos: 8.5,-18.5 parent: 2 - - uid: 1042 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 2 - uid: 1572 components: - type: Transform @@ -161743,6 +162473,11 @@ entities: - type: Transform pos: 16.5,1.5 parent: 21002 + - uid: 23184 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 - uid: 23374 components: - type: Transform @@ -169833,96 +170568,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,34.5 parent: 2 - - uid: 8247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,32.5 - parent: 2 - - uid: 8248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,32.5 - parent: 2 - - uid: 8249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,32.5 - parent: 2 - - uid: 8250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,32.5 - parent: 2 - - uid: 8251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,31.5 - parent: 2 - - uid: 8252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,30.5 - parent: 2 - - uid: 8254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,30.5 - parent: 2 - - uid: 8256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,32.5 - parent: 2 - - uid: 8257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,30.5 - parent: 2 - - uid: 8258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,28.5 - parent: 2 - - uid: 8259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,28.5 - parent: 2 - - uid: 8260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,28.5 - parent: 2 - - uid: 8261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,28.5 - parent: 2 - - uid: 8262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,28.5 - parent: 2 - - uid: 8263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,29.5 - parent: 2 - uid: 8264 components: - type: Transform @@ -170442,6 +171087,11 @@ entities: - type: Transform pos: -29.5,24.5 parent: 2 + - uid: 9199 + components: + - type: Transform + pos: 28.5,54.5 + parent: 2 - uid: 9383 components: - type: Transform @@ -172845,6 +173495,11 @@ entities: - type: Transform pos: -48.5,-28.5 parent: 2 + - uid: 11868 + components: + - type: Transform + pos: 28.5,55.5 + parent: 2 - uid: 11962 components: - type: Transform @@ -173549,12 +174204,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,48.5 parent: 2 - - uid: 16800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,36.5 - parent: 2 - uid: 18052 components: - type: Transform @@ -176093,18 +176742,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,32.5 parent: 21002 - - uid: 28436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,30.5 - parent: 2 - - uid: 28437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,30.5 - parent: 2 - uid: 28521 components: - type: Transform @@ -176679,12 +177316,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-17.5 parent: 2 - - uid: 1276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-17.5 - parent: 2 - uid: 1277 components: - type: Transform @@ -176697,54 +177328,12 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-17.5 parent: 2 - - uid: 1279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-17.5 - parent: 2 - uid: 1280 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-4.5 parent: 2 - - uid: 1282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-7.5 - parent: 2 - - uid: 1283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-6.5 - parent: 2 - - uid: 1284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 2 - - uid: 1324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-8.5 - parent: 2 - - uid: 1325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-17.5 - parent: 2 - - uid: 1326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-17.5 - parent: 2 - uid: 1327 components: - type: Transform @@ -178603,11 +179192,11 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,35.5 parent: 2 - - uid: 7849 + - uid: 7851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,36.5 + rot: 3.141592653589793 rad + pos: -2.5,38.5 parent: 2 - uid: 7852 components: @@ -179724,11 +180313,6 @@ entities: - type: Transform pos: -51.5,-18.5 parent: 2 - - uid: 11535 - components: - - type: Transform - pos: -57.5,-15.5 - parent: 2 - uid: 11536 components: - type: Transform @@ -180496,6 +181080,54 @@ entities: - type: Transform pos: -22.5,27.5 parent: 2 + - uid: 28597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 2 + - uid: 28598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 2 + - uid: 28599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-9.5 + parent: 2 + - uid: 28600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 2 + - uid: 28602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 2 + - uid: 28883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 2 + - uid: 28884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-6.5 + parent: 2 + - uid: 28885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-7.5 + parent: 2 - proto: WallSolidRust entities: - uid: 24642 @@ -181262,18 +181894,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,22.5 parent: 2 - - uid: 8918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,30.5 - parent: 2 - - uid: 8919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,28.5 - parent: 2 - uid: 8938 components: - type: Transform @@ -181717,11 +182337,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-37.5 parent: 2 - - uid: 12285 - components: - - type: Transform - pos: -55.5,-36.5 - parent: 2 - proto: WindoorHydroponicsLocked entities: - uid: 3318 @@ -181906,6 +182521,14 @@ entities: - type: Transform pos: -5.5,-34.5 parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 9234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-16.5 + parent: 2 - proto: WindoorSecureScienceLocked entities: - uid: 9918 @@ -182781,6 +183404,44 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-26.5 parent: 2 + - uid: 28616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-28.5 + parent: 2 + - uid: 28617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-29.5 + parent: 2 + - uid: 28618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-27.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 28867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-16.5 + parent: 2 + - uid: 28875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 2 + - uid: 28876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 2 - proto: WindowReinforcedDirectional entities: - uid: 352 @@ -182939,12 +183600,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-12.5 parent: 2 - - uid: 1865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-28.5 - parent: 2 - uid: 2329 components: - type: Transform @@ -182981,18 +183636,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,4.5 parent: 2 - - uid: 3220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-27.5 - parent: 2 - - uid: 3227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-29.5 - parent: 2 - uid: 3424 components: - type: Transform @@ -183275,11 +183918,6 @@ entities: - type: Transform pos: -35.5,-4.5 parent: 2 - - uid: 1051 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 2 - uid: 1596 components: - type: Transform @@ -183326,8 +183964,13 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -362102 + secondsUntilStateChange: -378181.78 state: Opening + - uid: 28863 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 - proto: WoodenBench entities: - uid: 21 diff --git a/Resources/Maps/train.yml b/Resources/Maps/train.yml index 07fca2c9c7f..19a85365561 100644 --- a/Resources/Maps/train.yml +++ b/Resources/Maps/train.yml @@ -5469,21 +5469,21 @@ entities: id: Train - proto: AccordionInstrument entities: - - uid: 12393 + - uid: 3 components: - type: Transform pos: -5.3016195,-317.37082 parent: 2 - proto: AcousticGuitarInstrument entities: - - uid: 10093 + - uid: 4 components: - type: Transform pos: -7.466254,-281.50427 parent: 2 - proto: AirAlarm entities: - - uid: 2277 + - uid: 5 components: - type: Transform rot: 1.5707963267948966 rad @@ -5491,27 +5491,27 @@ entities: parent: 2 - type: DeviceList devices: - - 13310 - - 13323 - - 12367 - - 12297 - - 13324 - - uid: 5925 + - 7463 + - 442 + - 9613 + - 9801 + - 7470 + - uid: 6 components: - type: Transform pos: -1.5,-334.5 parent: 2 - type: DeviceList devices: - - 12798 - - 10658 - - 13392 - - 13387 - - 13386 - - 13396 - - 13395 - - 12306 - - uid: 8201 + - 9818 + - 9597 + - 453 + - 7496 + - 7495 + - 7499 + - 7498 + - 7430 + - uid: 7 components: - type: Transform rot: 1.5707963267948966 rad @@ -5519,41 +5519,45 @@ entities: parent: 2 - type: DeviceList devices: - - 5346 - - 13214 - - 5277 - - 5260 - - 13200 - - 13201 - - 13202 - - uid: 8432 + - 9775 + - 423 + - 9784 + - 9643 + - 7450 + - 7345 + - 7346 + - uid: 8 components: - type: Transform pos: -5.5,-306.5 parent: 2 - type: DeviceList devices: - - 3027 - - 12470 - - 8430 - - 13377 - - 13372 - - 7798 - - 7799 - - 7800 - - 13344 - - 13343 - - 13342 - - 13345 - - 13346 - - 13347 - - uid: 10964 + - 9702 + - 9616 + - 388 + - 7493 + - 7491 + - 7414 + - 7415 + - 7416 + - 7478 + - 7477 + - 7476 + - 7479 + - 7480 + - 7481 + - uid: 9 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-345.5 parent: 2 - - uid: 11906 + - type: DeviceList + devices: + - 9468 + - 9813 + - uid: 10 components: - type: Transform rot: -1.5707963267948966 rad @@ -5561,18 +5565,15 @@ entities: parent: 2 - type: DeviceList devices: - - 13384 - - 12898 - - 12896 - - 13390 - - 13386 - - 13387 - - 12897 - - 12798 - - 13392 - - 13395 - - 13396 - - uid: 12935 + - 452 + - 7497 + - 7495 + - 7496 + - 9818 + - 453 + - 7498 + - 7499 + - uid: 11 components: - type: Transform rot: 1.5707963267948966 rad @@ -5580,12 +5581,12 @@ entities: parent: 2 - type: DeviceList devices: - - 884 - - 1825 - - 13073 - - 393 - - 391 - - uid: 13080 + - 9630 + - 9789 + - 392 + - 7363 + - 7361 + - uid: 12 components: - type: Transform rot: 1.5707963267948966 rad @@ -5593,14 +5594,14 @@ entities: parent: 2 - type: DeviceList devices: - - 13072 - - 857 - - 747 - 391 - - 390 - - 387 - - 146 - - uid: 13105 + - 9473 + - 9816 + - 7361 + - 7360 + - 7358 + - 7357 + - uid: 13 components: - type: Transform rot: 3.141592653589793 rad @@ -5608,12 +5609,13 @@ entities: parent: 2 - type: DeviceList devices: - - 13083 - - 611 - - 6915 - - 146 - - 396 - - uid: 13109 + - 393 + - 9672 + - 9661 + - 7357 + - 7364 + - 9586 + - uid: 14 components: - type: Transform rot: 3.141592653589793 rad @@ -5621,28 +5623,26 @@ entities: parent: 2 - type: DeviceList devices: - - 1155 - - 977 - - 637 - - 638 - - 13106 - - 6036 - - 1191 - - uid: 13110 + - 9494 + - 9703 + - 7316 + - 7317 + - 394 + - 9820 + - 9607 + - uid: 15 components: - type: Transform pos: 3.5,-36.5 parent: 2 - type: DeviceList devices: - - 1239 - - 954 - - 13107 - - 610 - - 639 - - 6036 - - 1191 - - uid: 13115 + - 9690 + - 9477 + - 395 + - 7315 + - 7318 + - uid: 16 components: - type: Transform rot: 3.141592653589793 rad @@ -5650,17 +5650,20 @@ entities: parent: 2 - type: DeviceList devices: - - 1427 - - 13119 - - 1372 - - 13111 - - 13112 - - 13113 - - 13114 - - 10757 - - 13120 - - 1408 - - uid: 13116 + - 7370 + - 397 + - 7368 + - 7332 + - 7333 + - 7334 + - 7335 + - 7429 + - 398 + - 7369 + - 9579 + - 9501 + - 9476 + - uid: 17 components: - type: Transform rot: 1.5707963267948966 rad @@ -5668,11 +5671,11 @@ entities: parent: 2 - type: DeviceList devices: - - 13118 - - 4056 - - 2076 - - 10757 - - uid: 13117 + - 396 + - 9745 + - 9495 + - 7429 + - uid: 18 components: - type: Transform rot: -1.5707963267948966 rad @@ -5680,16 +5683,16 @@ entities: parent: 2 - type: DeviceList devices: - - 13121 - - 1429 - - 13113 - - 13114 - - 13112 - - 13111 - - 1326 - - 1238 - - 1431 - - uid: 13124 + - 399 + - 7371 + - 7334 + - 7335 + - 7333 + - 7332 + - 9695 + - 9485 + - 7372 + - uid: 19 components: - type: Transform rot: 1.5707963267948966 rad @@ -5697,11 +5700,11 @@ entities: parent: 2 - type: DeviceList devices: - - 1409 - - 13122 - - 1415 - - 1372 - - uid: 13146 + - 9699 + - 400 + - 9492 + - 7368 + - uid: 20 components: - type: Transform rot: -1.5707963267948966 rad @@ -5709,34 +5712,36 @@ entities: parent: 2 - type: DeviceList devices: - - 13145 - - 13137 - - 4508 - - 13127 - - 13128 - - 13129 - - 13133 - - 13132 - - 12954 - - 13134 - - 13135 - - 13136 - - uid: 13147 + - 9646 + - 405 + - 7336 + - 7337 + - 7338 + - 7434 + - 7433 + - 7431 + - 7435 + - 7436 + - 7437 + - uid: 21 components: - type: Transform pos: 2.5,-80.5 parent: 2 - type: DeviceList devices: - - 13133 - - 13132 - - 12954 - - 3310 - - 3351 - - 13125 - - 1701 - - 1702 - - uid: 13148 + - 7434 + - 7433 + - 7431 + - 9710 + - 9821 + - 401 + - 7375 + - 7376 + - 9594 + - 9593 + - 9502 + - uid: 22 components: - type: Transform rot: 3.141592653589793 rad @@ -5744,30 +5749,32 @@ entities: parent: 2 - type: DeviceList devices: - - 1544 - - 3314 - - 3392 - - 13126 - - 13136 - - 13135 - - 13134 - - uid: 13150 + - 7374 + - 9711 + - 9508 + - 402 + - 7437 + - 7436 + - 7435 + - 9596 + - 9666 + - uid: 23 components: - type: Transform pos: 2.5,-84.5 parent: 2 - type: DeviceList devices: - - 1701 - - 13127 - - 13128 - - 13129 - - 13130 - - 4509 - - 4360 - - 1725 - - 1715 - - uid: 13151 + - 7375 + - 7336 + - 7337 + - 7338 + - 403 + - 9749 + - 9537 + - 7319 + - 7378 + - uid: 24 components: - type: Transform rot: 1.5707963267948966 rad @@ -5775,13 +5782,13 @@ entities: parent: 2 - type: DeviceList devices: - - 13131 - - 3262 - - 3261 - - 3371 - - 1723 - - 1726 - - uid: 13152 + - 404 + - 9705 + - 9704 + - 9503 + - 7379 + - 7320 + - uid: 25 components: - type: Transform rot: 1.5707963267948966 rad @@ -5789,10 +5796,10 @@ entities: parent: 2 - type: DeviceList devices: - - 13153 - - 3284 - - 3372 - - uid: 13161 + - 407 + - 9708 + - 9504 + - uid: 26 components: - type: Transform rot: 3.141592653589793 rad @@ -5800,38 +5807,41 @@ entities: parent: 2 - type: DeviceList devices: - - 13158 - - 13159 - - 2407 - - 2408 - - 2409 - - 13157 - - 13156 - - 13155 - - 3630 - - 3436 - - 13154 - - 13160 - - 3474 - - 3550 - - 3475 - - 3551 - - 3437 - - 3549 - - 13149 - - uid: 13165 + - 7438 + - 7439 + - 7383 + - 7384 + - 7385 + - 7341 + - 7340 + - 7339 + - 9727 + - 9510 + - 408 + - 7440 + - 9516 + - 9716 + - 9517 + - 9717 + - 9511 + - 9715 + - 406 + - 9518 + - 9519 + - 9520 + - uid: 27 components: - type: Transform pos: -0.5,-118.5 parent: 2 - type: DeviceList devices: - - 13164 - - 3483 - - 3600 - - 13163 - - 2410 - - uid: 13166 + - 409 + - 9524 + - 9722 + - 7441 + - 7386 + - uid: 28 components: - type: Transform rot: 1.5707963267948966 rad @@ -5839,8 +5849,8 @@ entities: parent: 2 - type: DeviceList devices: - - 3626 - - uid: 13168 + - 9525 + - uid: 29 components: - type: Transform rot: 3.141592653589793 rad @@ -5848,24 +5858,23 @@ entities: parent: 2 - type: DeviceList devices: - - 13167 - - 3480 - - 3603 - - 13163 - - 13158 - - 13159 - - 2406 - - 2405 - - 2256 - - 3478 - - 3553 - - 3477 - - 3513 - - 3476 - - 3552 - - 3608 - - 2410 - - uid: 13171 + - 410 + - 9522 + - 9723 + - 7441 + - 7438 + - 7439 + - 7382 + - 7381 + - 7380 + - 9719 + - 9714 + - 9718 + - 9724 + - 7386 + - 9598 + - 9667 + - uid: 30 components: - type: Transform rot: -1.5707963267948966 rad @@ -5873,12 +5882,12 @@ entities: parent: 2 - type: DeviceList devices: - - 2411 - - 13170 - - 2412 - - 3457 - - 3599 - - uid: 13176 + - 7387 + - 411 + - 7388 + - 9515 + - 9721 + - uid: 31 components: - type: Transform rot: -1.5707963267948966 rad @@ -5886,15 +5895,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2834 - - 2835 - - 2836 - - 13173 - - 13172 - - 3647 - - 4016 - - 2833 - - uid: 13178 + - 7397 + - 7398 + - 7399 + - 7443 + - 7442 + - 9731 + - 7396 + - uid: 32 components: - type: Transform rot: 1.5707963267948966 rad @@ -5902,15 +5910,15 @@ entities: parent: 2 - type: DeviceList devices: - - 2830 - - 2829 - - 2828 - - 13174 - - 2827 - - 2826 - - 13173 - - 13172 - - uid: 13180 + - 7393 + - 7392 + - 7391 + - 7444 + - 7390 + - 7389 + - 7443 + - 7442 + - uid: 33 components: - type: Transform rot: -1.5707963267948966 rad @@ -5918,26 +5926,25 @@ entities: parent: 2 - type: DeviceList devices: - - 4568 - - 13179 - - 3980 - - 2830 - - 2829 - - 2828 - - 2831 - - uid: 13182 + - 9542 + - 414 + - 9737 + - 7393 + - 7392 + - 7391 + - 7394 + - uid: 34 components: - type: Transform pos: 4.5,-136.5 parent: 2 - type: DeviceList devices: - - 2831 - - 2832 - - 3954 - - 3650 - - 13181 - - uid: 13185 + - 7394 + - 7395 + - 9736 + - 415 + - uid: 35 components: - type: Transform rot: 1.5707963267948966 rad @@ -5945,15 +5952,15 @@ entities: parent: 2 - type: DeviceList devices: - - 13184 - - 13183 - - 3993 - - 4033 - - 2836 - - 2835 - - 2834 - - 2837 - - uid: 13187 + - 417 + - 416 + - 9739 + - 9529 + - 7399 + - 7398 + - 7397 + - 7400 + - uid: 36 components: - type: Transform rot: 1.5707963267948966 rad @@ -5961,11 +5968,11 @@ entities: parent: 2 - type: DeviceList devices: - - 4031 - - 4037 - - 13186 - - 2837 - - uid: 13189 + - 9528 + - 9742 + - 418 + - 7400 + - uid: 37 components: - type: Transform rot: 1.5707963267948966 rad @@ -5973,11 +5980,11 @@ entities: parent: 2 - type: DeviceList devices: - - 13188 - - 4556 - - 4559 - - 2826 - - uid: 13209 + - 419 + - 9751 + - 9540 + - 7389 + - uid: 38 components: - type: Transform rot: 1.5707963267948966 rad @@ -5985,15 +5992,16 @@ entities: parent: 2 - type: DeviceList devices: - - 13207 - - 13206 - - 13204 - - 13205 - - 13192 - - 13193 - - 13194 - - 1498 - - uid: 13211 + - 9656 + - 420 + - 7452 + - 7453 + - 7342 + - 7343 + - 7344 + - 7373 + - 9583 + - uid: 39 components: - type: Transform rot: 1.5707963267948966 rad @@ -6001,13 +6009,13 @@ entities: parent: 2 - type: DeviceList devices: - - 5252 - - 5251 - - 13210 - - 13199 - - 13191 - - 13190 - - uid: 13213 + - 9521 + - 9752 + - 421 + - 7449 + - 7446 + - 7445 + - uid: 40 components: - type: Transform rot: 1.5707963267948966 rad @@ -6015,35 +6023,33 @@ entities: parent: 2 - type: DeviceList devices: - - 13212 - - 5261 - - 5275 - - 13197 - - 13196 - - uid: 13218 + - 422 + - 7448 + - 7447 + - uid: 41 components: - type: Transform pos: 4.5,-164.5 parent: 2 - type: DeviceList devices: - - 5301 - - 5302 - - 13217 - - 13192 - - 13193 - - 13194 - - 13202 - - 13201 - - 13200 - - 13203 - - uid: 13220 + - 9773 + - 9569 + - 424 + - 7342 + - 7343 + - 7344 + - 7346 + - 7345 + - 7450 + - 7451 + - uid: 42 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-171.5 parent: 2 - - uid: 13239 + - uid: 43 components: - type: Transform rot: -1.5707963267948966 rad @@ -6051,46 +6057,49 @@ entities: parent: 2 - type: DeviceList devices: - - 13238 - - 13223 - - 13224 - - 13237 - - 13236 - - 5129 - - 5128 - - 13225 - - 13226 - - uid: 13241 + - 428 + - 7454 + - 7455 + - 9647 + - 9834 + - 7403 + - 7402 + - 7456 + - 7457 + - uid: 44 components: - type: Transform pos: 2.5,-188.5 parent: 2 - type: DeviceList devices: - - 13224 - - 13223 - - 5073 - - 5082 - - 5134 - - 13221 - - 9827 - - 8852 - - 15086 - - uid: 13244 + - 7455 + - 7454 + - 9782 + - 9538 + - 7407 + - 425 + - 7427 + - 7426 + - 7510 + - 9589 + - 9628 + - 9591 + - uid: 45 components: - type: Transform pos: -0.5,-204.5 parent: 2 - type: DeviceList devices: - - 5070 - - 4967 - - 13227 - - 13226 - - 13225 - - 13242 - - 15087 - - uid: 13247 + - 9762 + - 9545 + - 427 + - 7457 + - 7456 + - 7458 + - 7511 + - uid: 46 components: - type: Transform rot: 1.5707963267948966 rad @@ -6098,13 +6107,13 @@ entities: parent: 2 - type: DeviceList devices: - - 5127 - - 13246 - - 5129 - - 5128 - - 5135 - - 5130 - - uid: 13249 + - 9557 + - 429 + - 7403 + - 7402 + - 7408 + - 7404 + - uid: 47 components: - type: Transform rot: 1.5707963267948966 rad @@ -6112,12 +6121,10 @@ entities: parent: 2 - type: DeviceList devices: - - 13248 - - 5072 - - 5083 - - 5135 - - 5134 - - uid: 13251 + - 430 + - 7408 + - 7407 + - uid: 48 components: - type: Transform rot: -1.5707963267948966 rad @@ -6125,12 +6132,12 @@ entities: parent: 2 - type: DeviceList devices: - - 5108 - - 13250 - - 5107 - - 5130 - - 5131 - - uid: 13252 + - 9553 + - 431 + - 9765 + - 7404 + - 7405 + - uid: 49 components: - type: Transform rot: -1.5707963267948966 rad @@ -6138,50 +6145,48 @@ entities: parent: 2 - type: DeviceList devices: - - 13253 - - 4981 - - 13254 - - 4670 - - 5110 - - 4905 - - 5068 - - 13255 - - 5121 - - 5131 - - 13242 - - uid: 13317 + - 432 + - 9758 + - 433 + - 9754 + - 9554 + - 9543 + - 9760 + - 434 + - 9555 + - 7405 + - 7458 + - uid: 50 components: - type: Transform pos: -0.5,-272.5 parent: 2 - type: DeviceList devices: - - 13314 - - 13315 - - 13316 - - 12341 - - 12340 - - 13313 - - 13312 - - 13311 - - 13310 - - uid: 13322 + - 7465 + - 7466 + - 440 + - 7464 + - 7348 + - 7347 + - 7463 + - uid: 51 components: - type: Transform pos: 4.5,-269.5 parent: 2 - type: DeviceList devices: - - 13321 - - 13320 - - 13319 - - 13313 - - 13312 - - 13311 - - 13318 - - 12322 - - 12333 - - uid: 13333 + - 7469 + - 7468 + - 7467 + - 7464 + - 7348 + - 7347 + - 441 + - 9644 + - 9688 + - uid: 52 components: - type: Transform rot: 1.5707963267948966 rad @@ -6189,15 +6194,13 @@ entities: parent: 2 - type: DeviceList devices: - - 13325 - - 12356 - - 12355 - - 13326 - - 13328 - - 13314 - - 13315 - - 13332 - - uid: 13335 + - 443 + - 444 + - 7471 + - 7465 + - 7466 + - 7472 + - uid: 53 components: - type: Transform rot: 3.141592653589793 rad @@ -6205,11 +6208,11 @@ entities: parent: 2 - type: DeviceList devices: - - 12362 - - 13334 - - 12298 - - 13332 - - uid: 13341 + - 9612 + - 445 + - 9802 + - 7472 + - uid: 54 components: - type: Transform rot: 3.141592653589793 rad @@ -6217,17 +6220,17 @@ entities: parent: 2 - type: DeviceList devices: - - 12224 - - 13336 - - 12305 - - 13337 - - 13319 - - 13320 - - 13338 - - 10538 - - 13340 - - 13339 - - uid: 13358 + - 9797 + - 446 + - 9605 + - 447 + - 7467 + - 7468 + - 7473 + - 7428 + - 7475 + - 7474 + - uid: 55 components: - type: Transform rot: -1.5707963267948966 rad @@ -6235,36 +6238,38 @@ entities: parent: 2 - type: DeviceList devices: - - 3400 - - 12704 - - 12705 - - 13347 - - 13346 - - 13345 - - 13354 - - 13353 - - 13355 - - 13356 - - 13357 - - uid: 13365 + - 386 + - 9769 + - 9484 + - 7481 + - 7480 + - 7479 + - 7483 + - 7482 + - 7349 + - 7350 + - 7351 + - 9620 + - 9478 + - uid: 56 components: - type: Transform pos: 10.5,-305.5 parent: 2 - type: DeviceList devices: - - 13361 - - 13360 - - 13342 - - 13343 - - 13344 - - 13359 - - 12501 - - 12502 - - 13362 - - 13363 - - 13364 - - uid: 13370 + - 7485 + - 7484 + - 7476 + - 7477 + - 7478 + - 448 + - 9618 + - 9808 + - 7486 + - 7487 + - 7488 + - uid: 57 components: - type: Transform rot: 1.5707963267948966 rad @@ -6272,12 +6277,15 @@ entities: parent: 2 - type: DeviceList devices: - - 13368 - - 13367 - - 13366 - - 12430 - - 12530 - - uid: 13374 + - 7489 + - 9807 + - 9771 + - 9564 + - 9632 + - 9621 + - 7415 + - 7416 + - uid: 58 components: - type: Transform rot: 3.141592653589793 rad @@ -6285,28 +6293,26 @@ entities: parent: 2 - type: DeviceList devices: - - 13371 - - 12428 - - 12433 - - 13367 - - 13372 - - 13373 - - uid: 13382 + - 450 + - 7489 + - 7491 + - 7492 + - uid: 59 components: - type: Transform pos: -6.5,-298.5 parent: 2 - type: DeviceList devices: - - 12581 - - 12580 - - 13380 - - 13377 - - 13381 - - 13357 - - 13356 - - 13355 - - uid: 13383 + - 9811 + - 9625 + - 451 + - 7493 + - 7494 + - 7351 + - 7350 + - 7349 + - uid: 60 components: - type: Transform rot: -1.5707963267948966 rad @@ -6314,27 +6320,29 @@ entities: parent: 2 - type: DeviceList devices: - - 12508 - - 12564 - - 4689 - - 13360 - - uid: 13391 + - 9619 + - 9810 + - 387 + - 7484 + - uid: 61 components: - type: Transform pos: -0.5,-328.5 parent: 2 - type: DeviceList devices: - - 13384 - - 12898 - - 12896 - - 13390 - - 13386 - - 13387 - - 9425 - - 10870 - - 9426 - - uid: 13402 + - 452 + - 9566 + - 9772 + - 7497 + - 7495 + - 7496 + - 7328 + - 7330 + - 7329 + - 9621 + - 9632 + - uid: 62 components: - type: Transform rot: 1.5707963267948966 rad @@ -6342,64 +6350,63 @@ entities: parent: 2 - type: DeviceList devices: - - 13401 - - 12813 - - 12920 - - 13396 - - uid: 13421 + - 454 + - 9763 + - 9651 + - 7499 + - uid: 63 components: - type: Transform pos: -3.5,-359.5 parent: 2 - type: DeviceList devices: - - 1278 - - 13420 - - 13417 - - 12984 - - 13041 - - 13067 - - 12985 - - 13416 - - 13419 - - 13418 - - 13068 - - 12988 - - 13040 - - 12989 - - 13039 - - 13423 - - 13424 - - 13082 - - 13415 - - 13414 - - 13412 - - 13413 - - 12754 - - 12932 - - 12933 - - 13081 - - 12944 - - 12943 - - 16682 - - 11912 - - 16679 - - uid: 13426 + - 9486 + - 7508 + - 7505 + - 9635 + - 9573 + - 9572 + - 9636 + - 7504 + - 7507 + - 7506 + - 9682 + - 9639 + - 9681 + - 9640 + - 9827 + - 456 + - 457 + - 9776 + - 7503 + - 7502 + - 7500 + - 7501 + - 9633 + - 9824 + - 9777 + - 9825 + - 9634 + - 7355 + - 9830 + - 9669 + - uid: 64 components: - type: Transform pos: -4.5,-369.5 parent: 2 - type: DeviceList devices: - - 13422 - - 13094 - - 12987 - - 13425 - - 13088 - - 12986 - - 13419 - - 13418 - - uid: 13429 + - 455 + - 9832 + - 9638 + - 458 + - 9831 + - 9637 + - 7507 + - 7506 + - uid: 65 components: - type: Transform rot: 1.5707963267948966 rad @@ -6407,10 +6414,12 @@ entities: parent: 2 - type: DeviceList devices: - - 13427 - - 13053 - - 12994 - - uid: 14727 + - 459 + - 9780 + - 9641 + - 9642 + - 9466 + - uid: 66 components: - type: Transform rot: 3.141592653589793 rad @@ -6418,13 +6427,12 @@ entities: parent: 2 - type: DeviceList devices: - - 14726 - - 1378 - - 1375 - - 9827 - - 8852 - - 14728 - - uid: 15278 + - 460 + - 9697 + - 7427 + - 7426 + - 7509 + - uid: 67 components: - type: Transform rot: -1.5707963267948966 rad @@ -6432,31 +6440,33 @@ entities: parent: 2 - type: DeviceList devices: - - 8213 - - 7879 - - 8483 - - 8009 - - 15275 - - 13108 - - 8012 - - 12324 - - 9085 - - 17000 - - uid: 15279 + - 7424 + - 7419 + - 7425 + - 7421 + - 462 + - 7432 + - 7422 + - 7331 + - 7327 + - 7314 + - 9610 + - 9631 + - uid: 68 components: - type: Transform pos: 4.5,-241.5 parent: 2 - type: DeviceList devices: - - 15274 - - 8091 - - 8071 - - 8213 - - 7879 - - 8483 - - 7885 - - uid: 15280 + - 461 + - 9790 + - 9585 + - 7424 + - 7419 + - 7425 + - 7420 + - uid: 69 components: - type: Transform rot: -1.5707963267948966 rad @@ -6464,17 +6474,15 @@ entities: parent: 2 - type: DeviceList devices: - - 8089 - - 15277 - - 8314 - - 6858 - - 7885 - - 9085 - - 12324 - - 8037 - - 6857 - - 15281 - - uid: 15282 + - 464 + - 7413 + - 7420 + - 7327 + - 7331 + - 7423 + - 7412 + - 7512 + - uid: 70 components: - type: Transform rot: 1.5707963267948966 rad @@ -6482,18 +6490,20 @@ entities: parent: 2 - type: DeviceList devices: - - 15284 - - 15283 - - 15276 - - 6726 - - 8037 - - 13108 - - 8012 - - 15285 - - 15286 - - 15287 - - 7820 - - uid: 15292 + - 9552 + - 9548 + - 463 + - 7409 + - 7423 + - 7432 + - 7422 + - 7352 + - 7353 + - 7354 + - 7417 + - 9757 + - 9544 + - uid: 71 components: - type: Transform rot: 3.141592653589793 rad @@ -6501,18 +6511,20 @@ entities: parent: 2 - type: DeviceList devices: - - 15289 - - 7476 - - 4202 - - 7776 - - 4950 - - 15288 - - 6855 - - 7821 - - 6856 - - 15290 - - 15291 - - uid: 16971 + - 466 + - 9546 + - 9826 + - 9828 + - 9581 + - 465 + - 7410 + - 7418 + - 7411 + - 7513 + - 7514 + - 9550 + - 9759 + - uid: 72 components: - type: Transform rot: -1.5707963267948966 rad @@ -6520,120 +6532,114 @@ entities: parent: 2 - type: DeviceList devices: - - 16996 - - 17001 - - 16990 + - 7516 + - 9838 + - 9670 - proto: AirCanister entities: - - uid: 4848 + - uid: 73 components: - type: Transform pos: -21.5,-260.5 parent: 2 + - uid: 74 + components: + - type: Transform + pos: -0.5,-327.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: -0.5,-354.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -1.5,-168.5 + parent: 2 - proto: Airlock entities: - - uid: 2078 + - uid: 76 components: - type: Transform pos: -5.5,-110.5 parent: 2 - - uid: 2079 + - uid: 77 components: - type: Transform pos: -5.5,-113.5 parent: 2 - - type: DeviceLinkSink - links: - - 2096 - - uid: 2080 + - uid: 78 components: - type: Transform pos: -5.5,-116.5 parent: 2 - - type: DeviceLinkSink - links: - - 2095 - - uid: 2081 + - uid: 79 components: - type: Transform pos: -5.5,-119.5 parent: 2 - - type: DeviceLinkSink - links: - - 2094 - - uid: 2640 + - uid: 80 components: - type: Transform pos: -1.5,-151.5 parent: 2 - - uid: 2645 + - uid: 81 components: - type: Transform pos: -5.5,-150.5 parent: 2 - - type: DeviceLinkSink - links: - - 11933 - - uid: 4109 + - uid: 82 components: - type: Transform pos: -5.5,-152.5 parent: 2 - - type: DeviceLinkSink - links: - - 11983 - proto: AirlockArmoryLocked entities: - - uid: 2846 + - uid: 83 components: - type: Transform pos: 0.5,-361.5 parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: - - uid: 5042 + - uid: 84 components: - type: Transform pos: -12.5,-260.5 parent: 2 - - uid: 7746 + - uid: 85 components: - type: Transform pos: -15.5,-249.5 parent: 2 - - uid: 16880 + - uid: 86 components: - type: Transform pos: -6.5,-260.5 parent: 2 - proto: AirlockBarLocked entities: - - uid: 1227 + - uid: 87 components: - type: Transform pos: 2.5,-62.5 parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 10636 + - uid: 88 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-334.5 parent: 2 - - type: DeviceLinkSink - links: - - 9683 - - uid: 10746 + - uid: 89 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-334.5 parent: 2 - - type: DeviceLinkSink - links: - - 9683 - - uid: 12983 + - uid: 90 components: - type: Transform rot: 3.141592653589793 rad @@ -6641,54 +6647,54 @@ entities: parent: 2 - proto: AirlockBrigLocked entities: - - uid: 323 + - uid: 91 components: - type: Transform pos: 0.5,-347.5 parent: 2 - - uid: 326 + - uid: 92 components: - type: Transform pos: 0.5,-349.5 parent: 2 - - uid: 405 + - uid: 93 components: - type: Transform pos: 0.5,-353.5 parent: 2 - - uid: 614 + - uid: 94 components: - type: Transform pos: 0.5,-355.5 parent: 2 - proto: AirlockCaptainLocked entities: - - uid: 155 + - uid: 95 components: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 293 + - uid: 96 components: - type: Transform pos: -2.5,-12.5 parent: 2 - proto: AirlockCargoGlassLocked entities: - - uid: 8466 + - uid: 97 components: - type: Transform pos: 2.5,-274.5 parent: 2 - proto: AirlockCargoLocked entities: - - uid: 8495 + - uid: 98 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-275.5 parent: 2 - - uid: 8498 + - uid: 99 components: - type: Transform rot: 1.5707963267948966 rad @@ -6696,14 +6702,14 @@ entities: parent: 2 - proto: AirlockChapelLocked entities: - - uid: 2678 + - uid: 100 components: - type: Transform pos: 4.5,-140.5 parent: 2 - proto: AirlockChemistryGlassLocked entities: - - uid: 14309 + - uid: 101 components: - type: Transform rot: 3.141592653589793 rad @@ -6711,12 +6717,12 @@ entities: parent: 2 - proto: AirlockChiefEngineerLocked entities: - - uid: 330 + - uid: 102 components: - type: Transform pos: 18.5,-262.5 parent: 2 - - uid: 8019 + - uid: 103 components: - type: Transform rot: 1.5707963267948966 rad @@ -6724,24 +6730,24 @@ entities: parent: 2 - proto: AirlockChiefMedicalOfficerGlassLocked entities: - - uid: 8675 + - uid: 104 components: - type: Transform pos: 2.5,-200.5 parent: 2 - proto: AirlockCommandGlassLocked entities: - - uid: 26 + - uid: 105 components: - type: Transform pos: 1.5,-0.5 parent: 2 - - uid: 31 + - uid: 106 components: - type: Transform pos: 2.5,-13.5 parent: 2 - - uid: 13385 + - uid: 107 components: - type: Transform rot: 3.141592653589793 rad @@ -6749,202 +6755,198 @@ entities: parent: 2 - proto: AirlockCommandLocked entities: - - uid: 131 + - uid: 108 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 181 + - uid: 109 components: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 394 + - uid: 110 components: - type: Transform pos: 5.5,-0.5 parent: 2 - proto: AirlockDetectiveLocked entities: - - uid: 1368 + - uid: 111 components: - type: Transform pos: -4.5,-69.5 parent: 2 - proto: AirlockEngineeringGlass entities: - - uid: 17038 + - uid: 112 components: - type: Transform pos: -3.5,-248.5 parent: 2 - proto: AirlockEngineeringGlassLocked entities: - - uid: 311 + - uid: 113 components: - type: Transform pos: 2.5,-256.5 parent: 2 - - uid: 14648 + - uid: 114 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-246.5 parent: 2 - - uid: 16873 + - uid: 115 components: - type: Transform pos: -8.5,-248.5 parent: 2 - - uid: 16879 + - uid: 116 components: - type: Transform pos: -6.5,-243.5 parent: 2 - - uid: 16945 + - uid: 117 components: - type: Transform pos: -12.5,-248.5 parent: 2 - - uid: 16991 + - uid: 118 components: - type: Transform pos: -12.5,-243.5 parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 190 + - uid: 119 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 1433 + - uid: 120 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 2040 + - uid: 121 components: - type: Transform pos: -2.5,-98.5 parent: 2 - - uid: 2189 + - uid: 122 components: - type: Transform pos: 4.5,-110.5 parent: 2 - - uid: 2817 + - uid: 123 components: - type: Transform pos: 7.5,-152.5 parent: 2 - - uid: 4715 + - uid: 124 components: - type: Transform pos: -2.5,-162.5 parent: 2 - - uid: 4723 + - uid: 125 components: - type: Transform pos: 5.5,-188.5 parent: 2 - - uid: 7534 + - uid: 126 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-248.5 parent: 2 - - uid: 7804 + - uid: 127 components: - type: Transform pos: 18.5,-244.5 parent: 2 - - uid: 8001 + - uid: 128 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-256.5 parent: 2 - - uid: 8022 + - uid: 129 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-248.5 parent: 2 - - uid: 8023 + - uid: 130 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-256.5 parent: 2 - - uid: 9019 + - uid: 131 components: - type: Transform pos: 8.5,-286.5 parent: 2 - - uid: 10149 + - uid: 132 components: - type: Transform pos: -6.5,-297.5 parent: 2 - - uid: 12572 + - uid: 133 components: - type: Transform pos: 2.5,-345.5 parent: 2 - - uid: 12906 + - uid: 134 components: - type: Transform pos: 5.5,-360.5 parent: 2 - proto: AirlockExternal entities: - - uid: 1758 + - uid: 135 components: - type: Transform pos: -6.5,-96.5 parent: 2 - - uid: 12099 + - uid: 136 components: - type: Transform pos: 5.5,-381.5 parent: 2 - proto: AirlockExternalEngineeringLocked entities: - - uid: 1921 + - uid: 137 components: - type: Transform pos: -14.5,-235.5 parent: 2 - - uid: 2424 + - uid: 138 components: - type: Transform pos: -15.5,-237.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3536 - type: DeviceLinkSource linkedPorts: - 3536: + 139: - DoorStatus: DoorBolt - DoorStatus: Close - - uid: 3536 + - uid: 139 components: - type: Transform pos: -14.5,-239.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 2424 - type: DeviceLinkSource linkedPorts: - 2424: + 138: - DoorStatus: Close - DoorStatus: DoorBolt - - uid: 8003 + - uid: 140 components: - type: Transform rot: 1.5707963267948966 rad @@ -6952,19 +6954,19 @@ entities: parent: 2 - proto: AirlockExternalGlass entities: - - uid: 728 + - uid: 141 components: - type: Transform pos: -7.5,-43.5 parent: 2 - - uid: 15794 + - uid: 142 components: - type: Transform pos: -7.5,-36.5 parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: - - uid: 13348 + - uid: 143 components: - type: Transform rot: -1.5707963267948966 rad @@ -6972,13 +6974,11 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 14345 - type: DeviceLinkSource linkedPorts: - 14345: + 144: - DoorStatus: DoorBolt - - uid: 14345 + - uid: 144 components: - type: Transform rot: -1.5707963267948966 rad @@ -6986,119 +6986,99 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 13348 - type: DeviceLinkSource linkedPorts: - 13348: + 143: - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - - uid: 8762 + - uid: 145 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-269.5 parent: 2 - - uid: 9004 + - uid: 146 components: - type: Transform pos: 9.5,-280.5 parent: 2 - - uid: 9005 + - uid: 147 components: - type: Transform pos: 9.5,-278.5 parent: 2 - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 1808 + - uid: 148 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-228.5 parent: 2 - - type: DeviceLinkSink - links: - - 4512 - type: DeviceLinkSource linkedPorts: - 4512: + 152: - DoorStatus: DoorBolt - - uid: 3017 + - uid: 149 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-228.5 parent: 2 - - type: DeviceLinkSink - links: - - 4513 - type: DeviceLinkSource linkedPorts: - 4513: + 153: - DoorStatus: DoorBolt - - uid: 4494 + - uid: 150 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-221.5 parent: 2 - - type: DeviceLinkSink - links: - - 4510 - type: DeviceLinkSource linkedPorts: - 4510: + 151: - DoorStatus: DoorBolt - - uid: 4510 + - uid: 151 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-219.5 parent: 2 - - type: DeviceLinkSink - links: - - 4494 - type: DeviceLinkSource linkedPorts: - 4494: + 150: - DoorStatus: DoorBolt - - uid: 4512 + - uid: 152 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-230.5 parent: 2 - - type: DeviceLinkSink - links: - - 1808 - type: DeviceLinkSource linkedPorts: - 1808: + 148: - DoorStatus: DoorBolt - - uid: 4513 + - uid: 153 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-230.5 parent: 2 - - type: DeviceLinkSink - links: - - 3017 - type: DeviceLinkSource linkedPorts: - 3017: + 149: - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 574 + - uid: 154 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-36.5 parent: 2 - - uid: 575 + - uid: 155 components: - type: Transform rot: 1.5707963267948966 rad @@ -7106,13 +7086,13 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 441 + - uid: 156 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-31.5 parent: 2 - - uid: 573 + - uid: 157 components: - type: Transform rot: -1.5707963267948966 rad @@ -7120,18 +7100,18 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 541 + - uid: 158 components: - type: Transform pos: -4.5,-46.5 parent: 2 - - uid: 11311 + - uid: 159 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-295.5 parent: 2 - - uid: 11451 + - uid: 160 components: - type: Transform rot: -1.5707963267948966 rad @@ -7139,37 +7119,37 @@ entities: parent: 2 - proto: AirlockExternalLocked entities: - - uid: 879 + - uid: 161 components: - type: Transform pos: 8.5,-31.5 parent: 2 - - uid: 1007 + - uid: 162 components: - type: Transform pos: 8.5,-29.5 parent: 2 - - uid: 1013 + - uid: 163 components: - type: Transform pos: -7.5,-16.5 parent: 2 - - uid: 1691 + - uid: 164 components: - type: Transform pos: -4.5,-242.5 parent: 2 - - uid: 1763 + - uid: 165 components: - type: Transform pos: -4.5,-262.5 parent: 2 - - uid: 1924 + - uid: 166 components: - type: Transform pos: 5.5,-321.5 parent: 2 - - uid: 3355 + - uid: 167 components: - type: Transform rot: 3.141592653589793 rad @@ -7177,50 +7157,50 @@ entities: parent: 2 - proto: AirlockFreezerKitchenHydroLocked entities: - - uid: 1576 + - uid: 168 components: - type: Transform pos: -3.5,-89.5 parent: 2 - - uid: 1662 + - uid: 169 components: - type: Transform pos: -0.5,-91.5 parent: 2 - - uid: 1677 + - uid: 170 components: - type: Transform pos: -3.5,-94.5 parent: 2 - proto: AirlockGlass entities: - - uid: 2662 + - uid: 171 components: - type: Transform pos: 3.5,-147.5 parent: 2 - - uid: 2663 + - uid: 172 components: - type: Transform pos: 4.5,-147.5 parent: 2 - - uid: 2664 + - uid: 173 components: - type: Transform pos: 5.5,-147.5 parent: 2 - - uid: 2714 + - uid: 174 components: - type: Transform pos: -1.5,-139.5 parent: 2 - - uid: 2717 + - uid: 175 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-140.5 parent: 2 - - uid: 2718 + - uid: 176 components: - type: Transform rot: 1.5707963267948966 rad @@ -7228,37 +7208,37 @@ entities: parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 8830 + - uid: 177 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-280.5 parent: 2 - - uid: 8831 + - uid: 178 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-278.5 parent: 2 - - uid: 8834 + - uid: 179 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-273.5 parent: 2 - - uid: 8835 + - uid: 180 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-272.5 parent: 2 - - uid: 10680 + - uid: 181 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-146.5 parent: 2 - - uid: 10744 + - uid: 182 components: - type: Transform rot: 1.5707963267948966 rad @@ -7266,24 +7246,24 @@ entities: parent: 2 - proto: AirlockHatch entities: - - uid: 1616 + - uid: 183 components: - type: Transform pos: 13.5,-307.5 parent: 2 - - uid: 8239 + - uid: 184 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-302.5 parent: 2 - - uid: 8240 + - uid: 185 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-307.5 parent: 2 - - uid: 8424 + - uid: 186 components: - type: Transform rot: 1.5707963267948966 rad @@ -7291,170 +7271,139 @@ entities: parent: 2 - proto: AirlockHatchMaintenance entities: - - uid: 12 + - uid: 187 components: - type: Transform pos: 0.5,-53.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3544 - - 9343 - type: DeviceLinkSource linkedPorts: - 3544: + 16522: - DoorStatus: Close - 9343: + 16533: - DoorStatus: Close - - uid: 20 + - uid: 188 components: - type: Transform pos: 0.5,-26.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 278 - - 9346 - type: DeviceLinkSource linkedPorts: - 278: + 16510: - DoorStatus: Close - 9346: + 16534: - DoorStatus: Close - - uid: 269 + - uid: 189 components: - type: Transform pos: 0.5,-18.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 278 - - 9346 - type: DeviceLinkSource linkedPorts: - 278: + 16510: - DoorStatus: Close - 9346: + 16534: - DoorStatus: Close - - uid: 270 + - uid: 190 components: - type: Transform pos: 0.5,-45.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3544 - - 9343 - type: DeviceLinkSource linkedPorts: - 9343: + 16533: - DoorStatus: Close - 3544: + 16522: - DoorStatus: Close - - uid: 274 + - uid: 191 components: - type: Transform pos: 0.5,-72.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9347 - - 3547 - type: DeviceLinkSource linkedPorts: - 3547: + 16525: - DoorStatus: Close - 9347: + 16535: - DoorStatus: Close - - uid: 276 + - uid: 192 components: - type: Transform pos: 0.5,-80.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9347 - - 3547 - type: DeviceLinkSource linkedPorts: - 3547: + 16525: - DoorStatus: Close - 9347: + 16535: - DoorStatus: Close - - uid: 277 + - uid: 193 components: - type: Transform pos: 0.5,-99.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9374 - - 8135 - type: DeviceLinkSource linkedPorts: - 8135: + 16530: - DoorStatus: Close - 9374: + 16536: - DoorStatus: Close - - uid: 279 + - uid: 194 components: - type: Transform pos: 0.5,-107.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9374 - - 8135 - type: DeviceLinkSource linkedPorts: - 9374: + 16536: - DoorStatus: Close - 8135: + 16530: - DoorStatus: Close - - uid: 281 + - uid: 195 components: - type: Transform pos: 0.5,-126.5 parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 283 - - 3545 - - 9423 - type: DeviceLinkSource linkedPorts: - 9423: + 16537: - DoorStatus: Close - 3545: + 16523: - DoorStatus: Close - - uid: 283 + - uid: 196 components: - type: Transform pos: 0.5,-134.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3545 - - 9423 - type: DeviceLinkSource linkedPorts: - 9423: + 16537: - DoorStatus: Close - 3545: + 16523: - DoorStatus: Close - 281: + 195: - DoorStatus: Close - - uid: 616 + - uid: 197 components: - type: Transform rot: 3.141592653589793 rad @@ -7462,383 +7411,314 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9459 - - 9455 - type: DeviceLinkSource linkedPorts: - 9455: + 16540: - DoorStatus: Close - 9459: + 16541: - DoorStatus: Close - - uid: 625 + - uid: 198 components: - type: Transform pos: 0.5,-153.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8136 - - 9433 - type: DeviceLinkSource linkedPorts: - 8136: + 16531: - DoorStatus: Close - 9433: + 16538: - DoorStatus: Close - - uid: 656 + - uid: 199 components: - type: Transform pos: 0.5,-20.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 278 - - 9346 - type: DeviceLinkSource linkedPorts: - 278: + 16510: - DoorStatus: DoorBolt - 9346: + 16534: - DoorStatus: DoorBolt - - uid: 657 + - uid: 200 components: - type: Transform pos: 0.5,-24.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 278 - - 9346 - type: DeviceLinkSource linkedPorts: - 278: + 16510: - DoorStatus: DoorBolt - 9346: + 16534: - DoorStatus: DoorBolt - - uid: 658 + - uid: 201 components: - type: Transform pos: 0.5,-105.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9374 - - 8135 - type: DeviceLinkSource linkedPorts: - 8135: + 16530: - DoorStatus: DoorBolt - 9374: + 16536: - DoorStatus: DoorBolt - - uid: 662 + - uid: 202 components: - type: Transform pos: 0.5,-186.5 parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 3546 - - 280 - type: DeviceLinkSource linkedPorts: - 3546: + 16524: - DoorStatus: DoorBolt - 280: + 16511: - DoorStatus: DoorBolt - - uid: 666 + - uid: 203 components: - type: Transform pos: 0.5,-161.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8136 - - 9433 - type: DeviceLinkSource linkedPorts: - 9433: + 16538: - DoorStatus: Close - 8136: + 16531: - DoorStatus: Close - - uid: 667 + - uid: 204 components: - type: Transform pos: 0.5,-188.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 280 - - 3546 - type: DeviceLinkSource linkedPorts: - 3546: + 16524: - DoorStatus: Close - 280: + 16511: - DoorStatus: Close - - uid: 670 + - uid: 205 components: - type: Transform pos: 0.5,-180.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 280 - - 3546 - type: DeviceLinkSource linkedPorts: - 3546: + 16524: - DoorStatus: Close - 280: + 16511: - DoorStatus: Close - - uid: 671 + - uid: 206 components: - type: Transform pos: 0.5,-215.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 282 - - 284 - type: DeviceLinkSource linkedPorts: - 284: + 16513: - DoorStatus: Close - 282: + 16512: - DoorStatus: Close - - uid: 991 + - uid: 207 components: - type: Transform pos: 0.5,-207.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 282 - - 284 - type: DeviceLinkSource linkedPorts: - 284: + 16513: - DoorStatus: Close - 282: + 16512: - DoorStatus: Close - - uid: 1211 + - uid: 208 components: - type: Transform pos: 0.5,-242.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8137 - - 9439 - type: DeviceLinkSource linkedPorts: - 9439: + 16539: - DoorStatus: Close - 8137: + 16532: - DoorStatus: Close - - uid: 1247 + - uid: 209 components: - type: Transform pos: 0.5,-234.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8137 - - 9439 - type: DeviceLinkSource linkedPorts: - 9439: + 16539: - DoorStatus: Close - 8137: + 16532: - DoorStatus: Close - - uid: 4692 + - uid: 210 components: - type: Transform pos: 0.5,-74.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9347 - - 3547 - type: DeviceLinkSource linkedPorts: - 9347: + 16535: - DoorStatus: DoorBolt - 3547: + 16525: - DoorStatus: DoorBolt - - uid: 4693 + - uid: 211 components: - type: Transform pos: 0.5,-78.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9347 - - 3547 - type: DeviceLinkSource linkedPorts: - 9347: + 16535: - DoorStatus: DoorBolt - 3547: + 16525: - DoorStatus: DoorBolt - - uid: 4694 + - uid: 212 components: - type: Transform pos: 0.5,-182.5 parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 280 - - 3546 - type: DeviceLinkSource linkedPorts: - 280: + 16511: - DoorStatus: DoorBolt - 3546: + 16524: - DoorStatus: DoorBolt - - uid: 4695 + - uid: 213 components: - type: Transform pos: 0.5,-159.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8136 - - 9433 - type: DeviceLinkSource linkedPorts: - 8136: + 16531: - DoorStatus: DoorBolt - 9433: + 16538: - DoorStatus: DoorBolt - - uid: 5216 + - uid: 214 components: - type: Transform pos: 0.5,-263.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9459 - - 9455 - type: DeviceLinkSource linkedPorts: - 9455: + 16540: - DoorStatus: DoorBolt - 9459: + 16541: - DoorStatus: DoorBolt - - uid: 5259 + - uid: 215 components: - type: Transform pos: 0.5,-240.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8137 - - 9439 - type: DeviceLinkSource linkedPorts: - 9439: + 16539: - DoorStatus: DoorBolt - 8137: + 16532: - DoorStatus: DoorBolt - - uid: 5467 + - uid: 216 components: - type: Transform pos: 0.5,-326.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 708 - - 5466 - type: DeviceLinkSource linkedPorts: - 5466: + 16528: - DoorStatus: DoorBolt - 708: + 16516: - DoorStatus: DoorBolt - - uid: 7287 + - uid: 217 components: - type: Transform pos: 12.5,-162.5 parent: 2 - - uid: 7293 + - uid: 218 components: - type: Transform pos: 15.5,-157.5 parent: 2 - - uid: 7359 + - uid: 219 components: - type: Transform pos: 15.5,-155.5 parent: 2 - - uid: 8169 + - uid: 220 components: - type: Transform pos: 0.5,-132.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3545 - - 9423 - type: DeviceLinkSource linkedPorts: - 3545: + 16523: - DoorStatus: DoorBolt - 9423: + 16537: - DoorStatus: DoorBolt - - uid: 8178 + - uid: 221 components: - type: Transform pos: 0.5,-47.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3544 - - 9343 - type: DeviceLinkSource linkedPorts: - 9343: + 16533: - DoorStatus: DoorBolt - 3544: + 16522: - DoorStatus: DoorBolt - - uid: 8195 + - uid: 222 components: - type: Transform pos: 0.5,-213.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 282 - - 284 - type: DeviceLinkSource linkedPorts: - 284: + 16513: - DoorStatus: DoorBolt - 282: + 16512: - DoorStatus: DoorBolt - - uid: 8639 + - uid: 223 components: - type: Transform rot: 1.5707963267948966 rad @@ -7846,16 +7726,13 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 9459 - - 9455 - type: DeviceLinkSource linkedPorts: - 9455: + 16540: - DoorStatus: Close - 9459: + 16541: - DoorStatus: Close - - uid: 8674 + - uid: 224 components: - type: Transform rot: 1.5707963267948966 rad @@ -7863,192 +7740,156 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5262 - - 5463 - type: DeviceLinkSource linkedPorts: - 5262: + 16526: - DoorStatus: Close - 5463: + 16527: - DoorStatus: Close - - uid: 8678 + - uid: 225 components: - type: Transform pos: 0.5,-290.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5262 - - 5463 - type: DeviceLinkSource linkedPorts: - 5262: + 16526: - DoorStatus: DoorBolt - 5463: + 16527: - DoorStatus: DoorBolt - - uid: 9375 + - uid: 226 components: - type: Transform pos: 0.5,-296.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5262 - - 5463 - type: DeviceLinkSource linkedPorts: - 5463: + 16527: - DoorStatus: Close - 5262: + 16526: - DoorStatus: Close - - uid: 9551 + - uid: 227 components: - type: Transform pos: 0.5,-155.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8136 - - 9433 - type: DeviceLinkSource linkedPorts: - 8136: + 16531: - DoorStatus: DoorBolt - 9433: + 16538: - DoorStatus: DoorBolt - - uid: 9552 + - uid: 228 components: - type: Transform pos: 0.5,-128.5 parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 3545 - - 9423 - type: DeviceLinkSource linkedPorts: - 3545: + 16523: - DoorStatus: DoorBolt - 9423: + 16537: - DoorStatus: DoorBolt - - uid: 9553 + - uid: 229 components: - type: Transform pos: 0.5,-101.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9374 - - 8135 - type: DeviceLinkSource linkedPorts: - 8135: + 16530: - DoorStatus: DoorBolt - 9374: + 16536: - DoorStatus: DoorBolt - - uid: 9554 + - uid: 230 components: - type: Transform pos: 0.5,-51.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3544 - - 9343 - type: DeviceLinkSource linkedPorts: - 3544: + 16522: - DoorStatus: DoorBolt - 9343: + 16533: - DoorStatus: DoorBolt - - uid: 9555 + - uid: 231 components: - type: Transform pos: 0.5,-209.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 282 - - 284 - type: DeviceLinkSource linkedPorts: - 284: + 16513: - DoorStatus: DoorBolt - 282: + 16512: - DoorStatus: DoorBolt - - uid: 9556 + - uid: 232 components: - type: Transform pos: 0.5,-236.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8137 - - 9439 - type: DeviceLinkSource linkedPorts: - 9439: + 16539: - DoorStatus: DoorBolt - 8137: + 16532: - DoorStatus: DoorBolt - - uid: 9557 + - uid: 233 components: - type: Transform pos: 0.5,-267.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9455 - - 9459 - type: DeviceLinkSource linkedPorts: - 9459: + 16541: - DoorStatus: DoorBolt - 9455: + 16540: - DoorStatus: DoorBolt - - uid: 9558 + - uid: 234 components: - type: Transform pos: 0.5,-294.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5463 - - 5262 - type: DeviceLinkSource linkedPorts: - 5463: + 16527: - DoorStatus: DoorBolt - 5262: + 16526: - DoorStatus: DoorBolt - - uid: 9685 + - uid: 235 components: - type: Transform pos: 0.5,-322.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 708 - - 5466 - type: DeviceLinkSource linkedPorts: - 5466: + 16528: - DoorStatus: DoorBolt - 708: + 16516: - DoorStatus: DoorBolt - - uid: 10132 + - uid: 236 components: - type: Transform rot: 1.5707963267948966 rad @@ -8056,16 +7897,13 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5466 - - 708 - type: DeviceLinkSource linkedPorts: - 5466: + 16528: - DoorStatus: Close - 708: + 16516: - DoorStatus: Close - - uid: 10646 + - uid: 237 components: - type: Transform rot: 1.5707963267948966 rad @@ -8073,16 +7911,13 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 708 - - 5466 - type: DeviceLinkSource linkedPorts: - 708: + 16516: - DoorStatus: Close - 5466: + 16528: - DoorStatus: Close - - uid: 11821 + - uid: 238 components: - type: Transform rot: -1.5707963267948966 rad @@ -8090,15 +7925,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11820: + 16542: - DoorStatus: Close - - uid: 11822 + - uid: 239 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-382.5 parent: 2 - - uid: 12945 + - uid: 240 components: - type: Transform rot: -1.5707963267948966 rad @@ -8106,19 +7941,19 @@ entities: parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 2229 + - uid: 241 components: - type: Transform pos: 3.5,-120.5 parent: 2 - - uid: 2230 + - uid: 242 components: - type: Transform pos: 0.5,-118.5 parent: 2 - proto: AirlockHeadOfSecurityLocked entities: - - uid: 10794 + - uid: 243 components: - type: Transform rot: -1.5707963267948966 rad @@ -8126,7 +7961,7 @@ entities: parent: 2 - proto: AirlockHydroGlassLocked entities: - - uid: 1717 + - uid: 244 components: - type: Transform rot: -1.5707963267948966 rad @@ -8134,7 +7969,7 @@ entities: parent: 2 - proto: AirlockJanitorLocked entities: - - uid: 14801 + - uid: 245 components: - type: Transform rot: -1.5707963267948966 rad @@ -8142,54 +7977,54 @@ entities: parent: 2 - proto: AirlockLawyerLocked entities: - - uid: 570 + - uid: 246 components: - type: Transform pos: 3.5,-330.5 parent: 2 - proto: AirlockMaintBarLocked entities: - - uid: 961 + - uid: 247 components: - type: Transform pos: 5.5,-63.5 parent: 2 - proto: AirlockMaintCargoLocked entities: - - uid: 8546 + - uid: 248 components: - type: Transform pos: 2.5,-283.5 parent: 2 - - uid: 10846 + - uid: 249 components: - type: Transform pos: 5.5,-269.5 parent: 2 - proto: AirlockMaintChapelLocked entities: - - uid: 2715 + - uid: 250 components: - type: Transform pos: 7.5,-138.5 parent: 2 - proto: AirlockMaintChemLocked entities: - - uid: 3089 + - uid: 251 components: - type: Transform pos: 6.5,-164.5 parent: 2 - proto: AirlockMaintCommandLocked entities: - - uid: 423 + - uid: 252 components: - type: Transform pos: -2.5,1.5 parent: 2 - proto: AirlockMaintDetectiveLocked entities: - - uid: 5092 + - uid: 253 components: - type: Transform rot: -1.5707963267948966 rad @@ -8197,37 +8032,37 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14783: + 16547: - DoorStatus: DoorBolt - 268: + 16509: - DoorStatus: DoorBolt - proto: AirlockMaintEngiLocked entities: - - uid: 7533 + - uid: 254 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-260.5 parent: 2 - - uid: 7548 + - uid: 255 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-243.5 parent: 2 - - uid: 8122 + - uid: 256 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-260.5 parent: 2 - - uid: 8206 + - uid: 257 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-243.5 parent: 2 - - uid: 8522 + - uid: 258 components: - type: Transform rot: 1.5707963267948966 rad @@ -8235,12 +8070,12 @@ entities: parent: 2 - proto: AirlockMaintGlassLocked entities: - - uid: 2245 + - uid: 259 components: - type: Transform pos: -5.5,-107.5 parent: 2 - - uid: 13027 + - uid: 260 components: - type: Transform rot: 3.141592653589793 rad @@ -8248,14 +8083,14 @@ entities: parent: 2 - proto: AirlockMaintHOPLocked entities: - - uid: 2225 + - uid: 261 components: - type: Transform pos: 2.5,-116.5 parent: 2 - proto: AirlockMaintLocked entities: - - uid: 45 + - uid: 262 components: - type: Transform rot: -1.5707963267948966 rad @@ -8263,16 +8098,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14760: + 16545: - DoorStatus: DoorBolt - 14757: + 16544: - DoorStatus: DoorBolt - - uid: 46 + - uid: 263 components: - type: Transform pos: -1.5,-17.5 parent: 2 - - uid: 397 + - uid: 264 components: - type: Transform rot: 3.141592653589793 rad @@ -8280,16 +8115,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14860: + 16551: - DoorStatus: DoorBolt - 14857: + 16548: - DoorStatus: DoorBolt - - uid: 601 + - uid: 265 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 622 + - uid: 266 components: - type: Transform rot: 3.141592653589793 rad @@ -8297,32 +8132,32 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14859: + 16550: - DoorStatus: DoorBolt - 14858: + 16549: - DoorStatus: DoorBolt - - uid: 640 + - uid: 267 components: - type: Transform pos: -4.5,-79.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 14783: + 16547: - DoorStatus: DoorBolt - 268: + 16509: - DoorStatus: DoorBolt - - uid: 706 + - uid: 268 components: - type: Transform pos: 1.5,-35.5 parent: 2 - - uid: 758 + - uid: 269 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 811 + - uid: 270 components: - type: Transform rot: 1.5707963267948966 rad @@ -8330,11 +8165,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14978: + 16555: - DoorStatus: DoorBolt - 14979: + 16556: - DoorStatus: DoorBolt - - uid: 1068 + - uid: 271 components: - type: Transform rot: 3.141592653589793 rad @@ -8342,53 +8177,53 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14860: + 16551: - DoorStatus: DoorBolt - 14857: + 16548: - DoorStatus: DoorBolt - - uid: 1081 + - uid: 272 components: - type: Transform pos: 3.5,-68.5 parent: 2 - - uid: 1478 + - uid: 273 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 1760 + - uid: 274 components: - type: Transform pos: -1.5,-81.5 parent: 2 - - uid: 1762 + - uid: 275 components: - type: Transform pos: -1.5,-97.5 parent: 2 - - uid: 1933 + - uid: 276 components: - type: Transform pos: 5.5,-161.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15117: + 16558: - DoorStatus: DoorBolt - 15118: + 16559: - DoorStatus: DoorBolt - - uid: 1937 + - uid: 277 components: - type: Transform pos: 5.5,-154.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15117: + 16558: - DoorStatus: DoorBolt - 15118: + 16559: - DoorStatus: DoorBolt - - uid: 1938 + - uid: 278 components: - type: Transform rot: -1.5707963267948966 rad @@ -8396,11 +8231,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 3508: + 16521: - DoorStatus: DoorBolt - 15040: + 16557: - DoorStatus: DoorBolt - - uid: 2100 + - uid: 279 components: - type: Transform rot: 3.141592653589793 rad @@ -8408,16 +8243,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14890: + 16553: - DoorStatus: DoorBolt - 14891: + 16554: - DoorStatus: DoorBolt - - uid: 2202 + - uid: 280 components: - type: Transform pos: 2.5,-109.5 parent: 2 - - uid: 2244 + - uid: 281 components: - type: Transform rot: -1.5707963267948966 rad @@ -8425,33 +8260,33 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14751: + 16543: - DoorStatus: DoorBolt - 605: + 16515: - DoorStatus: DoorBolt - - uid: 2413 + - uid: 282 components: - type: Transform pos: 5.5,-289.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15193: + 16561: - DoorStatus: DoorBolt - 15194: + 16562: - DoorStatus: DoorBolt - - uid: 2414 + - uid: 283 components: - type: Transform pos: 5.5,-295.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15193: + 16561: - DoorStatus: DoorBolt - 15194: + 16562: - DoorStatus: DoorBolt - - uid: 2492 + - uid: 284 components: - type: Transform rot: 1.5707963267948966 rad @@ -8459,21 +8294,21 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14768: + 16546: - DoorStatus: DoorBolt - 1335: + 16517: - DoorStatus: DoorBolt - - uid: 2562 + - uid: 285 components: - type: Transform pos: 2.5,-152.5 parent: 2 - - uid: 2688 + - uid: 286 components: - type: Transform pos: 2.5,-135.5 parent: 2 - - uid: 2690 + - uid: 287 components: - type: Transform rot: 1.5707963267948966 rad @@ -8481,26 +8316,26 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14880: + 16552: - DoorStatus: DoorBolt - 5738: + 16529: - DoorStatus: DoorBolt - - uid: 3207 + - uid: 288 components: - type: Transform pos: 2.5,-162.5 parent: 2 - - uid: 3213 + - uid: 289 components: - type: Transform pos: -1.5,-163.5 parent: 2 - - uid: 3214 + - uid: 290 components: - type: Transform pos: -1.5,-179.5 parent: 2 - - uid: 3782 + - uid: 291 components: - type: Transform rot: 3.141592653589793 rad @@ -8508,117 +8343,117 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14859: + 16550: - DoorStatus: DoorBolt - 14858: + 16549: - DoorStatus: DoorBolt - - uid: 5018 + - uid: 292 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-260.5 parent: 2 - - uid: 6286 + - uid: 293 components: - type: Transform pos: 5.5,-79.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 333: + 16514: - DoorStatus: DoorBolt - 2646: + 16520: - DoorStatus: DoorBolt - - uid: 6736 + - uid: 294 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-162.5 parent: 2 - - uid: 6778 + - uid: 295 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-243.5 parent: 2 - - uid: 6822 + - uid: 296 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-252.5 parent: 2 - - uid: 6963 + - uid: 297 components: - type: Transform pos: -7.5,-167.5 parent: 2 - - uid: 7939 + - uid: 298 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-167.5 parent: 2 - - uid: 8428 + - uid: 299 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-260.5 parent: 2 - - uid: 8701 + - uid: 300 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-285.5 parent: 2 - - uid: 8796 + - uid: 301 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-254.5 parent: 2 - - uid: 9028 + - uid: 302 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-118.5 parent: 2 - - uid: 9522 + - uid: 303 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-328.5 parent: 2 - - uid: 9818 + - uid: 304 components: - type: Transform pos: 1.5,-113.5 parent: 2 - - uid: 10062 + - uid: 305 components: - type: Transform pos: -1.5,-297.5 parent: 2 - - uid: 10063 + - uid: 306 components: - type: Transform pos: 2.5,-297.5 parent: 2 - - uid: 10067 + - uid: 307 components: - type: Transform pos: 9.5,-305.5 parent: 2 - - uid: 10068 + - uid: 308 components: - type: Transform pos: 9.5,-309.5 parent: 2 - - uid: 10069 + - uid: 309 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - uid: 10531 + - uid: 310 components: - type: Transform rot: -1.5707963267948966 rad @@ -8626,58 +8461,58 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14751: + 16543: - DoorStatus: DoorBolt - 605: + 16515: - DoorStatus: DoorBolt - - uid: 12871 + - uid: 311 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-15.5 parent: 2 - - uid: 13169 + - uid: 312 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-190.5 parent: 2 - - uid: 13443 + - uid: 313 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-205.5 parent: 2 - - uid: 13453 + - uid: 314 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-41.5 parent: 2 - - uid: 13454 + - uid: 315 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-126.5 parent: 2 - - uid: 14554 + - uid: 316 components: - type: Transform pos: 7.5,-81.5 parent: 2 - - uid: 14565 + - uid: 317 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-70.5 parent: 2 - - uid: 14749 + - uid: 318 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-52.5 parent: 2 - - uid: 14753 + - uid: 319 components: - type: Transform rot: -1.5707963267948966 rad @@ -8685,11 +8520,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14760: + 16545: - DoorStatus: DoorBolt - 14757: + 16544: - DoorStatus: DoorBolt - - uid: 14796 + - uid: 320 components: - type: Transform rot: 1.5707963267948966 rad @@ -8697,11 +8532,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 333: + 16514: - DoorStatus: DoorBolt - 2646: + 16520: - DoorStatus: DoorBolt - - uid: 14946 + - uid: 321 components: - type: Transform rot: 1.5707963267948966 rad @@ -8709,11 +8544,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14978: + 16555: - DoorStatus: DoorBolt - 14979: + 16556: - DoorStatus: DoorBolt - - uid: 15186 + - uid: 322 components: - type: Transform rot: -1.5707963267948966 rad @@ -8721,140 +8556,140 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 164: + 16508: - DoorStatus: DoorBolt - 15152: + 16560: - DoorStatus: DoorBolt - - uid: 16476 + - uid: 323 components: - type: Transform pos: -7.5,-162.5 parent: 2 - - uid: 16818 + - uid: 324 components: - type: Transform pos: 5.5,-133.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 14890: + 16553: - DoorStatus: DoorBolt - 14891: + 16554: - DoorStatus: DoorBolt - - uid: 16903 + - uid: 325 components: - type: Transform pos: -4.5,-187.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15040: + 16557: - DoorStatus: DoorBolt - 3508: + 16521: - DoorStatus: DoorBolt - proto: AirlockMaintMedLocked entities: - - uid: 8348 + - uid: 326 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-170.5 parent: 2 - - uid: 8422 + - uid: 327 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-164.5 parent: 2 - - uid: 8448 + - uid: 328 components: - type: Transform pos: -5.5,-173.5 parent: 2 - proto: AirlockMaintServiceLocked entities: - - uid: 1720 + - uid: 329 components: - type: Transform pos: -3.5,-85.5 parent: 2 - proto: AirlockMedicalGlassLocked entities: - - uid: 308 + - uid: 330 components: - type: Transform pos: 2.5,-178.5 parent: 2 - - uid: 3756 + - uid: 331 components: - type: Transform pos: 5.5,-177.5 parent: 2 - - uid: 3761 + - uid: 332 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-191.5 parent: 2 - - uid: 3762 + - uid: 333 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-195.5 parent: 2 - - uid: 7193 + - uid: 334 components: - type: Transform pos: 4.5,-177.5 parent: 2 - - uid: 7797 + - uid: 335 components: - type: Transform pos: 2.5,-179.5 parent: 2 - - uid: 11907 + - uid: 336 components: - type: Transform pos: -0.5,-169.5 parent: 2 - proto: AirlockMedicalLocked entities: - - uid: 319 + - uid: 337 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-198.5 parent: 2 - - uid: 320 + - uid: 338 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-197.5 parent: 2 - - uid: 3168 + - uid: 339 components: - type: Transform pos: -0.5,-174.5 parent: 2 - - uid: 3181 + - uid: 340 components: - type: Transform pos: -0.5,-175.5 parent: 2 - - uid: 7478 + - uid: 341 components: - type: Transform pos: -0.5,-165.5 parent: 2 - proto: AirlockMining entities: - - uid: 14336 + - uid: 342 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-70.5 parent: 2 - - uid: 14339 + - uid: 343 components: - type: Transform rot: -1.5707963267948966 rad @@ -8862,19 +8697,19 @@ entities: parent: 2 - proto: AirlockMiningGlass entities: - - uid: 14333 + - uid: 344 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-66.5 parent: 2 - - uid: 14335 + - uid: 345 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-64.5 parent: 2 - - uid: 14462 + - uid: 346 components: - type: Transform rot: 3.141592653589793 rad @@ -8882,38 +8717,38 @@ entities: parent: 2 - proto: AirlockQuartermasterLocked entities: - - uid: 9165 + - uid: 347 components: - type: Transform pos: 6.5,-283.5 parent: 2 - proto: AirlockResearchDirectorLocked entities: - - uid: 8373 + - uid: 348 components: - type: Transform pos: -8.5,-301.5 parent: 2 - - uid: 9832 + - uid: 349 components: - type: Transform pos: -7.5,-303.5 parent: 2 - proto: AirlockSalvageLocked entities: - - uid: 2048 + - uid: 350 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-271.5 parent: 2 - - uid: 2049 + - uid: 351 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-282.5 parent: 2 - - uid: 2132 + - uid: 352 components: - type: Transform rot: -1.5707963267948966 rad @@ -8921,101 +8756,89 @@ entities: parent: 2 - proto: AirlockScienceGlassLocked entities: - - uid: 9823 + - uid: 353 components: - type: Transform pos: -6.5,-314.5 parent: 2 - proto: AirlockScienceLocked entities: - - uid: 9855 + - uid: 354 components: - type: Transform pos: -3.5,-310.5 parent: 2 - - uid: 9856 + - uid: 355 components: - type: Transform pos: -3.5,-306.5 parent: 2 - - uid: 9951 + - uid: 356 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-309.5 parent: 2 - - uid: 9952 + - uid: 357 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-305.5 parent: 2 - - uid: 10083 + - uid: 358 components: - type: Transform pos: -4.5,-320.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1791: + 16518: - DoorStatus: DoorBolt - 1812: + 16519: - DoorStatus: DoorBolt - - uid: 10127 + - uid: 359 components: - type: Transform pos: -1.5,-317.5 parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 2473 + - uid: 360 components: - type: Transform pos: 4.5,-340.5 parent: 2 - - uid: 11258 + - uid: 361 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-363.5 parent: 2 - - type: DeviceLinkSink - links: - - 11496 - - uid: 11259 + - uid: 362 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-363.5 parent: 2 - - type: DeviceLinkSink - links: - - 11332 - - uid: 11260 + - uid: 363 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-366.5 parent: 2 - - type: DeviceLinkSink - links: - - 11331 - - uid: 11261 + - uid: 364 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-366.5 parent: 2 - - type: DeviceLinkSink - links: - - 11330 - - uid: 12089 + - uid: 365 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-339.5 parent: 2 - - uid: 12703 + - uid: 366 components: - type: Transform rot: -1.5707963267948966 rad @@ -9023,37 +8846,37 @@ entities: parent: 2 - proto: AirlockSecurityLocked entities: - - uid: 11194 + - uid: 367 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-357.5 parent: 2 - - uid: 11195 + - uid: 368 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-357.5 parent: 2 - - uid: 11380 + - uid: 369 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-369.5 parent: 2 - - uid: 11381 + - uid: 370 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-369.5 parent: 2 - - uid: 11382 + - uid: 371 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-367.5 parent: 2 - - uid: 11407 + - uid: 372 components: - type: Transform rot: -1.5707963267948966 rad @@ -9061,13 +8884,13 @@ entities: parent: 2 - proto: AirlockServiceGlassLocked entities: - - uid: 1704 + - uid: 373 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-86.5 parent: 2 - - uid: 1722 + - uid: 374 components: - type: Transform rot: -1.5707963267948966 rad @@ -9075,65 +8898,65 @@ entities: parent: 2 - proto: AirlockServiceLocked entities: - - uid: 2719 + - uid: 375 components: - type: Transform pos: -4.5,-137.5 parent: 2 - - uid: 11931 + - uid: 376 components: - type: Transform pos: -5.5,-385.5 parent: 2 - proto: AirlockTheatreLocked entities: - - uid: 619 + - uid: 377 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-126.5 parent: 2 - - uid: 2016 + - uid: 378 components: - type: Transform pos: -5.5,-125.5 parent: 2 - - uid: 2017 + - uid: 379 components: - type: Transform pos: -5.5,-122.5 parent: 2 - proto: AirlockVirologyGlassLocked entities: - - uid: 1358 + - uid: 380 components: - type: Transform pos: -2.5,-199.5 parent: 2 - - uid: 3768 + - uid: 381 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-198.5 parent: 2 - - uid: 3867 + - uid: 382 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-205.5 parent: 2 - - uid: 3869 + - uid: 383 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-201.5 parent: 2 - - uid: 8806 + - uid: 384 components: - type: Transform pos: -3.5,-192.5 parent: 2 - - uid: 12114 + - uid: 385 components: - type: Transform rot: -1.5707963267948966 rad @@ -9141,23 +8964,23 @@ entities: parent: 2 - proto: AirSensor entities: - - uid: 3400 + - uid: 386 components: - type: Transform pos: 0.5,-300.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - uid: 4689 + - 55 + - uid: 387 components: - type: Transform pos: 4.5,-301.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13383 - - uid: 8430 + - 60 + - uid: 388 components: - type: Transform rot: -1.5707963267948966 rad @@ -9165,20 +8988,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - uid: 10651 + - 8 + - uid: 389 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-342.5 parent: 2 - - uid: 10759 + - uid: 390 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-337.5 parent: 2 - - uid: 13072 + - uid: 391 components: - type: Transform rot: 3.141592653589793 rad @@ -9186,8 +9009,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - uid: 13073 + - 12 + - uid: 392 components: - type: Transform rot: 3.141592653589793 rad @@ -9195,8 +9018,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12935 - - uid: 13083 + - 11 + - uid: 393 components: - type: Transform rot: 3.141592653589793 rad @@ -9204,8 +9027,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13105 - - uid: 13106 + - 13 + - uid: 394 components: - type: Transform rot: 3.141592653589793 rad @@ -9213,8 +9036,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13109 - - uid: 13107 + - 14 + - uid: 395 components: - type: Transform rot: 3.141592653589793 rad @@ -9222,8 +9045,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13110 - - uid: 13118 + - 15 + - uid: 396 components: - type: Transform rot: -1.5707963267948966 rad @@ -9231,8 +9054,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13116 - - uid: 13119 + - 17 + - uid: 397 components: - type: Transform rot: -1.5707963267948966 rad @@ -9240,8 +9063,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - uid: 13120 + - 16 + - uid: 398 components: - type: Transform rot: -1.5707963267948966 rad @@ -9249,8 +9072,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - uid: 13121 + - 16 + - uid: 399 components: - type: Transform rot: -1.5707963267948966 rad @@ -9258,8 +9081,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13117 - - uid: 13122 + - 18 + - uid: 400 components: - type: Transform rot: 1.5707963267948966 rad @@ -9267,8 +9090,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13124 - - uid: 13125 + - 19 + - uid: 401 components: - type: Transform rot: 1.5707963267948966 rad @@ -9276,8 +9099,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13147 - - uid: 13126 + - 21 + - uid: 402 components: - type: Transform rot: 1.5707963267948966 rad @@ -9285,8 +9108,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13148 - - uid: 13130 + - 22 + - uid: 403 components: - type: Transform rot: 1.5707963267948966 rad @@ -9294,8 +9117,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13150 - - uid: 13131 + - 23 + - uid: 404 components: - type: Transform rot: 1.5707963267948966 rad @@ -9303,8 +9126,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13151 - - uid: 13137 + - 24 + - uid: 405 components: - type: Transform rot: 1.5707963267948966 rad @@ -9312,8 +9135,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - uid: 13149 + - 20 + - uid: 406 components: - type: Transform rot: 3.141592653589793 rad @@ -9321,8 +9144,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13153 + - 26 + - uid: 407 components: - type: Transform rot: 1.5707963267948966 rad @@ -9330,8 +9153,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13152 - - uid: 13154 + - 25 + - uid: 408 components: - type: Transform rot: 1.5707963267948966 rad @@ -9339,8 +9162,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13164 + - 26 + - uid: 409 components: - type: Transform rot: 3.141592653589793 rad @@ -9348,36 +9171,36 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13165 - - uid: 13167 + - 27 + - uid: 410 components: - type: Transform pos: -0.5,-124.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 - - uid: 13170 + - 29 + - uid: 411 components: - type: Transform pos: 1.5,-116.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13171 - - uid: 13175 + - 30 + - uid: 412 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-141.5 parent: 2 - - uid: 13177 + - uid: 413 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-149.5 parent: 2 - - uid: 13179 + - uid: 414 components: - type: Transform rot: 1.5707963267948966 rad @@ -9385,8 +9208,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13180 - - uid: 13181 + - 33 + - uid: 415 components: - type: Transform rot: -1.5707963267948966 rad @@ -9394,24 +9217,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13182 - - uid: 13183 + - 34 + - uid: 416 components: - type: Transform pos: -4.5,-139.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13185 - - uid: 13184 + - 35 + - uid: 417 components: - type: Transform pos: -2.5,-146.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13185 - - uid: 13186 + - 35 + - uid: 418 components: - type: Transform rot: 1.5707963267948966 rad @@ -9419,8 +9242,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13187 - - uid: 13188 + - 36 + - uid: 419 components: - type: Transform rot: 1.5707963267948966 rad @@ -9428,16 +9251,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13189 - - uid: 13206 + - 37 + - uid: 420 components: - type: Transform pos: 0.5,-166.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - uid: 13210 + - 38 + - uid: 421 components: - type: Transform rot: 1.5707963267948966 rad @@ -9445,8 +9268,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13211 - - uid: 13212 + - 39 + - uid: 422 components: - type: Transform rot: 1.5707963267948966 rad @@ -9454,8 +9277,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13213 - - uid: 13214 + - 40 + - uid: 423 components: - type: Transform rot: 1.5707963267948966 rad @@ -9463,8 +9286,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8201 - - uid: 13217 + - 7 + - uid: 424 components: - type: Transform rot: 3.141592653589793 rad @@ -9472,8 +9295,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13218 - - uid: 13221 + - 41 + - uid: 425 components: - type: Transform rot: 3.141592653589793 rad @@ -9481,14 +9304,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - uid: 13222 + - 44 + - uid: 426 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-197.5 parent: 2 - - uid: 13227 + - uid: 427 components: - type: Transform rot: 3.141592653589793 rad @@ -9496,8 +9319,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13244 - - uid: 13238 + - 45 + - uid: 428 components: - type: Transform rot: -1.5707963267948966 rad @@ -9505,8 +9328,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - uid: 13246 + - 43 + - uid: 429 components: - type: Transform rot: -1.5707963267948966 rad @@ -9514,8 +9337,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13247 - - uid: 13248 + - 46 + - uid: 430 components: - type: Transform rot: 1.5707963267948966 rad @@ -9523,8 +9346,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13249 - - uid: 13250 + - 47 + - uid: 431 components: - type: Transform rot: 1.5707963267948966 rad @@ -9532,8 +9355,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13251 - - uid: 13253 + - 48 + - uid: 432 components: - type: Transform rot: -1.5707963267948966 rad @@ -9541,8 +9364,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 - - uid: 13254 + - 49 + - uid: 433 components: - type: Transform rot: -1.5707963267948966 rad @@ -9550,8 +9373,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 - - uid: 13255 + - 49 + - uid: 434 components: - type: Transform rot: -1.5707963267948966 rad @@ -9559,44 +9382,38 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 - - uid: 13256 + - 49 + - uid: 435 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-219.5 parent: 2 - - uid: 13257 + - uid: 436 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-219.5 parent: 2 - - uid: 13258 + - uid: 437 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-230.5 parent: 2 - - uid: 13259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-230.5 - parent: 2 - - uid: 13268 + - uid: 438 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-218.5 parent: 2 - - uid: 13270 + - uid: 439 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-231.5 parent: 2 - - uid: 13316 + - uid: 440 components: - type: Transform rot: -1.5707963267948966 rad @@ -9604,24 +9421,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - uid: 13318 + - 50 + - uid: 441 components: - type: Transform pos: 4.5,-271.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 - - uid: 13323 + - 51 + - uid: 442 components: - type: Transform pos: -6.5,-272.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2277 - - uid: 13325 + - 5 + - uid: 443 components: - type: Transform rot: 1.5707963267948966 rad @@ -9629,8 +9446,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13333 - - uid: 13326 + - 52 + - uid: 444 components: - type: Transform rot: 1.5707963267948966 rad @@ -9638,8 +9455,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13333 - - uid: 13334 + - 52 + - uid: 445 components: - type: Transform rot: 1.5707963267948966 rad @@ -9647,8 +9464,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13335 - - uid: 13336 + - 53 + - uid: 446 components: - type: Transform rot: 3.141592653589793 rad @@ -9656,8 +9473,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13337 + - 54 + - uid: 447 components: - type: Transform rot: 3.141592653589793 rad @@ -9665,8 +9482,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13359 + - 54 + - uid: 448 components: - type: Transform rot: -1.5707963267948966 rad @@ -9674,16 +9491,13 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13366 + - 56 + - uid: 449 components: - type: Transform pos: 0.5,-314.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13370 - - uid: 13371 + - uid: 450 components: - type: Transform rot: 1.5707963267948966 rad @@ -9691,8 +9505,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13374 - - uid: 13380 + - 58 + - uid: 451 components: - type: Transform rot: 1.5707963267948966 rad @@ -9700,8 +9514,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13382 - - uid: 13384 + - 59 + - uid: 452 components: - type: Transform rot: -1.5707963267948966 rad @@ -9709,18 +9523,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 - - uid: 13392 + - 61 + - 10 + - uid: 453 components: - type: Transform pos: -0.5,-337.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11906 - - 5925 - - uid: 13401 + - 10 + - 6 + - uid: 454 components: - type: Transform rot: -1.5707963267948966 rad @@ -9728,54 +9542,48 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13402 - - uid: 13407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-345.5 - parent: 2 - - uid: 13422 + - 62 + - uid: 455 components: - type: Transform pos: -4.5,-372.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13426 - - uid: 13423 + - 64 + - uid: 456 components: - type: Transform pos: 3.5,-360.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13424 + - 63 + - uid: 457 components: - type: Transform pos: -2.5,-360.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13425 + - 63 + - uid: 458 components: - type: Transform pos: 5.5,-372.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13426 - - uid: 13427 + - 64 + - uid: 459 components: - type: Transform pos: -0.5,-365.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13429 - - uid: 14726 + - 65 + - uid: 460 components: - type: Transform rot: 1.5707963267948966 rad @@ -9783,40 +9591,40 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14727 - - uid: 15274 + - 66 + - uid: 461 components: - type: Transform pos: 6.5,-243.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15279 - - uid: 15275 + - 68 + - uid: 462 components: - type: Transform pos: -0.5,-246.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - uid: 15276 + - 67 + - uid: 463 components: - type: Transform pos: 0.5,-257.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 15277 + - 70 + - uid: 464 components: - type: Transform pos: 4.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - uid: 15288 + - 69 + - uid: 465 components: - type: Transform rot: -1.5707963267948966 rad @@ -9824,8 +9632,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 15289 + - 71 + - uid: 466 components: - type: Transform rot: -1.5707963267948966 rad @@ -9833,325 +9641,316 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15292 + - 71 - proto: AltarSpawner entities: - - uid: 2584 + - uid: 467 components: - type: Transform pos: 4.5,-143.5 parent: 2 - proto: AmeJar entities: - - uid: 3746 + - uid: 468 components: - type: Transform pos: 20.506,-253.4022 parent: 2 - proto: AmePartFlatpack entities: - - uid: 8631 + - uid: 470 components: - type: Transform - parent: 8630 + parent: 469 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 8633 + - uid: 471 components: - type: Transform - parent: 8630 + parent: 469 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 8634 + - uid: 472 components: - type: Transform - parent: 8630 + parent: 469 - type: Physics canCollide: False - type: InsideEntityStorage - proto: AnomalyFloraBulb entities: - - uid: 6675 + - uid: 473 components: - type: Transform pos: 1.5,-40.5 parent: 2 - - uid: 6914 + - uid: 474 components: - type: Transform pos: 3.5,-41.5 parent: 2 - - uid: 12929 + - uid: 475 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-373.5 parent: 2 - - uid: 15093 + - uid: 476 components: - type: Transform pos: 11.5,-196.5 parent: 2 - proto: AnomalyLocatorWide entities: - - uid: 10022 + - uid: 477 components: - type: Transform pos: 3.3139195,-303.7327 parent: 2 - proto: AnomalyScanner entities: - - uid: 10016 + - uid: 478 components: - type: Transform pos: 4.6213827,-304.56445 parent: 2 - - uid: 10017 + - uid: 479 components: - type: Transform pos: 4.3572483,-304.30038 parent: 2 - proto: APCBasic entities: - - uid: 906 + - uid: 480 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-220.5 parent: 2 - - uid: 1028 + - uid: 481 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-247.5 parent: 2 - - uid: 2002 + - uid: 482 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 2 - - uid: 2005 + - uid: 483 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-1.5 parent: 2 - - uid: 2236 + - uid: 484 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-56.5 parent: 2 - - uid: 3200 + - uid: 485 components: - type: Transform pos: 5.5,-112.5 parent: 2 - - uid: 4047 + - uid: 486 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-302.5 parent: 2 - - uid: 4294 + - uid: 487 components: - type: Transform pos: 1.5,-115.5 parent: 2 - - uid: 4348 + - uid: 488 components: - type: Transform pos: -2.5,-108.5 parent: 2 - - uid: 5001 + - uid: 489 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-254.5 parent: 2 - - uid: 5695 + - uid: 490 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-6.5 parent: 2 - - uid: 5743 + - uid: 491 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-11.5 parent: 2 - - uid: 5818 + - uid: 492 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-42.5 parent: 2 - - uid: 5820 + - uid: 493 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-30.5 parent: 2 - - uid: 5969 + - uid: 494 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-63.5 parent: 2 - - uid: 5971 + - uid: 495 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-71.5 parent: 2 - - uid: 6161 + - uid: 496 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 6162 + - uid: 497 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-97.5 parent: 2 - - uid: 6444 + - uid: 498 components: - type: Transform pos: -3.5,-134.5 parent: 2 - - uid: 6445 + - uid: 499 components: - type: Transform pos: 6.5,-137.5 parent: 2 - - uid: 6918 + - uid: 500 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-164.5 parent: 2 - - uid: 6919 + - uid: 501 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-176.5 parent: 2 - - uid: 7062 + - uid: 502 components: - type: Transform pos: 4.5,-188.5 parent: 2 - - uid: 7063 + - uid: 503 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-203.5 parent: 2 - - uid: 7591 + - uid: 504 components: - type: Transform pos: -2.5,-228.5 parent: 2 - - uid: 7722 + - uid: 505 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-248.5 parent: 2 - - uid: 7929 + - uid: 506 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-249.5 parent: 2 - - uid: 8259 + - uid: 507 components: - type: Transform pos: 13.5,-158.5 parent: 2 - type: Battery startingCharge: 0 - - type: Apc - lastExternalState: Good - lastChargeState: Full - - uid: 8315 + - uid: 508 components: - type: Transform pos: 17.5,-137.5 parent: 2 - type: Battery startingCharge: 0 - - type: Apc - lastExternalState: Good - lastChargeState: Full - - uid: 9074 + - uid: 509 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-264.5 parent: 2 - - uid: 9166 + - uid: 510 components: - type: Transform pos: 5.5,-283.5 parent: 2 - - uid: 9174 + - uid: 511 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-272.5 parent: 2 - - uid: 9187 + - uid: 512 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-272.5 parent: 2 - - uid: 10277 + - uid: 513 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-320.5 parent: 2 - - uid: 10333 + - uid: 514 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-301.5 parent: 2 - - uid: 10338 + - uid: 515 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-317.5 parent: 2 - - uid: 10957 + - uid: 516 components: - type: Transform pos: 6.5,-328.5 parent: 2 - - uid: 11998 + - uid: 517 components: - type: Transform pos: 0.5,-387.5 parent: 2 - type: Battery startingCharge: 0 - - type: Apc - lastExternalState: Good - lastChargeState: Full - - uid: 14464 + - uid: 518 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-84.5 parent: 2 - - uid: 16641 + - uid: 519 components: - type: Transform rot: 3.141592653589793 rad @@ -10159,19 +9958,19 @@ entities: parent: 2 - proto: APCHighCapacity entities: - - uid: 10937 + - uid: 520 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-347.5 parent: 2 - - uid: 10938 + - uid: 521 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-347.5 parent: 2 - - uid: 15300 + - uid: 522 components: - type: Transform rot: 1.5707963267948966 rad @@ -10179,18 +9978,18 @@ entities: parent: 2 - proto: APCHyperCapacity entities: - - uid: 888 + - uid: 523 components: - type: Transform pos: 7.5,-334.5 parent: 2 - - uid: 9616 + - uid: 524 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-307.5 parent: 2 - - uid: 10860 + - uid: 525 components: - type: Transform rot: 3.141592653589793 rad @@ -10198,289 +9997,289 @@ entities: parent: 2 - proto: APCSuperCapacity entities: - - uid: 11557 + - uid: 526 components: - type: Transform pos: 1.5,-361.5 parent: 2 - proto: ArrivalsShuttleTimer entities: - - uid: 12014 + - uid: 527 components: - type: Transform pos: 2.5,-36.5 parent: 2 - proto: AsteroidRock entities: - - uid: 6689 + - uid: 528 components: - type: Transform pos: 29.5,-263.5 parent: 2 - - uid: 6864 + - uid: 529 components: - type: Transform pos: 28.5,-263.5 parent: 2 - - uid: 7496 + - uid: 530 components: - type: Transform pos: 28.5,-261.5 parent: 2 - - uid: 8530 + - uid: 531 components: - type: Transform pos: 28.5,-258.5 parent: 2 - - uid: 8854 + - uid: 532 components: - type: Transform pos: 31.5,-261.5 parent: 2 - - uid: 8859 + - uid: 533 components: - type: Transform pos: 28.5,-259.5 parent: 2 - proto: AsteroidRockGold entities: - - uid: 4988 + - uid: 534 components: - type: Transform pos: 27.5,-259.5 parent: 2 - proto: AsteroidRockUranium entities: - - uid: 7371 + - uid: 535 components: - type: Transform pos: 15.5,-143.5 parent: 2 - - uid: 7374 + - uid: 536 components: - type: Transform pos: 17.5,-150.5 parent: 2 - - uid: 7375 + - uid: 537 components: - type: Transform pos: 15.5,-148.5 parent: 2 - proto: AsteroidRockUraniumCrab entities: - - uid: 7312 + - uid: 538 components: - type: Transform pos: 12.5,-150.5 parent: 2 - - uid: 7368 + - uid: 539 components: - type: Transform pos: 17.5,-141.5 parent: 2 - - uid: 7369 + - uid: 540 components: - type: Transform pos: 13.5,-142.5 parent: 2 - - uid: 7370 + - uid: 541 components: - type: Transform pos: 16.5,-143.5 parent: 2 - - uid: 7372 + - uid: 542 components: - type: Transform pos: 15.5,-144.5 parent: 2 - - uid: 7373 + - uid: 543 components: - type: Transform pos: 15.5,-142.5 parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 142 + - uid: 544 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-16.5 parent: 2 - - uid: 560 + - uid: 545 components: - type: Transform pos: 8.5,-43.5 parent: 2 - - uid: 561 + - uid: 546 components: - type: Transform pos: 8.5,-31.5 parent: 2 - - uid: 562 + - uid: 547 components: - type: Transform pos: -7.5,-43.5 parent: 2 - - uid: 563 + - uid: 548 components: - type: Transform pos: -7.5,-36.5 parent: 2 - - uid: 564 + - uid: 549 components: - type: Transform pos: 8.5,-36.5 parent: 2 - - uid: 565 + - uid: 550 components: - type: Transform pos: 8.5,-29.5 parent: 2 - - uid: 568 + - uid: 551 components: - type: Transform pos: -7.5,-31.5 parent: 2 - - uid: 569 + - uid: 552 components: - type: Transform pos: -7.5,-29.5 parent: 2 - - uid: 1627 + - uid: 553 components: - type: Transform pos: -4.5,-46.5 parent: 2 - - uid: 1707 + - uid: 554 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-96.5 parent: 2 - - uid: 1709 + - uid: 555 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-94.5 parent: 2 - - uid: 1710 + - uid: 556 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-89.5 parent: 2 - - uid: 1716 + - uid: 557 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-91.5 parent: 2 - - uid: 3259 + - uid: 558 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-87.5 parent: 2 - - uid: 3260 + - uid: 559 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-86.5 parent: 2 - - uid: 5006 + - uid: 560 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-223.5 parent: 2 - - uid: 5111 + - uid: 561 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-242.5 parent: 2 - - uid: 5119 + - uid: 562 components: - type: Transform pos: -4.5,-262.5 parent: 2 - - uid: 8000 + - uid: 563 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-169.5 parent: 2 - - uid: 8159 + - uid: 564 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-256.5 parent: 2 - - uid: 8819 + - uid: 565 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-278.5 parent: 2 - - uid: 8820 + - uid: 566 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-280.5 parent: 2 - - uid: 8836 + - uid: 567 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-269.5 parent: 2 - - uid: 8839 + - uid: 568 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-272.5 parent: 2 - - uid: 8841 + - uid: 569 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-273.5 parent: 2 - - uid: 10080 + - uid: 570 components: - type: Transform pos: -4.5,-295.5 parent: 2 - - uid: 10682 + - uid: 571 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-146.5 parent: 2 - - uid: 10852 + - uid: 572 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-145.5 parent: 2 - - uid: 11507 + - uid: 573 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-178.5 parent: 2 - - uid: 11882 + - uid: 574 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-381.5 parent: 2 - - uid: 13243 + - uid: 575 components: - type: Transform pos: 5.5,-321.5 parent: 2 - - uid: 14291 + - uid: 576 components: - type: Transform rot: 3.141592653589793 rad @@ -10488,208 +10287,208 @@ entities: parent: 2 - proto: AtmosFixBlockerMarker entities: - - uid: 4989 + - uid: 577 components: - type: Transform pos: -21.5,-255.5 parent: 2 - - uid: 16536 + - uid: 578 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-261.5 parent: 2 - - uid: 16539 + - uid: 579 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-260.5 parent: 2 - - uid: 16540 + - uid: 580 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-259.5 parent: 2 - - uid: 16541 + - uid: 581 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-259.5 parent: 2 - - uid: 16542 + - uid: 582 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-260.5 parent: 2 - - uid: 16543 + - uid: 583 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-261.5 parent: 2 - - uid: 16544 + - uid: 584 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-261.5 parent: 2 - - uid: 16545 + - uid: 585 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-260.5 parent: 2 - - uid: 16546 + - uid: 586 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-259.5 parent: 2 - - uid: 16547 + - uid: 587 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-257.5 parent: 2 - - uid: 16548 + - uid: 588 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-257.5 parent: 2 - - uid: 16550 + - uid: 589 components: - type: Transform pos: -21.5,-257.5 parent: 2 - - uid: 16551 + - uid: 590 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-255.5 parent: 2 - - uid: 16552 + - uid: 591 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-255.5 parent: 2 - - uid: 16553 + - uid: 592 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-253.5 parent: 2 - - uid: 16554 + - uid: 593 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-253.5 parent: 2 - - uid: 16555 + - uid: 594 components: - type: Transform pos: -21.5,-253.5 parent: 2 - proto: AtmosFixFreezerMarker entities: - - uid: 1626 + - uid: 595 components: - type: Transform pos: -3.5,-92.5 parent: 2 - - uid: 1786 + - uid: 596 components: - type: Transform pos: -5.5,-91.5 parent: 2 - - uid: 1787 + - uid: 597 components: - type: Transform pos: -5.5,-92.5 parent: 2 - - uid: 1788 + - uid: 598 components: - type: Transform pos: -4.5,-91.5 parent: 2 - - uid: 1789 + - uid: 599 components: - type: Transform pos: -4.5,-92.5 parent: 2 - - uid: 1790 + - uid: 600 components: - type: Transform pos: -3.5,-91.5 parent: 2 - - uid: 1792 + - uid: 601 components: - type: Transform pos: -2.5,-91.5 parent: 2 - - uid: 1793 + - uid: 602 components: - type: Transform pos: -2.5,-92.5 parent: 2 - - uid: 1794 + - uid: 603 components: - type: Transform pos: -1.5,-91.5 parent: 2 - - uid: 1795 + - uid: 604 components: - type: Transform pos: -1.5,-92.5 parent: 2 - - uid: 1796 + - uid: 605 components: - type: Transform pos: -2.5,-93.5 parent: 2 - - uid: 1797 + - uid: 606 components: - type: Transform pos: -3.5,-93.5 parent: 2 - - uid: 1798 + - uid: 607 components: - type: Transform pos: -4.5,-93.5 parent: 2 - - uid: 1799 + - uid: 608 components: - type: Transform pos: -4.5,-90.5 parent: 2 - - uid: 1800 + - uid: 609 components: - type: Transform pos: -3.5,-90.5 parent: 2 - - uid: 1801 + - uid: 610 components: - type: Transform pos: -2.5,-90.5 parent: 2 - proto: AtmosFixPlasmaMarker entities: - - uid: 12605 + - uid: 611 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-251.5 parent: 2 - - uid: 13240 + - uid: 612 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-251.5 parent: 2 - - uid: 14223 + - uid: 613 components: - type: Transform rot: -1.5707963267948966 rad @@ -10697,213 +10496,213 @@ entities: parent: 2 - proto: Autolathe entities: - - uid: 4985 + - uid: 614 components: - type: Transform - pos: 17.5,-245.5 + pos: 6.5,-272.5 parent: 2 - - uid: 9073 + - uid: 615 components: - type: Transform - pos: 6.5,-273.5 + pos: 17.5,-245.5 parent: 2 - - uid: 14289 + - uid: 616 components: - type: Transform pos: -5.5,-299.5 parent: 2 - proto: BackgammonBoard entities: - - uid: 3707 + - uid: 617 components: - type: Transform pos: 6.5271845,-122.9964 parent: 2 - proto: BananaPhoneInstrument entities: - - uid: 2015 + - uid: 618 components: - type: Transform pos: -7.68055,-124.47525 parent: 2 - proto: BannerCargo entities: - - uid: 8378 + - uid: 619 components: - type: Transform pos: -0.5,-282.5 parent: 2 - - uid: 14027 + - uid: 620 components: - type: Transform pos: -0.5,-276.5 parent: 2 - proto: BannerEngineering entities: - - uid: 14010 + - uid: 621 components: - type: Transform pos: -2.5,-246.5 parent: 2 - proto: BarberScissors entities: - - uid: 14338 + - uid: 622 components: - type: Transform pos: 16.483294,-59.410294 parent: 2 - - uid: 14356 + - uid: 623 components: - type: Transform pos: 14.515497,-59.39709 parent: 2 - - uid: 14477 + - uid: 625 components: - type: Transform - parent: 14476 + parent: 624 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Barricade entities: - - uid: 2819 + - uid: 629 components: - type: Transform pos: 8.5,-146.5 parent: 2 - - uid: 2820 + - uid: 630 components: - type: Transform pos: 8.5,-136.5 parent: 2 - - uid: 3399 + - uid: 631 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-148.5 parent: 2 - - uid: 3889 + - uid: 632 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-200.5 parent: 2 - - uid: 7358 + - uid: 633 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-156.5 parent: 2 - - uid: 7363 + - uid: 634 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-141.5 parent: 2 - - uid: 7365 + - uid: 635 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-141.5 parent: 2 - - uid: 7367 + - uid: 636 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-150.5 parent: 2 - - uid: 7401 + - uid: 637 components: - type: Transform pos: 8.5,-162.5 parent: 2 - - uid: 16525 + - uid: 638 components: - type: Transform pos: -10.5,-167.5 parent: 2 - - uid: 16526 + - uid: 639 components: - type: Transform pos: -7.5,-162.5 parent: 2 - proto: BarricadeBlock entities: - - uid: 208 + - uid: 640 components: - type: Transform pos: -7.5,-43.5 parent: 2 - - uid: 1689 + - uid: 641 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-71.5 parent: 2 - - uid: 2986 + - uid: 642 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-376.5 parent: 2 - - uid: 3886 + - uid: 643 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-201.5 parent: 2 - - uid: 3888 + - uid: 644 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-205.5 parent: 2 - - uid: 3952 + - uid: 645 components: - type: Transform pos: -1.5,-206.5 parent: 2 - - uid: 7366 + - uid: 646 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-155.5 parent: 2 - - uid: 8810 + - uid: 647 components: - type: Transform pos: -3.5,-192.5 parent: 2 - - uid: 12082 + - uid: 648 components: - type: Transform pos: 0.5,-382.5 parent: 2 - - uid: 12946 + - uid: 649 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-380.5 parent: 2 - - uid: 16527 + - uid: 650 components: - type: Transform pos: -7.5,-167.5 parent: 2 - - uid: 16528 + - uid: 651 components: - type: Transform pos: -10.5,-162.5 parent: 2 - proto: BarricadeDirectional entities: - - uid: 7364 + - uid: 652 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-141.5 parent: 2 - - uid: 7402 + - uid: 653 components: - type: Transform rot: 1.5707963267948966 rad @@ -10911,14 +10710,14 @@ entities: parent: 2 - proto: BarSignRobustaCafe entities: - - uid: 711 + - uid: 654 components: - type: Transform pos: 1.5,-60.5 parent: 2 - proto: BaseComputer entities: - - uid: 9704 + - uid: 655 components: - type: Transform rot: 3.141592653589793 rad @@ -10926,254 +10725,254 @@ entities: parent: 2 - proto: BaseSecretDoorAssembly entities: - - uid: 1459 + - uid: 656 components: - type: Transform pos: 4.5,-71.5 parent: 2 - proto: Beaker entities: - - uid: 1403 + - uid: 657 components: - type: Transform pos: 5.582528,-167.40445 parent: 2 - - uid: 1589 + - uid: 658 components: - type: Transform pos: 5.707528,-167.3107 parent: 2 - - uid: 2296 + - uid: 659 components: - type: Transform pos: 1.3710482,-86.542175 parent: 2 - - uid: 2297 + - uid: 660 components: - type: Transform pos: 1.1890888,-86.33679 parent: 2 - - uid: 3906 + - uid: 661 components: - type: Transform pos: -6.721316,-194.7393 parent: 2 - - uid: 3908 + - uid: 662 components: - type: Transform pos: -6.686098,-195.08257 parent: 2 - - uid: 3916 + - uid: 663 components: - type: Transform pos: -4.0606456,-198.2437 parent: 2 - - uid: 3917 + - uid: 664 components: - type: Transform pos: -4.2543435,-198.42853 parent: 2 - - uid: 11686 + - uid: 665 components: - type: Transform pos: 2.6228993,-370.27484 parent: 2 - - uid: 26550 + - uid: 666 components: - type: Transform pos: 2.312565,-370.50742 parent: 2 + - uid: 16327 + components: + - type: Transform + pos: -2.3821619,-168.06873 + parent: 2 - proto: Bed entities: - - uid: 1078 + - uid: 667 components: - type: Transform pos: 4.5,-64.5 parent: 2 - - uid: 1406 + - uid: 668 components: - type: Transform pos: -5.5,-73.5 parent: 2 - - uid: 1686 + - uid: 669 components: - type: Transform pos: -6.5,-112.5 parent: 2 - - uid: 1989 + - uid: 670 components: - type: Transform pos: -8.5,-112.5 parent: 2 - - uid: 1991 + - uid: 671 components: - type: Transform pos: -8.5,-115.5 parent: 2 - - uid: 1995 + - uid: 672 components: - type: Transform pos: -6.5,-121.5 parent: 2 - - uid: 1999 + - uid: 673 components: - type: Transform pos: -6.5,-124.5 parent: 2 - - uid: 2082 + - uid: 674 components: - type: Transform pos: -6.5,-115.5 parent: 2 - - uid: 2086 + - uid: 675 components: - type: Transform pos: -6.5,-118.5 parent: 2 - - uid: 2087 + - uid: 676 components: - type: Transform pos: -8.5,-118.5 parent: 2 - - uid: 2233 + - uid: 677 components: - type: Transform pos: -0.5,-116.5 parent: 2 - - uid: 2476 - components: - - type: Transform - pos: -2.5,-168.5 - parent: 2 - - uid: 2712 + - uid: 679 components: - type: Transform pos: 6.5,-139.5 parent: 2 - - uid: 2721 + - uid: 680 components: - type: Transform pos: -5.5,-135.5 parent: 2 - - uid: 5873 + - uid: 681 components: - type: Transform pos: -0.5,-14.5 parent: 2 - - uid: 7210 + - uid: 682 components: - type: Transform pos: 1.5,-196.5 parent: 2 - - uid: 8345 + - uid: 683 components: - type: Transform pos: 10.5,-250.5 parent: 2 - - uid: 9014 + - uid: 684 components: - type: Transform pos: 4.5,-285.5 parent: 2 - - uid: 9744 + - uid: 685 components: - type: Transform pos: -9.5,-302.5 parent: 2 - - uid: 10742 + - uid: 686 components: - type: Transform pos: -4.5,-206.5 parent: 2 - - uid: 11102 + - uid: 687 components: - type: Transform pos: -2.5,-344.5 parent: 2 - - uid: 11771 + - uid: 688 components: - type: Transform pos: 7.5,-364.5 parent: 2 - - uid: 11772 + - uid: 689 components: - type: Transform pos: 7.5,-367.5 parent: 2 - - uid: 11774 + - uid: 690 components: - type: Transform pos: -6.5,-367.5 parent: 2 - - uid: 11775 + - uid: 691 components: - type: Transform pos: -6.5,-364.5 parent: 2 - - uid: 11787 + - uid: 692 components: - type: Transform pos: -5.5,-372.5 parent: 2 - - uid: 11789 + - uid: 693 components: - type: Transform pos: -5.5,-371.5 parent: 2 - - uid: 15748 + - uid: 694 components: - type: Transform pos: -4.5,-200.5 parent: 2 - proto: BedsheetBlack entities: - - uid: 964 + - uid: 695 components: - type: Transform pos: 4.5,-64.5 parent: 2 - - uid: 2713 + - uid: 696 components: - type: Transform pos: 6.5,-139.5 parent: 2 - proto: BedsheetBrown entities: - - uid: 3257 + - uid: 697 components: - type: Transform pos: -5.5,-73.5 parent: 2 - proto: BedsheetCaptain entities: - - uid: 296 + - uid: 698 components: - type: Transform pos: -0.5,-14.5 parent: 2 - proto: BedsheetCE entities: - - uid: 8441 + - uid: 699 components: - type: Transform pos: 10.5,-250.5 parent: 2 - proto: BedsheetClown entities: - - uid: 2046 + - uid: 700 components: - type: Transform pos: -6.5,-124.5 parent: 2 - proto: BedsheetGreen entities: - - uid: 3880 + - uid: 701 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-200.5 parent: 2 - - uid: 3881 + - uid: 702 components: - type: Transform rot: 3.141592653589793 rad @@ -11181,14 +10980,14 @@ entities: parent: 2 - proto: BedsheetHOP entities: - - uid: 2221 + - uid: 703 components: - type: Transform pos: -0.5,-116.5 parent: 2 - proto: BedsheetHOS entities: - - uid: 11096 + - uid: 704 components: - type: Transform rot: 3.141592653589793 rad @@ -11196,76 +10995,76 @@ entities: parent: 2 - proto: BedsheetMedical entities: - - uid: 2462 + - uid: 705 components: - type: Transform pos: 8.5,-176.5 parent: 2 - - uid: 3683 + - uid: 706 components: - type: Transform pos: 3.5,-172.5 parent: 2 - - uid: 3684 + - uid: 707 components: - type: Transform pos: 3.5,-174.5 parent: 2 - - uid: 3688 + - uid: 708 components: - type: Transform pos: 8.5,-174.5 parent: 2 - - uid: 3689 + - uid: 709 components: - type: Transform pos: 8.5,-172.5 parent: 2 - - uid: 11438 + - uid: 710 components: - type: Transform pos: -4.5,-361.5 parent: 2 - proto: BedsheetMime entities: - - uid: 2025 + - uid: 711 components: - type: Transform pos: -6.5,-121.5 parent: 2 - proto: BedsheetOrange entities: - - uid: 11779 + - uid: 712 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-367.5 parent: 2 - - uid: 11780 + - uid: 713 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-364.5 parent: 2 - - uid: 11781 + - uid: 714 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-364.5 parent: 2 - - uid: 11782 + - uid: 715 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-367.5 parent: 2 - - uid: 11791 + - uid: 716 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-371.5 parent: 2 - - uid: 11792 + - uid: 717 components: - type: Transform rot: 3.141592653589793 rad @@ -11273,114 +11072,114 @@ entities: parent: 2 - proto: BedsheetQM entities: - - uid: 9013 + - uid: 718 components: - type: Transform pos: 4.5,-285.5 parent: 2 - proto: BedsheetRD entities: - - uid: 9824 + - uid: 719 components: - type: Transform pos: -9.5,-302.5 parent: 2 - proto: BedsheetSpawner entities: - - uid: 2088 + - uid: 720 components: - type: Transform pos: -8.5,-118.5 parent: 2 - - uid: 2089 + - uid: 721 components: - type: Transform pos: -6.5,-118.5 parent: 2 - - uid: 2090 + - uid: 722 components: - type: Transform pos: -6.5,-115.5 parent: 2 - - uid: 2091 + - uid: 723 components: - type: Transform pos: -8.5,-115.5 parent: 2 - - uid: 2092 + - uid: 724 components: - type: Transform pos: -8.5,-112.5 parent: 2 - - uid: 2093 + - uid: 725 components: - type: Transform pos: -6.5,-112.5 parent: 2 - - uid: 2680 + - uid: 726 components: - type: Transform pos: -5.5,-135.5 parent: 2 - proto: BenchBlueComfy entities: - - uid: 132 + - uid: 727 components: - type: Transform pos: 6.5,-5.5 parent: 2 - - uid: 160 + - uid: 728 components: - type: Transform pos: 3.5,-5.5 parent: 2 - - uid: 162 + - uid: 729 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-8.5 parent: 2 - - uid: 170 + - uid: 730 components: - type: Transform pos: 5.5,-5.5 parent: 2 - - uid: 171 + - uid: 731 components: - type: Transform pos: 4.5,-5.5 parent: 2 - - uid: 172 + - uid: 732 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 2 - - uid: 173 + - uid: 733 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-8.5 parent: 2 - - uid: 174 + - uid: 734 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-8.5 parent: 2 - - uid: 14746 + - uid: 735 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-309.5 parent: 2 - - uid: 14747 + - uid: 736 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-309.5 parent: 2 - - uid: 14748 + - uid: 737 components: - type: Transform rot: 3.141592653589793 rad @@ -11388,19 +11187,19 @@ entities: parent: 2 - proto: BenchColorfulComfy entities: - - uid: 4179 + - uid: 738 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-314.5 parent: 2 - - uid: 11419 + - uid: 739 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-313.5 parent: 2 - - uid: 13351 + - uid: 740 components: - type: Transform rot: 1.5707963267948966 rad @@ -11408,31 +11207,31 @@ entities: parent: 2 - proto: BenchComfy entities: - - uid: 10574 + - uid: 741 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-300.5 parent: 2 - - uid: 10575 + - uid: 742 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-301.5 parent: 2 - - uid: 10576 + - uid: 743 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-302.5 parent: 2 - - uid: 14736 + - uid: 744 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-191.5 parent: 2 - - uid: 14737 + - uid: 745 components: - type: Transform rot: 3.141592653589793 rad @@ -11440,478 +11239,478 @@ entities: parent: 2 - proto: BenchRedComfy entities: - - uid: 597 + - uid: 746 components: - type: Transform pos: 2.5,-30.5 parent: 2 - - uid: 687 + - uid: 747 components: - type: Transform pos: -3.5,-30.5 parent: 2 - - uid: 688 + - uid: 748 components: - type: Transform pos: -2.5,-30.5 parent: 2 - - uid: 689 + - uid: 749 components: - type: Transform pos: -1.5,-30.5 parent: 2 - - uid: 690 + - uid: 750 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-29.5 parent: 2 - - uid: 691 + - uid: 751 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-29.5 parent: 2 - - uid: 692 + - uid: 752 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-29.5 parent: 2 - - uid: 695 + - uid: 753 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 697 + - uid: 754 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-29.5 parent: 2 - - uid: 699 + - uid: 755 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-29.5 parent: 2 - - uid: 791 + - uid: 756 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-41.5 parent: 2 - - uid: 792 + - uid: 757 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-40.5 parent: 2 - - uid: 805 + - uid: 758 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-39.5 parent: 2 - - uid: 825 + - uid: 759 components: - type: Transform pos: 2.5,-42.5 parent: 2 - - uid: 833 + - uid: 760 components: - type: Transform pos: 3.5,-42.5 parent: 2 - - uid: 2363 + - uid: 761 components: - type: Transform pos: -6.5,-66.5 parent: 2 - - uid: 3126 + - uid: 762 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-246.5 parent: 2 - - uid: 3134 + - uid: 763 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-250.5 parent: 2 - - uid: 3489 + - uid: 764 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-249.5 parent: 2 - - uid: 3840 + - uid: 765 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-139.5 parent: 2 - - uid: 4197 + - uid: 766 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-138.5 parent: 2 - - uid: 6845 + - uid: 767 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-147.5 parent: 2 - - uid: 7231 + - uid: 768 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-146.5 parent: 2 - - uid: 7232 + - uid: 769 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-143.5 parent: 2 - - uid: 7234 + - uid: 770 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-144.5 parent: 2 - - uid: 7236 + - uid: 771 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-148.5 parent: 2 - - uid: 7238 + - uid: 772 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-143.5 parent: 2 - - uid: 7251 + - uid: 773 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-148.5 parent: 2 - - uid: 7311 + - uid: 774 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-153.5 parent: 2 - - uid: 7314 + - uid: 775 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-153.5 parent: 2 - - uid: 7316 + - uid: 776 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-139.5 parent: 2 - - uid: 7317 + - uid: 777 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-139.5 parent: 2 - - uid: 7320 + - uid: 778 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-151.5 parent: 2 - - uid: 7321 + - uid: 779 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-151.5 parent: 2 - - uid: 7322 + - uid: 780 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-152.5 parent: 2 - - uid: 7324 + - uid: 781 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-153.5 parent: 2 - - uid: 7325 + - uid: 782 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-152.5 parent: 2 - - uid: 7326 + - uid: 783 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-152.5 parent: 2 - - uid: 7327 + - uid: 784 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-151.5 parent: 2 - - uid: 7328 + - uid: 785 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-151.5 parent: 2 - - uid: 7329 + - uid: 786 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-138.5 parent: 2 - - uid: 7331 + - uid: 787 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-140.5 parent: 2 - - uid: 7332 + - uid: 788 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-140.5 parent: 2 - - uid: 7333 + - uid: 789 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-140.5 parent: 2 - - uid: 7336 + - uid: 790 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-159.5 parent: 2 - - uid: 7337 + - uid: 791 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-159.5 parent: 2 - - uid: 7338 + - uid: 792 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-160.5 parent: 2 - - uid: 7339 + - uid: 793 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-160.5 parent: 2 - - uid: 7340 + - uid: 794 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-161.5 parent: 2 - - uid: 7341 + - uid: 795 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-161.5 parent: 2 - - uid: 7342 + - uid: 796 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-161.5 parent: 2 - - uid: 7343 + - uid: 797 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-161.5 parent: 2 - - uid: 7344 + - uid: 798 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-160.5 parent: 2 - - uid: 7345 + - uid: 799 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-160.5 parent: 2 - - uid: 7346 + - uid: 800 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-159.5 parent: 2 - - uid: 7347 + - uid: 801 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-159.5 parent: 2 - - uid: 7349 + - uid: 802 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-165.5 parent: 2 - - uid: 7521 + - uid: 803 components: - type: Transform pos: -6.5,-61.5 parent: 2 - - uid: 7522 + - uid: 804 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-64.5 parent: 2 - - uid: 7921 + - uid: 805 components: - type: Transform pos: -5.5,-61.5 parent: 2 - - uid: 7926 + - uid: 806 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-64.5 parent: 2 - - uid: 9431 + - uid: 807 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-68.5 parent: 2 - - uid: 10868 + - uid: 808 components: - type: Transform pos: -6.5,-57.5 parent: 2 - - uid: 10932 + - uid: 809 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-332.5 parent: 2 - - uid: 10933 + - uid: 810 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-331.5 parent: 2 - - uid: 10934 + - uid: 811 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-329.5 parent: 2 - - uid: 11893 + - uid: 812 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-247.5 parent: 2 - - uid: 14373 + - uid: 813 components: - type: Transform pos: 13.5,-77.5 parent: 2 - - uid: 14420 + - uid: 814 components: - type: Transform pos: 14.5,-77.5 parent: 2 - - uid: 14421 + - uid: 815 components: - type: Transform pos: 16.5,-77.5 parent: 2 - - uid: 14422 + - uid: 816 components: - type: Transform pos: 17.5,-77.5 parent: 2 - - uid: 14435 + - uid: 817 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-79.5 parent: 2 - - uid: 14436 + - uid: 818 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-79.5 parent: 2 - - uid: 14438 + - uid: 819 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-83.5 parent: 2 - - uid: 14439 + - uid: 820 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-83.5 parent: 2 - - uid: 14440 + - uid: 821 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-84.5 parent: 2 - - uid: 14443 + - uid: 822 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-84.5 parent: 2 - - uid: 14446 + - uid: 823 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-82.5 parent: 2 - - uid: 14449 + - uid: 824 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-82.5 parent: 2 - - uid: 14456 + - uid: 825 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-80.5 parent: 2 - - uid: 14458 + - uid: 826 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-80.5 parent: 2 - - uid: 15809 + - uid: 827 components: - type: Transform rot: 3.141592653589793 rad @@ -11919,191 +11718,140 @@ entities: parent: 2 - proto: BlastDoor entities: - - uid: 1749 + - uid: 828 components: - type: Transform pos: -4.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 1767 - - uid: 1750 + - uid: 829 components: - type: Transform pos: -3.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 1767 - - uid: 2917 + - uid: 830 components: - type: Transform pos: -20.5,-236.5 parent: 2 - - type: DeviceLinkSink - links: - - 6906 - - uid: 2972 + - uid: 831 components: - type: Transform pos: -20.5,-237.5 parent: 2 - - type: DeviceLinkSink - links: - - 6906 - - uid: 3537 + - uid: 832 components: - type: Transform pos: -20.5,-238.5 parent: 2 - - type: DeviceLinkSink - links: - - 6906 - - uid: 9906 + - uid: 833 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-312.5 parent: 2 - - type: DeviceLinkSink - links: - - 10008 - - uid: 9908 + - uid: 834 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-313.5 parent: 2 - - type: DeviceLinkSink - links: - - 10008 - - uid: 9941 + - uid: 835 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-314.5 parent: 2 - - type: DeviceLinkSink - links: - - 10008 - - uid: 10001 + - uid: 836 components: - type: Transform pos: -10.5,-314.5 parent: 2 - - type: DeviceLinkSink - links: - - 10009 - - uid: 10003 + - uid: 837 components: - type: Transform pos: -10.5,-315.5 parent: 2 - - type: DeviceLinkSink - links: - - 10009 - - uid: 10004 + - uid: 838 components: - type: Transform pos: -10.5,-313.5 parent: 2 - - type: DeviceLinkSink - links: - - 10009 - - uid: 11201 + - uid: 839 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-357.5 parent: 2 - - type: DeviceLinkSink - links: - - 11710 - - uid: 11940 + - uid: 840 components: - type: Transform pos: -3.5,-385.5 parent: 2 - - uid: 11943 + - uid: 841 components: - type: Transform pos: -4.5,-385.5 parent: 2 - proto: BlastDoorOpen entities: - - uid: 2222 + - uid: 842 components: - type: Transform pos: -2.5,-114.5 parent: 2 - - type: DeviceLinkSink - links: - - 11312 - - uid: 2223 + - uid: 843 components: - type: Transform pos: -2.5,-113.5 parent: 2 - - type: DeviceLinkSink - links: - - 11312 - - uid: 2224 + - uid: 844 components: - type: Transform pos: -2.5,-112.5 parent: 2 - - type: DeviceLinkSink - links: - - 11312 - - uid: 8236 + - uid: 845 components: - type: Transform pos: -1.5,-253.5 parent: 2 - - uid: 8238 + - uid: 846 components: - type: Transform pos: -2.5,-330.5 parent: 2 - - uid: 8549 + - uid: 847 components: - type: Transform pos: -2.5,-331.5 parent: 2 - - uid: 8801 + - uid: 848 components: - type: Transform pos: 10.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9008 - - uid: 8803 + - uid: 849 components: - type: Transform pos: 10.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9009 - - uid: 10915 + - uid: 850 components: - type: Transform pos: -2.5,-329.5 parent: 2 - - uid: 13998 + - uid: 851 components: - type: Transform pos: -1.5,-255.5 parent: 2 - - uid: 14025 + - uid: 852 components: - type: Transform pos: -1.5,-254.5 parent: 2 - proto: BlockGameArcade entities: - - uid: 1756 + - uid: 853 components: - type: Transform rot: 1.5707963267948966 rad @@ -12113,154 +11861,154 @@ entities: enabled: False - proto: BlockGameArcadeComputerCircuitboard entities: - - uid: 15271 + - uid: 854 components: - type: Transform pos: 6.380858,-242.27087 parent: 2 - proto: BodyBagFolded entities: - - uid: 2706 + - uid: 855 components: - type: Transform pos: 3.4006777,-137.08098 parent: 2 - - uid: 2707 + - uid: 856 components: - type: Transform pos: 3.6031802,-137.20421 parent: 2 - - uid: 2708 + - uid: 857 components: - type: Transform pos: 3.4711132,-137.28342 parent: 2 - - uid: 2845 + - uid: 858 components: - type: Transform pos: -2.3260214,-174.77829 parent: 2 - - uid: 2930 + - uid: 859 components: - type: Transform pos: -2.5666766,-174.61398 parent: 2 - - uid: 3239 + - uid: 860 components: - type: Transform pos: -2.5608068,-174.98366 parent: 2 - - uid: 3240 + - uid: 861 components: - type: Transform pos: -2.34363,-175.13622 parent: 2 - proto: BookAtmosAirAlarms entities: - - uid: 17059 + - uid: 863 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookAtmosDistro entities: - - uid: 17060 + - uid: 864 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookAtmosVentsMore entities: - - uid: 17062 + - uid: 865 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookAtmosWaste entities: - - uid: 17057 + - uid: 866 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookshelfFilled entities: - - uid: 1759 + - uid: 869 components: - type: Transform pos: -5.5,-146.5 parent: 2 - - uid: 2604 + - uid: 870 components: - type: Transform pos: -5.5,-143.5 parent: 2 - - uid: 2614 + - uid: 871 components: - type: Transform pos: -3.5,-143.5 parent: 2 - - uid: 2615 + - uid: 872 components: - type: Transform pos: -2.5,-143.5 parent: 2 - - uid: 2628 + - uid: 873 components: - type: Transform pos: -2.5,-145.5 parent: 2 - - uid: 2629 + - uid: 874 components: - type: Transform pos: -4.5,-145.5 parent: 2 - - uid: 2630 + - uid: 875 components: - type: Transform pos: -5.5,-145.5 parent: 2 - - uid: 2631 + - uid: 876 components: - type: Transform pos: -2.5,-147.5 parent: 2 - - uid: 2632 + - uid: 877 components: - type: Transform pos: -3.5,-147.5 parent: 2 - - uid: 2633 + - uid: 878 components: - type: Transform pos: -5.5,-147.5 parent: 2 - - uid: 2742 + - uid: 879 components: - type: Transform pos: -5.5,-142.5 parent: 2 - - uid: 4786 + - uid: 880 components: - type: Transform pos: -5.5,-144.5 parent: 2 - - uid: 7551 + - uid: 881 components: - type: Transform pos: -5.5,-148.5 parent: 2 - proto: BoozeDispenser entities: - - uid: 1249 + - uid: 882 components: - type: Transform rot: 3.141592653589793 rad @@ -12268,55 +12016,55 @@ entities: parent: 2 - proto: BorgCharger entities: - - uid: 8697 + - uid: 883 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-251.5 parent: 2 - - uid: 9975 + - uid: 884 components: - type: Transform pos: 7.5,-310.5 parent: 2 - proto: BorgChargerCircuitboard entities: - - uid: 14743 + - uid: 885 components: - type: Transform pos: -5.6778665,-307.2365 parent: 2 - proto: BoxBeaker entities: - - uid: 3141 + - uid: 886 components: - type: Transform pos: 6.935201,-165.38791 parent: 2 - proto: BoxBodyBag entities: - - uid: 3048 + - uid: 887 components: - type: Transform pos: -2.6240926,-174.26779 parent: 2 - proto: BoxCandle entities: - - uid: 14729 + - uid: 888 components: - type: Transform pos: -5.4542284,-189.36801 parent: 2 - proto: BoxDarts entities: - - uid: 13431 + - uid: 889 components: - type: Transform pos: -2.9653907,-32.45716 parent: 2 - proto: BoxFolderBase entities: - - uid: 2773 + - uid: 890 components: - type: Transform rot: 3.141592653589793 rad @@ -12324,197 +12072,197 @@ entities: parent: 2 - proto: BoxFolderBlack entities: - - uid: 2567 + - uid: 891 components: - type: Transform pos: 6.7308598,-6.9109907 parent: 2 - - uid: 11073 + - uid: 892 components: - type: Transform pos: 4.492667,-332.38788 parent: 2 - proto: BoxFolderBlue entities: - - uid: 2781 + - uid: 893 components: - type: Transform pos: 3.4805696,-6.920642 parent: 2 - proto: BoxFolderGreen entities: - - uid: 2744 + - uid: 894 components: - type: Transform pos: -5.3577433,-140.33952 parent: 2 - - uid: 2780 + - uid: 895 components: - type: Transform pos: 2.4827733,-42.50757 parent: 2 - proto: BoxFolderGrey entities: - - uid: 11076 + - uid: 896 components: - type: Transform pos: 5.4435487,-332.5595 parent: 2 - proto: BoxFolderRed entities: - - uid: 750 + - uid: 897 components: - type: Transform pos: -6.554108,-339.5885 parent: 2 - - uid: 2745 + - uid: 898 components: - type: Transform pos: -5.6042686,-140.69159 parent: 2 - - uid: 2777 + - uid: 899 components: - type: Transform pos: 1.1156995,-121.4541 parent: 2 - - uid: 2778 + - uid: 900 components: - type: Transform pos: 1.4750745,-67.40666 parent: 2 - - uid: 11074 + - uid: 901 components: - type: Transform pos: 4.703974,-332.5463 parent: 2 - - uid: 12731 + - uid: 902 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4252734,-358.4766 parent: 2 - - uid: 12998 + - uid: 903 components: - type: Transform pos: -6.6729684,-339.83936 parent: 2 - proto: BoxFolderWhite entities: - - uid: 11075 + - uid: 904 components: - type: Transform pos: 5.205828,-332.4011 parent: 2 - proto: BoxFolderYellow entities: - - uid: 1075 + - uid: 905 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.4889371,-58.428474 parent: 2 - - uid: 2776 + - uid: 906 components: - type: Transform pos: 1.5844495,-121.53223 parent: 2 - - uid: 4978 + - uid: 907 components: - type: Transform pos: 1.5176499,-251.36285 parent: 2 - - uid: 6638 + - uid: 908 components: - type: Transform pos: 5.4400353,-254.3202 parent: 2 - - uid: 9083 + - uid: 909 components: - type: Transform pos: 4.3809915,-273.23694 parent: 2 - proto: BoxHandcuff entities: - - uid: 10681 + - uid: 910 components: - type: Transform pos: -6.2767687,-339.93176 parent: 2 - proto: BoxLightbulb entities: - - uid: 8905 + - uid: 911 components: - type: Transform pos: 8.347681,-249.4434 parent: 2 - - uid: 8906 + - uid: 912 components: - type: Transform pos: 8.628931,-249.4434 parent: 2 - proto: BoxLightMixed entities: - - uid: 8965 + - uid: 913 components: - type: Transform pos: -13.339703,-245.36317 parent: 2 - proto: BoxMouthSwab entities: - - uid: 10678 + - uid: 914 components: - type: Transform pos: -6.5179734,-193.50864 parent: 2 - proto: BoxSterileMask entities: - - uid: 10708 + - uid: 915 components: - type: Transform pos: -6.124293,-193.22752 parent: 2 - proto: BoxSyringe entities: - - uid: 2331 + - uid: 916 components: - type: Transform pos: -6.1348615,-84.71074 parent: 2 - - uid: 2909 + - uid: 917 components: - type: Transform pos: 1.3851851,-192.22426 parent: 2 - proto: BrbSign entities: - - uid: 2269 + - uid: 918 components: - type: Transform pos: -0.49859565,-122.45183 parent: 2 - proto: BriefcaseBrown entities: - - uid: 14481 + - uid: 919 components: - type: Transform pos: 17.608545,-82.66066 parent: 2 - proto: BriefcaseBrownFilled entities: - - uid: 10798 + - uid: 920 components: - type: Transform pos: 4.4794602,-328.2291 parent: 2 - proto: BrigTimer entities: - - uid: 11154 + - uid: 921 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-368.5 parent: 2 - - uid: 11330 + - uid: 922 components: - type: Transform rot: -1.5707963267948966 rad @@ -12522,9 +12270,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11261: + 364: - Timer: Open - - uid: 11331 + - uid: 923 components: - type: Transform rot: 1.5707963267948966 rad @@ -12532,9 +12280,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11260: + 363: - Timer: Open - - uid: 11332 + - uid: 924 components: - type: Transform rot: 1.5707963267948966 rad @@ -12542,15 +12290,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11259: + 362: - Timer: Open - - uid: 11439 + - uid: 925 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-368.5 parent: 2 - - uid: 11496 + - uid: 926 components: - type: Transform rot: 1.5707963267948966 rad @@ -12558,18992 +12306,18992 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11258: + 361: - Timer: Open - proto: Brutepack entities: - - uid: 3699 + - uid: 927 components: - type: Transform pos: 8.449239,-173.24081 parent: 2 - - uid: 3700 + - uid: 928 components: - type: Transform pos: 8.72658,-177.42598 parent: 2 - proto: Bucket entities: - - uid: 1742 + - uid: 626 + components: + - type: Transform + parent: 624 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 929 components: - type: Transform pos: -3.7102582,-53.682693 parent: 2 - - uid: 3244 + - uid: 930 components: - type: Transform pos: -1.1669447,-173.19298 parent: 2 - - uid: 12151 + - uid: 931 components: - type: Transform pos: -5.7254634,-38.660492 parent: 2 - - uid: 14479 - components: - - type: Transform - parent: 14476 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14762 + - uid: 933 components: - type: Transform - parent: 14755 + parent: 932 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 26547 + - uid: 936 components: - type: Transform pos: -4.342669,-374.57834 parent: 2 - proto: ButtonFrameCautionSecurity entities: - - uid: 5465 + - uid: 937 components: - type: Transform pos: 1.5,-334.5 parent: 2 - proto: CableApcExtension entities: - - uid: 61 + - uid: 938 components: - type: Transform pos: 5.5,-97.5 parent: 2 - - uid: 74 + - uid: 939 components: - type: Transform pos: 6.5,-260.5 parent: 2 - - uid: 80 + - uid: 940 components: - type: Transform pos: 4.5,-97.5 parent: 2 - - uid: 168 + - uid: 941 components: - type: Transform pos: -0.5,-58.5 parent: 2 - - uid: 250 + - uid: 942 components: - type: Transform pos: 5.5,-45.5 parent: 2 - - uid: 267 + - uid: 943 components: - type: Transform pos: -4.5,-112.5 parent: 2 - - uid: 377 + - uid: 944 components: - type: Transform pos: 7.5,-97.5 parent: 2 - - uid: 627 + - uid: 945 components: - type: Transform pos: -4.5,-109.5 parent: 2 - - uid: 634 + - uid: 946 components: - type: Transform pos: -4.5,-111.5 parent: 2 - - uid: 636 + - uid: 947 components: - type: Transform pos: -4.5,-110.5 parent: 2 - - uid: 652 + - uid: 948 components: - type: Transform pos: 5.5,-268.5 parent: 2 - - uid: 745 + - uid: 949 components: - type: Transform pos: -3.5,-109.5 parent: 2 - - uid: 753 + - uid: 950 components: - type: Transform pos: -2.5,-109.5 parent: 2 - - uid: 790 + - uid: 951 components: - type: Transform pos: 7.5,-225.5 parent: 2 - - uid: 827 + - uid: 952 components: - type: Transform pos: 5.5,-220.5 parent: 2 - - uid: 843 + - uid: 953 components: - type: Transform pos: -3.5,-330.5 parent: 2 - - uid: 986 + - uid: 954 components: - type: Transform pos: 3.5,-147.5 parent: 2 - - uid: 1006 + - uid: 955 components: - type: Transform pos: 7.5,-138.5 parent: 2 - - uid: 1037 + - uid: 956 components: - type: Transform pos: -4.5,-27.5 parent: 2 - - uid: 1125 + - uid: 957 components: - type: Transform pos: -4.5,-18.5 parent: 2 - - uid: 1130 + - uid: 958 components: - type: Transform pos: -4.5,-28.5 parent: 2 - - uid: 1329 + - uid: 959 components: - type: Transform pos: -5.5,-59.5 parent: 2 - - uid: 1367 + - uid: 960 components: - type: Transform pos: -5.5,-62.5 parent: 2 - - uid: 1380 + - uid: 961 components: - type: Transform pos: -5.5,-61.5 parent: 2 - - uid: 1384 + - uid: 962 components: - type: Transform pos: -5.5,-60.5 parent: 2 - - uid: 1385 + - uid: 963 components: - type: Transform pos: 0.5,-58.5 parent: 2 - - uid: 1401 + - uid: 964 components: - type: Transform pos: 6.5,-80.5 parent: 2 - - uid: 1468 + - uid: 965 components: - type: Transform pos: 16.5,-240.5 parent: 2 - - uid: 1494 + - uid: 966 components: - type: Transform pos: 18.5,-243.5 parent: 2 - - uid: 1802 + - uid: 967 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 1834 + - uid: 968 components: - type: Transform pos: -17.5,-252.5 parent: 2 - - uid: 1837 + - uid: 969 components: - type: Transform pos: 5.5,-221.5 parent: 2 - - uid: 2004 + - uid: 970 components: - type: Transform pos: -5.5,-1.5 parent: 2 - - uid: 2059 + - uid: 971 components: - type: Transform pos: 3.5,-64.5 parent: 2 - - uid: 2060 + - uid: 972 components: - type: Transform pos: 3.5,-62.5 parent: 2 - - uid: 2061 + - uid: 973 components: - type: Transform pos: -1.5,-56.5 parent: 2 - - uid: 2063 + - uid: 974 components: - type: Transform pos: -0.5,-56.5 parent: 2 - - uid: 2065 + - uid: 975 components: - type: Transform pos: 2.5,-52.5 parent: 2 - - uid: 2066 + - uid: 976 components: - type: Transform pos: -0.5,-64.5 parent: 2 - - uid: 2194 + - uid: 977 components: - type: Transform pos: -9.5,-300.5 parent: 2 - - uid: 2293 + - uid: 978 components: - type: Transform pos: 1.5,1.5 parent: 2 - - uid: 2318 + - uid: 979 components: - type: Transform pos: -0.5,-17.5 parent: 2 - - uid: 2323 + - uid: 980 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 2324 + - uid: 981 components: - type: Transform pos: -1.5,-17.5 parent: 2 - - uid: 2328 + - uid: 982 components: - type: Transform pos: 1.5,-16.5 parent: 2 - - uid: 2402 + - uid: 983 components: - type: Transform pos: -21.5,-241.5 parent: 2 - - uid: 2422 + - uid: 984 components: - type: Transform pos: 3.5,-9.5 parent: 2 - - uid: 2445 + - uid: 985 components: - type: Transform pos: 5.5,-8.5 parent: 2 - - uid: 2446 + - uid: 986 components: - type: Transform pos: 4.5,-9.5 parent: 2 - - uid: 2479 + - uid: 987 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 2485 + - uid: 988 components: - type: Transform pos: -19.5,-237.5 parent: 2 - - uid: 2487 + - uid: 989 components: - type: Transform pos: -11.5,-162.5 parent: 2 - - uid: 2505 + - uid: 990 components: - type: Transform pos: 5.5,-80.5 parent: 2 - - uid: 2639 + - uid: 991 components: - type: Transform pos: -0.5,-14.5 parent: 2 - - uid: 2642 + - uid: 992 components: - type: Transform pos: -2.5,-10.5 parent: 2 - - uid: 2644 + - uid: 993 components: - type: Transform pos: -1.5,-125.5 parent: 2 - - uid: 2716 + - uid: 994 components: - type: Transform pos: 3.5,-115.5 parent: 2 - - uid: 2727 + - uid: 995 components: - type: Transform pos: 3.5,-114.5 parent: 2 - - uid: 2731 + - uid: 996 components: - type: Transform pos: 3.5,-116.5 parent: 2 - - uid: 2739 + - uid: 997 components: - type: Transform pos: 3.5,-253.5 parent: 2 - - uid: 2743 + - uid: 998 components: - type: Transform pos: 1.5,-121.5 parent: 2 - - uid: 2844 + - uid: 999 components: - type: Transform pos: 2.5,-208.5 parent: 2 - - uid: 2858 + - uid: 1000 components: - type: Transform pos: 2.5,-121.5 parent: 2 - - uid: 2876 + - uid: 1001 components: - type: Transform pos: -0.5,-121.5 parent: 2 - - uid: 2877 + - uid: 1002 components: - type: Transform pos: -1.5,-121.5 parent: 2 - - uid: 2914 + - uid: 1003 components: - type: Transform pos: -17.5,-237.5 parent: 2 - - uid: 2915 + - uid: 1004 components: - type: Transform pos: -14.5,-238.5 parent: 2 - - uid: 2918 + - uid: 1005 components: - type: Transform pos: -16.5,-237.5 parent: 2 - - uid: 2954 + - uid: 1006 components: - type: Transform pos: 8.5,-115.5 parent: 2 - - uid: 2955 + - uid: 1007 components: - type: Transform pos: -14.5,-239.5 parent: 2 - - uid: 2987 + - uid: 1008 components: - type: Transform pos: -1.5,-330.5 parent: 2 - - uid: 3005 + - uid: 1009 components: - type: Transform pos: -0.5,-125.5 parent: 2 - - uid: 3053 + - uid: 1010 components: - type: Transform pos: -3.5,-87.5 parent: 2 - - uid: 3077 + - uid: 1011 components: - type: Transform pos: -14.5,-241.5 parent: 2 - - uid: 3104 + - uid: 1012 components: - type: Transform pos: -3.5,-88.5 parent: 2 - - uid: 3132 + - uid: 1013 components: - type: Transform pos: -14.5,-242.5 parent: 2 - - uid: 3152 + - uid: 1014 components: - type: Transform pos: -15.5,-237.5 parent: 2 - - uid: 3171 + - uid: 1015 components: - type: Transform pos: -2.5,-108.5 parent: 2 - - uid: 3247 + - uid: 1016 components: - type: Transform pos: -7.5,-335.5 parent: 2 - - uid: 3254 + - uid: 1017 components: - type: Transform pos: -18.5,-237.5 parent: 2 - - uid: 3396 + - uid: 1018 components: - type: Transform pos: -14.5,-237.5 parent: 2 - - uid: 3487 + - uid: 1019 components: - type: Transform pos: -6.5,-163.5 parent: 2 - - uid: 3532 + - uid: 1020 components: - type: Transform pos: -14.5,-240.5 parent: 2 - - uid: 3640 + - uid: 1021 components: - type: Transform pos: 7.5,-120.5 parent: 2 - - uid: 3641 + - uid: 1022 components: - type: Transform pos: -8.5,-132.5 parent: 2 - - uid: 3763 + - uid: 1023 components: - type: Transform pos: -21.5,-244.5 parent: 2 - - uid: 3765 + - uid: 1024 components: - type: Transform pos: -0.5,-162.5 parent: 2 - - uid: 3904 + - uid: 1025 components: - type: Transform pos: -0.5,-330.5 parent: 2 - - uid: 4043 + - uid: 1026 components: - type: Transform pos: -9.5,-301.5 parent: 2 - - uid: 4115 + - uid: 1027 components: - type: Transform pos: 5.5,0.5 parent: 2 - - uid: 4184 + - uid: 1028 components: - type: Transform pos: -4.5,-105.5 parent: 2 - - uid: 4207 + - uid: 1029 components: - type: Transform pos: 11.5,-248.5 parent: 2 - - uid: 4208 + - uid: 1030 components: - type: Transform pos: 7.5,-248.5 parent: 2 - - uid: 4213 + - uid: 1031 components: - type: Transform pos: 18.5,-263.5 parent: 2 - - uid: 4340 + - uid: 1032 components: - type: Transform pos: 3.5,-222.5 parent: 2 - - uid: 4341 + - uid: 1033 components: - type: Transform pos: 5.5,-222.5 parent: 2 - - uid: 4587 + - uid: 1034 components: - type: Transform pos: -10.5,-167.5 parent: 2 - - uid: 4612 + - uid: 1035 components: - type: Transform pos: -21.5,-245.5 parent: 2 - - uid: 4638 + - uid: 1036 components: - type: Transform pos: 5.5,-143.5 parent: 2 - - uid: 4658 + - uid: 1037 components: - type: Transform pos: 8.5,-119.5 parent: 2 - - uid: 4682 + - uid: 1038 components: - type: Transform pos: 5.5,-1.5 parent: 2 - - uid: 4752 + - uid: 1039 components: - type: Transform pos: 5.5,-0.5 parent: 2 - - uid: 4753 + - uid: 1040 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 4754 + - uid: 1041 components: - type: Transform pos: 6.5,-2.5 parent: 2 - - uid: 4873 + - uid: 1042 components: - type: Transform pos: 9.5,-243.5 parent: 2 - - uid: 4900 + - uid: 1043 components: - type: Transform pos: 5.5,-219.5 parent: 2 - - uid: 4901 + - uid: 1044 components: - type: Transform pos: 2.5,-220.5 parent: 2 - - uid: 4941 + - uid: 1045 components: - type: Transform pos: 5.5,1.5 parent: 2 - - uid: 4980 + - uid: 1046 components: - type: Transform pos: 5.5,-226.5 parent: 2 - - uid: 4994 + - uid: 1047 components: - type: Transform pos: 5.5,-147.5 parent: 2 - - uid: 5043 + - uid: 1048 components: - type: Transform pos: 5.5,-106.5 parent: 2 - - uid: 5211 + - uid: 1049 + components: + - type: Transform + pos: 1.5,-319.5 + parent: 2 + - uid: 1050 components: - type: Transform pos: -0.5,-30.5 parent: 2 - - uid: 5294 + - uid: 1051 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 5295 + - uid: 1052 components: - type: Transform pos: 4.5,-222.5 parent: 2 - - uid: 5296 + - uid: 1053 components: - type: Transform pos: 2.5,-116.5 parent: 2 - - uid: 5322 + - uid: 1054 components: - type: Transform pos: 5.5,-104.5 parent: 2 - - uid: 5327 + - uid: 1055 components: - type: Transform pos: 7.5,-224.5 parent: 2 - - uid: 5329 + - uid: 1056 components: - type: Transform pos: 3.5,-28.5 parent: 2 - - uid: 5330 + - uid: 1057 components: - type: Transform pos: 2.5,-28.5 parent: 2 - - uid: 5331 + - uid: 1058 components: - type: Transform pos: 3.5,-247.5 parent: 2 - - uid: 5400 + - uid: 1059 components: - type: Transform pos: 3.5,-30.5 parent: 2 - - uid: 5415 + - uid: 1060 components: - type: Transform pos: 2.5,-30.5 parent: 2 - - uid: 5426 + - uid: 1061 components: - type: Transform pos: -2.5,-11.5 parent: 2 - - uid: 5427 + - uid: 1062 components: - type: Transform pos: 3.5,-220.5 parent: 2 - - uid: 5430 + - uid: 1063 components: - type: Transform pos: -0.5,-179.5 parent: 2 - - uid: 5431 + - uid: 1064 components: - type: Transform pos: -1.5,-179.5 parent: 2 - - uid: 5432 + - uid: 1065 components: - type: Transform pos: -2.5,-179.5 parent: 2 - - uid: 5433 + - uid: 1066 components: - type: Transform pos: -3.5,-179.5 parent: 2 - - uid: 5470 + - uid: 1067 components: - type: Transform pos: -20.5,-243.5 parent: 2 - - uid: 5474 + - uid: 1068 components: - type: Transform pos: -21.5,-243.5 parent: 2 - - uid: 5477 + - uid: 1069 components: - type: Transform pos: -18.5,-243.5 parent: 2 - - uid: 5478 + - uid: 1070 components: - type: Transform pos: -19.5,-243.5 parent: 2 - - uid: 5480 + - uid: 1071 components: - type: Transform pos: -17.5,-243.5 parent: 2 - - uid: 5484 + - uid: 1072 components: - type: Transform pos: -4.5,-113.5 parent: 2 - - uid: 5485 + - uid: 1073 components: - type: Transform pos: 6.5,-97.5 parent: 2 - - uid: 5505 + - uid: 1074 components: - type: Transform pos: -9.5,-167.5 parent: 2 - - uid: 5655 + - uid: 1075 components: - type: Transform pos: -8.5,-167.5 parent: 2 - - uid: 5696 + - uid: 1076 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 5697 + - uid: 1077 components: - type: Transform pos: -2.5,-12.5 parent: 2 - - uid: 5698 + - uid: 1078 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 5701 + - uid: 1079 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 5702 + - uid: 1080 components: - type: Transform pos: 3.5,-4.5 parent: 2 - - uid: 5703 + - uid: 1081 components: - type: Transform pos: -1.5,-2.5 parent: 2 - - uid: 5704 + - uid: 1082 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 5705 + - uid: 1083 components: - type: Transform pos: -2.5,-4.5 parent: 2 - - uid: 5706 + - uid: 1084 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 5707 + - uid: 1085 components: - type: Transform pos: -2.5,-2.5 parent: 2 - - uid: 5708 + - uid: 1086 components: - type: Transform pos: 0.5,-2.5 parent: 2 - - uid: 5709 + - uid: 1087 components: - type: Transform pos: -3.5,-2.5 parent: 2 - - uid: 5710 + - uid: 1088 components: - type: Transform pos: -2.5,-1.5 parent: 2 - - uid: 5711 + - uid: 1089 components: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 5712 + - uid: 1090 components: - type: Transform pos: 2.5,-3.5 parent: 2 - - uid: 5713 + - uid: 1091 components: - type: Transform pos: 2.5,-2.5 parent: 2 - - uid: 5714 + - uid: 1092 components: - type: Transform pos: 2.5,-1.5 parent: 2 - - uid: 5715 + - uid: 1093 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 5716 + - uid: 1094 components: - type: Transform pos: -3.5,-6.5 parent: 2 - - uid: 5717 + - uid: 1095 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 5718 + - uid: 1096 components: - type: Transform pos: -1.5,-6.5 parent: 2 - - uid: 5719 + - uid: 1097 components: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 5720 + - uid: 1098 components: - type: Transform pos: 2.5,-5.5 parent: 2 - - uid: 5721 + - uid: 1099 components: - type: Transform pos: 2.5,-6.5 parent: 2 - - uid: 5722 + - uid: 1100 components: - type: Transform pos: 2.5,-7.5 parent: 2 - - uid: 5723 + - uid: 1101 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 5724 + - uid: 1102 components: - type: Transform pos: 2.5,-9.5 parent: 2 - - uid: 5725 + - uid: 1103 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 5726 + - uid: 1104 components: - type: Transform pos: 2.5,-11.5 parent: 2 - - uid: 5727 + - uid: 1105 components: - type: Transform pos: 2.5,-12.5 parent: 2 - - uid: 5728 + - uid: 1106 components: - type: Transform pos: 2.5,-13.5 parent: 2 - - uid: 5729 + - uid: 1107 components: - type: Transform pos: 2.5,-14.5 parent: 2 - - uid: 5730 + - uid: 1108 components: - type: Transform pos: 2.5,-15.5 parent: 2 - - uid: 5731 + - uid: 1109 components: - type: Transform pos: 2.5,-16.5 parent: 2 - - uid: 5732 + - uid: 1110 components: - type: Transform pos: 5.5,-9.5 parent: 2 - - uid: 5733 + - uid: 1111 components: - type: Transform pos: 6.5,-9.5 parent: 2 - - uid: 5734 + - uid: 1112 components: - type: Transform pos: 5.5,-5.5 parent: 2 - - uid: 5735 + - uid: 1113 components: - type: Transform pos: 5.5,-10.5 parent: 2 - - uid: 5736 + - uid: 1114 components: - type: Transform pos: 5.5,-11.5 parent: 2 - - uid: 5737 + - uid: 1115 components: - type: Transform pos: 6.5,-4.5 parent: 2 - - uid: 5739 + - uid: 1116 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 5740 + - uid: 1117 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 5742 + - uid: 1118 components: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 5744 + - uid: 1119 components: - type: Transform pos: -2.5,-13.5 parent: 2 - - uid: 5745 + - uid: 1120 components: - type: Transform pos: -2.5,-14.5 parent: 2 - - uid: 5746 + - uid: 1121 components: - type: Transform pos: -3.5,-14.5 parent: 2 - - uid: 5747 + - uid: 1122 components: - type: Transform pos: -1.5,-14.5 parent: 2 - - uid: 5748 + - uid: 1123 components: - type: Transform pos: -2.5,-9.5 parent: 2 - - uid: 5751 + - uid: 1124 components: - type: Transform pos: -0.5,-10.5 parent: 2 - - uid: 5752 + - uid: 1125 components: - type: Transform pos: -0.5,-9.5 parent: 2 - - uid: 5753 + - uid: 1126 components: - type: Transform pos: 0.5,-16.5 parent: 2 - - uid: 5754 + - uid: 1127 components: - type: Transform pos: 0.5,-18.5 parent: 2 - - uid: 5755 + - uid: 1128 components: - type: Transform pos: 0.5,-19.5 parent: 2 - - uid: 5756 + - uid: 1129 components: - type: Transform pos: 0.5,-20.5 parent: 2 - - uid: 5757 + - uid: 1130 components: - type: Transform pos: -3.5,-17.5 parent: 2 - - uid: 5758 + - uid: 1131 components: - type: Transform pos: -4.5,-17.5 parent: 2 - - uid: 5759 + - uid: 1132 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 5760 + - uid: 1133 components: - type: Transform pos: -5.5,-16.5 parent: 2 - - uid: 5762 + - uid: 1134 components: - type: Transform pos: 3.5,-1.5 parent: 2 - - uid: 5763 + - uid: 1135 components: - type: Transform pos: 1.5,-1.5 parent: 2 - - uid: 5764 + - uid: 1136 components: - type: Transform pos: 1.5,-0.5 parent: 2 - - uid: 5765 + - uid: 1137 components: - type: Transform pos: 1.5,0.5 parent: 2 - - uid: 5766 + - uid: 1138 components: - type: Transform pos: 0.5,1.5 parent: 2 - - uid: 5767 + - uid: 1139 components: - type: Transform pos: -0.5,1.5 parent: 2 - - uid: 5769 + - uid: 1140 components: - type: Transform pos: -0.5,0.5 parent: 2 - - uid: 5770 + - uid: 1141 components: - type: Transform pos: 0.5,2.5 parent: 2 - - uid: 5771 + - uid: 1142 components: - type: Transform pos: 2.5,1.5 parent: 2 - - uid: 5772 + - uid: 1143 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 5773 + - uid: 1144 components: - type: Transform pos: 5.5,2.5 parent: 2 - - uid: 5774 + - uid: 1145 components: - type: Transform pos: -3.5,1.5 parent: 2 - - uid: 5775 + - uid: 1146 components: - type: Transform pos: -3.5,2.5 parent: 2 - - uid: 5776 + - uid: 1147 components: - type: Transform pos: -2.5,1.5 parent: 2 - - uid: 5777 + - uid: 1148 components: - type: Transform pos: -4.5,1.5 parent: 2 - - uid: 5778 + - uid: 1149 components: - type: Transform pos: -5.5,1.5 parent: 2 - - uid: 5779 + - uid: 1150 components: - type: Transform pos: -5.5,0.5 parent: 2 - - uid: 5780 + - uid: 1151 components: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 5782 + - uid: 1152 components: - type: Transform pos: 4.5,-2.5 parent: 2 - - uid: 5783 + - uid: 1153 components: - type: Transform pos: 3.5,-221.5 parent: 2 - - uid: 5821 + - uid: 1154 components: - type: Transform pos: 0.5,-25.5 parent: 2 - - uid: 5822 + - uid: 1155 components: - type: Transform pos: 0.5,-26.5 parent: 2 - - uid: 5823 + - uid: 1156 components: - type: Transform pos: 0.5,-27.5 parent: 2 - - uid: 5824 + - uid: 1157 components: - type: Transform pos: 0.5,-28.5 parent: 2 - - uid: 5825 + - uid: 1158 components: - type: Transform pos: 0.5,-29.5 parent: 2 - - uid: 5826 + - uid: 1159 components: - type: Transform pos: 0.5,-30.5 parent: 2 - - uid: 5827 + - uid: 1160 components: - type: Transform pos: 0.5,-31.5 parent: 2 - - uid: 5828 + - uid: 1161 components: - type: Transform pos: 0.5,-32.5 parent: 2 - - uid: 5829 + - uid: 1162 components: - type: Transform pos: 1.5,-28.5 parent: 2 - - uid: 5830 + - uid: 1163 components: - type: Transform pos: -0.5,-28.5 parent: 2 - - uid: 5831 + - uid: 1164 components: - type: Transform pos: -1.5,-28.5 parent: 2 - - uid: 5832 + - uid: 1165 components: - type: Transform pos: -2.5,-28.5 parent: 2 - - uid: 5833 + - uid: 1166 components: - type: Transform pos: -3.5,-28.5 parent: 2 - - uid: 5834 + - uid: 1167 components: - type: Transform pos: -4.5,-28.5 parent: 2 - - uid: 5835 + - uid: 1168 components: - type: Transform pos: -1.5,-30.5 parent: 2 - - uid: 5836 + - uid: 1169 components: - type: Transform pos: -2.5,-30.5 parent: 2 - - uid: 5837 + - uid: 1170 components: - type: Transform pos: -3.5,-30.5 parent: 2 - - uid: 5838 + - uid: 1171 components: - type: Transform pos: -4.5,-30.5 parent: 2 - - uid: 5840 + - uid: 1172 components: - type: Transform pos: 1.5,-46.5 parent: 2 - - uid: 5841 + - uid: 1173 components: - type: Transform pos: -0.5,-19.5 parent: 2 - - uid: 5843 + - uid: 1174 components: - type: Transform pos: -0.5,-25.5 parent: 2 - - uid: 5845 + - uid: 1175 components: - type: Transform pos: -1.5,-25.5 parent: 2 - - uid: 5846 + - uid: 1176 components: - type: Transform pos: 1.5,-25.5 parent: 2 - - uid: 5847 + - uid: 1177 components: - type: Transform pos: 2.5,-25.5 parent: 2 - - uid: 5848 + - uid: 1178 components: - type: Transform pos: 1.5,-19.5 parent: 2 - - uid: 5849 + - uid: 1179 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 5850 + - uid: 1180 components: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 5853 + - uid: 1181 components: - type: Transform pos: -1.5,-42.5 parent: 2 - - uid: 5854 + - uid: 1182 components: - type: Transform pos: -0.5,-42.5 parent: 2 - - uid: 5855 + - uid: 1183 components: - type: Transform pos: 0.5,-42.5 parent: 2 - - uid: 5856 + - uid: 1184 components: - type: Transform pos: 0.5,-43.5 parent: 2 - - uid: 5857 + - uid: 1185 components: - type: Transform pos: 0.5,-44.5 parent: 2 - - uid: 5858 + - uid: 1186 components: - type: Transform pos: 0.5,-45.5 parent: 2 - - uid: 5859 + - uid: 1187 components: - type: Transform pos: 0.5,-46.5 parent: 2 - - uid: 5860 + - uid: 1188 components: - type: Transform pos: 2.5,-46.5 parent: 2 - - uid: 5861 + - uid: 1189 components: - type: Transform pos: -0.5,-46.5 parent: 2 - - uid: 5862 + - uid: 1190 components: - type: Transform pos: -1.5,-46.5 parent: 2 - - uid: 5863 + - uid: 1191 components: - type: Transform pos: 0.5,-47.5 parent: 2 - - uid: 5865 + - uid: 1192 components: - type: Transform pos: 1.5,-43.5 parent: 2 - - uid: 5866 + - uid: 1193 components: - type: Transform pos: 2.5,-43.5 parent: 2 - - uid: 5867 + - uid: 1194 components: - type: Transform pos: 3.5,-43.5 parent: 2 - - uid: 5868 + - uid: 1195 components: - type: Transform pos: 4.5,-43.5 parent: 2 - - uid: 5869 + - uid: 1196 components: - type: Transform pos: 5.5,-43.5 parent: 2 - - uid: 5870 + - uid: 1197 components: - type: Transform pos: 6.5,-43.5 parent: 2 - - uid: 5871 + - uid: 1198 components: - type: Transform pos: 7.5,-43.5 parent: 2 - - uid: 5874 + - uid: 1199 components: - type: Transform pos: 5.5,-42.5 parent: 2 - - uid: 5875 + - uid: 1200 components: - type: Transform pos: 5.5,-41.5 parent: 2 - - uid: 5876 + - uid: 1201 components: - type: Transform pos: 5.5,-40.5 parent: 2 - - uid: 5877 + - uid: 1202 components: - type: Transform pos: 5.5,-39.5 parent: 2 - - uid: 5878 + - uid: 1203 components: - type: Transform pos: 5.5,-38.5 parent: 2 - - uid: 5879 + - uid: 1204 components: - type: Transform pos: 5.5,-37.5 parent: 2 - - uid: 5880 + - uid: 1205 components: - type: Transform pos: 5.5,-36.5 parent: 2 - - uid: 5882 + - uid: 1206 components: - type: Transform pos: 4.5,-37.5 parent: 2 - - uid: 5883 + - uid: 1207 components: - type: Transform pos: 3.5,-37.5 parent: 2 - - uid: 5885 + - uid: 1208 components: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 5886 + - uid: 1209 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 5887 + - uid: 1210 components: - type: Transform pos: 0.5,-37.5 parent: 2 - - uid: 5888 + - uid: 1211 components: - type: Transform pos: 6.5,-36.5 parent: 2 - - uid: 5889 + - uid: 1212 components: - type: Transform pos: 7.5,-36.5 parent: 2 - - uid: 5890 + - uid: 1213 components: - type: Transform pos: 0.5,-39.5 parent: 2 - - uid: 5891 + - uid: 1214 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 5892 + - uid: 1215 components: - type: Transform pos: 0.5,-41.5 parent: 2 - - uid: 5893 + - uid: 1216 components: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 5895 + - uid: 1217 components: - type: Transform pos: 0.5,-35.5 parent: 2 - - uid: 5896 + - uid: 1218 components: - type: Transform pos: 1.5,-35.5 parent: 2 - - uid: 5897 + - uid: 1219 components: - type: Transform pos: 2.5,-35.5 parent: 2 - - uid: 5898 + - uid: 1220 components: - type: Transform pos: 2.5,-34.5 parent: 2 - - uid: 5899 + - uid: 1221 components: - type: Transform pos: 3.5,-34.5 parent: 2 - - uid: 5900 + - uid: 1222 components: - type: Transform pos: 4.5,-34.5 parent: 2 - - uid: 5901 + - uid: 1223 components: - type: Transform pos: 5.5,-34.5 parent: 2 - - uid: 5902 + - uid: 1224 components: - type: Transform pos: 6.5,-34.5 parent: 2 - - uid: 5903 + - uid: 1225 components: - type: Transform pos: 6.5,-33.5 parent: 2 - - uid: 5904 + - uid: 1226 components: - type: Transform pos: 6.5,-32.5 parent: 2 - - uid: 5905 + - uid: 1227 components: - type: Transform pos: 6.5,-31.5 parent: 2 - - uid: 5906 + - uid: 1228 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 5907 + - uid: 1229 components: - type: Transform pos: 6.5,-30.5 parent: 2 - - uid: 5908 + - uid: 1230 components: - type: Transform pos: 6.5,-29.5 parent: 2 - - uid: 5909 + - uid: 1231 components: - type: Transform pos: 7.5,-29.5 parent: 2 - - uid: 5910 + - uid: 1232 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - uid: 5911 + - uid: 1233 components: - type: Transform pos: 5.5,-28.5 parent: 2 - - uid: 5912 + - uid: 1234 components: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 5913 + - uid: 1235 components: - type: Transform pos: 5.5,-26.5 parent: 2 - - uid: 5914 + - uid: 1236 components: - type: Transform pos: 5.5,-25.5 parent: 2 - - uid: 5915 + - uid: 1237 components: - type: Transform pos: 5.5,-24.5 parent: 2 - - uid: 5916 + - uid: 1238 components: - type: Transform pos: 5.5,-23.5 parent: 2 - - uid: 5917 + - uid: 1239 components: - type: Transform pos: 5.5,-22.5 parent: 2 - - uid: 5918 + - uid: 1240 components: - type: Transform pos: 5.5,-21.5 parent: 2 - - uid: 5919 + - uid: 1241 components: - type: Transform pos: 5.5,-20.5 parent: 2 - - uid: 5920 + - uid: 1242 components: - type: Transform pos: 5.5,-19.5 parent: 2 - - uid: 5921 + - uid: 1243 components: - type: Transform pos: 5.5,-18.5 parent: 2 - - uid: 5922 + - uid: 1244 components: - type: Transform pos: 5.5,-17.5 parent: 2 - - uid: 5923 + - uid: 1245 components: - type: Transform pos: 5.5,-16.5 parent: 2 - - uid: 5924 + - uid: 1246 components: - type: Transform pos: 5.5,-15.5 parent: 2 - - uid: 5927 + - uid: 1247 components: - type: Transform pos: -0.5,-32.5 parent: 2 - - uid: 5928 + - uid: 1248 components: - type: Transform pos: -1.5,-32.5 parent: 2 - - uid: 5929 + - uid: 1249 components: - type: Transform pos: -2.5,-32.5 parent: 2 - - uid: 5930 + - uid: 1250 components: - type: Transform pos: -3.5,-32.5 parent: 2 - - uid: 5931 + - uid: 1251 components: - type: Transform pos: -4.5,-32.5 parent: 2 - - uid: 5932 + - uid: 1252 components: - type: Transform pos: -5.5,-30.5 parent: 2 - - uid: 5933 + - uid: 1253 components: - type: Transform pos: -5.5,-28.5 parent: 2 - - uid: 5934 + - uid: 1254 components: - type: Transform pos: -5.5,-32.5 parent: 2 - - uid: 5935 + - uid: 1255 components: - type: Transform pos: 1.5,-32.5 parent: 2 - - uid: 5936 + - uid: 1256 components: - type: Transform pos: 2.5,-32.5 parent: 2 - - uid: 5937 + - uid: 1257 components: - type: Transform pos: 3.5,-32.5 parent: 2 - - uid: 5938 + - uid: 1258 components: - type: Transform pos: -0.5,-33.5 parent: 2 - - uid: 5939 + - uid: 1259 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 5940 + - uid: 1260 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 5941 + - uid: 1261 components: - type: Transform pos: -2.5,-34.5 parent: 2 - - uid: 5942 + - uid: 1262 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 5943 + - uid: 1263 components: - type: Transform pos: -4.5,-34.5 parent: 2 - - uid: 5944 + - uid: 1264 components: - type: Transform pos: -4.5,-35.5 parent: 2 - - uid: 5945 + - uid: 1265 components: - type: Transform pos: -4.5,-36.5 parent: 2 - - uid: 5946 + - uid: 1266 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 5947 + - uid: 1267 components: - type: Transform pos: -4.5,-38.5 parent: 2 - - uid: 5948 + - uid: 1268 components: - type: Transform pos: -4.5,-39.5 parent: 2 - - uid: 5949 + - uid: 1269 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 5950 + - uid: 1270 components: - type: Transform pos: -4.5,-41.5 parent: 2 - - uid: 5951 + - uid: 1271 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 5952 + - uid: 1272 components: - type: Transform pos: -4.5,-43.5 parent: 2 - - uid: 5953 + - uid: 1273 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 5954 + - uid: 1274 components: - type: Transform pos: -4.5,-45.5 parent: 2 - - uid: 5955 + - uid: 1275 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 5956 + - uid: 1276 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 5957 + - uid: 1277 components: - type: Transform pos: -5.5,-43.5 parent: 2 - - uid: 5958 + - uid: 1278 components: - type: Transform pos: -6.5,-43.5 parent: 2 - - uid: 5964 + - uid: 1279 components: - type: Transform pos: 2.5,-37.5 parent: 2 - - uid: 5966 + - uid: 1280 components: - type: Transform pos: 5.5,-44.5 parent: 2 - - uid: 5967 + - uid: 1281 components: - type: Transform pos: 3.5,-44.5 parent: 2 - - uid: 5968 + - uid: 1282 components: - type: Transform pos: -2.5,-45.5 parent: 2 - - uid: 6017 + - uid: 1283 components: - type: Transform pos: 0.5,-56.5 parent: 2 - - uid: 6018 + - uid: 1284 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - uid: 6020 + - uid: 1285 components: - type: Transform pos: 2.5,-56.5 parent: 2 - - uid: 6021 + - uid: 1286 components: - type: Transform pos: 0.5,-55.5 parent: 2 - - uid: 6022 + - uid: 1287 components: - type: Transform pos: 0.5,-54.5 parent: 2 - - uid: 6023 + - uid: 1288 components: - type: Transform pos: 0.5,-53.5 parent: 2 - - uid: 6024 + - uid: 1289 components: - type: Transform pos: 0.5,-52.5 parent: 2 - - uid: 6025 + - uid: 1290 components: - type: Transform pos: 0.5,-51.5 parent: 2 - - uid: 6026 + - uid: 1291 components: - type: Transform pos: 1.5,-52.5 parent: 2 - - uid: 6027 + - uid: 1292 components: - type: Transform pos: -0.5,-52.5 parent: 2 - - uid: 6028 + - uid: 1293 components: - type: Transform pos: -1.5,-52.5 parent: 2 - - uid: 6029 + - uid: 1294 components: - type: Transform pos: 0.5,-57.5 parent: 2 - - uid: 6030 + - uid: 1295 components: - type: Transform pos: -1.5,-58.5 parent: 2 - - uid: 6031 + - uid: 1296 components: - type: Transform pos: 2.5,-63.5 parent: 2 - - uid: 6032 + - uid: 1297 components: - type: Transform pos: 3.5,-63.5 parent: 2 - - uid: 6033 + - uid: 1298 components: - type: Transform pos: 4.5,-63.5 parent: 2 - - uid: 6034 + - uid: 1299 components: - type: Transform pos: -1.5,-64.5 parent: 2 - - uid: 6035 + - uid: 1300 components: - type: Transform pos: 1.5,-63.5 parent: 2 - - uid: 6037 + - uid: 1301 components: - type: Transform pos: -1.5,-63.5 parent: 2 - - uid: 6039 + - uid: 1302 components: - type: Transform pos: -1.5,-62.5 parent: 2 - - uid: 6040 + - uid: 1303 components: - type: Transform pos: -1.5,-61.5 parent: 2 - - uid: 6042 + - uid: 1304 components: - type: Transform pos: -0.5,-61.5 parent: 2 - - uid: 6043 + - uid: 1305 components: - type: Transform pos: 0.5,-61.5 parent: 2 - - uid: 6044 + - uid: 1306 components: - type: Transform pos: 0.5,-64.5 parent: 2 - - uid: 6045 + - uid: 1307 components: - type: Transform pos: 1.5,-64.5 parent: 2 - - uid: 6047 + - uid: 1308 components: - type: Transform pos: -2.5,-58.5 parent: 2 - - uid: 6048 + - uid: 1309 components: - type: Transform pos: -3.5,-58.5 parent: 2 - - uid: 6049 + - uid: 1310 components: - type: Transform pos: -4.5,-58.5 parent: 2 - - uid: 6050 + - uid: 1311 components: - type: Transform pos: -5.5,-58.5 parent: 2 - - uid: 6051 + - uid: 1312 components: - type: Transform pos: -5.5,-57.5 parent: 2 - - uid: 6053 + - uid: 1313 components: - type: Transform pos: -5.5,-55.5 parent: 2 - - uid: 6054 + - uid: 1314 components: - type: Transform pos: -5.5,-54.5 parent: 2 - - uid: 6055 + - uid: 1315 components: - type: Transform pos: -4.5,-54.5 parent: 2 - - uid: 6056 + - uid: 1316 components: - type: Transform pos: -3.5,-54.5 parent: 2 - - uid: 6057 + - uid: 1317 components: - type: Transform pos: -2.5,-54.5 parent: 2 - - uid: 6058 + - uid: 1318 components: - type: Transform pos: -5.5,-63.5 parent: 2 - - uid: 6059 + - uid: 1319 components: - type: Transform pos: -5.5,-64.5 parent: 2 - - uid: 6060 + - uid: 1320 components: - type: Transform pos: -5.5,-65.5 parent: 2 - - uid: 6063 + - uid: 1321 components: - type: Transform pos: -1.5,-71.5 parent: 2 - - uid: 6064 + - uid: 1322 components: - type: Transform pos: -2.5,-71.5 parent: 2 - - uid: 6065 + - uid: 1323 components: - type: Transform pos: -3.5,-71.5 parent: 2 - - uid: 6066 + - uid: 1324 components: - type: Transform pos: -4.5,-71.5 parent: 2 - - uid: 6067 + - uid: 1325 components: - type: Transform pos: -4.5,-70.5 parent: 2 - - uid: 6070 + - uid: 1326 components: - type: Transform pos: -4.5,-72.5 parent: 2 - - uid: 6071 + - uid: 1327 components: - type: Transform pos: -5.5,-71.5 parent: 2 - - uid: 6072 + - uid: 1328 components: - type: Transform pos: -5.5,-66.5 parent: 2 - - uid: 6073 + - uid: 1329 components: - type: Transform pos: -5.5,-67.5 parent: 2 - - uid: 6074 + - uid: 1330 components: - type: Transform pos: -4.5,-67.5 parent: 2 - - uid: 6075 + - uid: 1331 components: - type: Transform pos: -3.5,-67.5 parent: 2 - - uid: 6076 + - uid: 1332 components: - type: Transform pos: -2.5,-67.5 parent: 2 - - uid: 6077 + - uid: 1333 components: - type: Transform pos: -1.5,-67.5 parent: 2 - - uid: 6078 + - uid: 1334 components: - type: Transform pos: -0.5,-67.5 parent: 2 - - uid: 6079 + - uid: 1335 components: - type: Transform pos: 0.5,-67.5 parent: 2 - - uid: 6080 + - uid: 1336 components: - type: Transform pos: 0.5,-68.5 parent: 2 - - uid: 6081 + - uid: 1337 components: - type: Transform pos: 0.5,-69.5 parent: 2 - - uid: 6082 + - uid: 1338 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 6083 + - uid: 1339 components: - type: Transform pos: 0.5,-71.5 parent: 2 - - uid: 6084 + - uid: 1340 components: - type: Transform pos: 0.5,-72.5 parent: 2 - - uid: 6085 + - uid: 1341 components: - type: Transform pos: 0.5,-73.5 parent: 2 - - uid: 6086 + - uid: 1342 components: - type: Transform pos: 0.5,-74.5 parent: 2 - - uid: 6087 + - uid: 1343 components: - type: Transform pos: 1.5,-73.5 parent: 2 - - uid: 6088 + - uid: 1344 components: - type: Transform pos: -0.5,-73.5 parent: 2 - - uid: 6089 + - uid: 1345 components: - type: Transform pos: -1.5,-73.5 parent: 2 - - uid: 6090 + - uid: 1346 components: - type: Transform pos: 2.5,-73.5 parent: 2 - - uid: 6091 + - uid: 1347 components: - type: Transform pos: 1.5,-68.5 parent: 2 - - uid: 6092 + - uid: 1348 components: - type: Transform pos: 2.5,-68.5 parent: 2 - - uid: 6093 + - uid: 1349 components: - type: Transform pos: 3.5,-68.5 parent: 2 - - uid: 6094 + - uid: 1350 components: - type: Transform pos: 4.5,-68.5 parent: 2 - - uid: 6095 + - uid: 1351 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 6096 + - uid: 1352 components: - type: Transform pos: 6.5,-68.5 parent: 2 - - uid: 6097 + - uid: 1353 components: - type: Transform pos: 6.5,-69.5 parent: 2 - - uid: 6098 + - uid: 1354 components: - type: Transform pos: 6.5,-70.5 parent: 2 - - uid: 6099 + - uid: 1355 components: - type: Transform pos: 6.5,-71.5 parent: 2 - - uid: 6100 + - uid: 1356 components: - type: Transform pos: 5.5,-71.5 parent: 2 - - uid: 6101 + - uid: 1357 components: - type: Transform pos: 5.5,-72.5 parent: 2 - - uid: 6102 + - uid: 1358 components: - type: Transform pos: 5.5,-73.5 parent: 2 - - uid: 6103 + - uid: 1359 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 6104 + - uid: 1360 components: - type: Transform pos: 5.5,-63.5 parent: 2 - - uid: 6105 + - uid: 1361 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 6106 + - uid: 1362 components: - type: Transform pos: 6.5,-62.5 parent: 2 - - uid: 6107 + - uid: 1363 components: - type: Transform pos: 6.5,-61.5 parent: 2 - - uid: 6108 + - uid: 1364 components: - type: Transform pos: 6.5,-60.5 parent: 2 - - uid: 6109 + - uid: 1365 components: - type: Transform pos: 6.5,-59.5 parent: 2 - - uid: 6110 + - uid: 1366 components: - type: Transform pos: 6.5,-58.5 parent: 2 - - uid: 6111 + - uid: 1367 components: - type: Transform pos: 6.5,-57.5 parent: 2 - - uid: 6112 + - uid: 1368 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 6113 + - uid: 1369 components: - type: Transform pos: 5.5,-56.5 parent: 2 - - uid: 6114 + - uid: 1370 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 6115 + - uid: 1371 components: - type: Transform pos: 5.5,-54.5 parent: 2 - - uid: 6116 + - uid: 1372 components: - type: Transform pos: 5.5,-53.5 parent: 2 - - uid: 6117 + - uid: 1373 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 6118 + - uid: 1374 components: - type: Transform pos: 3.5,-54.5 parent: 2 - - uid: 6119 + - uid: 1375 components: - type: Transform pos: 0.5,-78.5 parent: 2 - - uid: 6120 + - uid: 1376 components: - type: Transform pos: 0.5,-79.5 parent: 2 - - uid: 6121 + - uid: 1377 components: - type: Transform pos: 0.5,-80.5 parent: 2 - - uid: 6122 + - uid: 1378 components: - type: Transform pos: 0.5,-81.5 parent: 2 - - uid: 6123 + - uid: 1379 components: - type: Transform pos: 1.5,-79.5 parent: 2 - - uid: 6124 + - uid: 1380 components: - type: Transform pos: 2.5,-79.5 parent: 2 - - uid: 6125 + - uid: 1381 components: - type: Transform pos: -0.5,-79.5 parent: 2 - - uid: 6126 + - uid: 1382 components: - type: Transform pos: -1.5,-79.5 parent: 2 - - uid: 6127 + - uid: 1383 components: - type: Transform pos: -4.5,-73.5 parent: 2 - - uid: 6128 + - uid: 1384 components: - type: Transform pos: -2.5,-72.5 parent: 2 - - uid: 6163 + - uid: 1385 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 6164 + - uid: 1386 components: - type: Transform pos: -3.5,-81.5 parent: 2 - - uid: 6165 + - uid: 1387 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 6166 + - uid: 1388 components: - type: Transform pos: -3.5,-83.5 parent: 2 - - uid: 6167 + - uid: 1389 components: - type: Transform pos: -3.5,-84.5 parent: 2 - - uid: 6168 + - uid: 1390 components: - type: Transform pos: -3.5,-85.5 parent: 2 - - uid: 6169 + - uid: 1391 components: - type: Transform pos: -3.5,-86.5 parent: 2 - - uid: 6170 + - uid: 1392 components: - type: Transform pos: -4.5,-86.5 parent: 2 - - uid: 6171 + - uid: 1393 components: - type: Transform pos: -5.5,-86.5 parent: 2 - - uid: 6172 + - uid: 1394 components: - type: Transform pos: -6.5,-86.5 parent: 2 - - uid: 6173 + - uid: 1395 components: - type: Transform pos: -7.5,-86.5 parent: 2 - - uid: 6174 + - uid: 1396 components: - type: Transform pos: -8.5,-86.5 parent: 2 - - uid: 6175 + - uid: 1397 components: - type: Transform pos: -7.5,-85.5 parent: 2 - - uid: 6176 + - uid: 1398 components: - type: Transform pos: -7.5,-84.5 parent: 2 - - uid: 6177 + - uid: 1399 components: - type: Transform pos: -7.5,-87.5 parent: 2 - - uid: 6178 + - uid: 1400 components: - type: Transform pos: -7.5,-88.5 parent: 2 - - uid: 6179 + - uid: 1401 components: - type: Transform pos: -5.5,-87.5 parent: 2 - - uid: 6180 + - uid: 1402 components: - type: Transform pos: -5.5,-88.5 parent: 2 - - uid: 6181 + - uid: 1403 components: - type: Transform pos: -5.5,-85.5 parent: 2 - - uid: 6182 + - uid: 1404 components: - type: Transform pos: -5.5,-84.5 parent: 2 - - uid: 6183 + - uid: 1405 components: - type: Transform pos: -9.5,-86.5 parent: 2 - - uid: 6184 + - uid: 1406 components: - type: Transform pos: -7.5,-89.5 parent: 2 - - uid: 6185 + - uid: 1407 components: - type: Transform pos: -7.5,-83.5 parent: 2 - - uid: 6187 + - uid: 1408 components: - type: Transform pos: 1.5,-219.5 parent: 2 - - uid: 6189 + - uid: 1409 components: - type: Transform pos: -3.5,-89.5 parent: 2 - - uid: 6190 + - uid: 1410 components: - type: Transform pos: -3.5,-90.5 parent: 2 - - uid: 6191 + - uid: 1411 components: - type: Transform pos: -3.5,-91.5 parent: 2 - - uid: 6192 + - uid: 1412 components: - type: Transform pos: -3.5,-92.5 parent: 2 - - uid: 6193 + - uid: 1413 components: - type: Transform pos: -3.5,-93.5 parent: 2 - - uid: 6194 + - uid: 1414 components: - type: Transform pos: 3.5,-97.5 parent: 2 - - uid: 6196 + - uid: 1415 components: - type: Transform pos: -2.5,-91.5 parent: 2 - - uid: 6197 + - uid: 1416 components: - type: Transform pos: -4.5,-91.5 parent: 2 - - uid: 6199 + - uid: 1417 components: - type: Transform pos: -0.5,-84.5 parent: 2 - - uid: 6200 + - uid: 1418 components: - type: Transform pos: -2.5,-93.5 parent: 2 - - uid: 6201 + - uid: 1419 components: - type: Transform pos: -4.5,-93.5 parent: 2 - - uid: 6204 + - uid: 1420 components: - type: Transform pos: -2.5,-86.5 parent: 2 - - uid: 6206 + - uid: 1421 components: - type: Transform pos: -1.5,-86.5 parent: 2 - - uid: 6207 + - uid: 1422 components: - type: Transform pos: -0.5,-86.5 parent: 2 - - uid: 6208 + - uid: 1423 components: - type: Transform pos: -0.5,-85.5 parent: 2 - - uid: 6209 + - uid: 1424 components: - type: Transform pos: 0.5,-86.5 parent: 2 - - uid: 6210 + - uid: 1425 components: - type: Transform pos: 1.5,-86.5 parent: 2 - - uid: 6211 + - uid: 1426 components: - type: Transform pos: 1.5,-87.5 parent: 2 - - uid: 6212 + - uid: 1427 components: - type: Transform pos: 1.5,-88.5 parent: 2 - - uid: 6213 + - uid: 1428 components: - type: Transform pos: 1.5,-89.5 parent: 2 - - uid: 6214 + - uid: 1429 components: - type: Transform pos: 1.5,-90.5 parent: 2 - - uid: 6215 + - uid: 1430 components: - type: Transform pos: 1.5,-91.5 parent: 2 - - uid: 6216 + - uid: 1431 components: - type: Transform pos: 1.5,-92.5 parent: 2 - - uid: 6217 + - uid: 1432 components: - type: Transform pos: 0.5,-92.5 parent: 2 - - uid: 6218 + - uid: 1433 components: - type: Transform pos: 2.5,-97.5 parent: 2 - - uid: 6219 + - uid: 1434 components: - type: Transform pos: 1.5,-97.5 parent: 2 - - uid: 6220 + - uid: 1435 components: - type: Transform pos: 0.5,-97.5 parent: 2 - - uid: 6221 + - uid: 1436 components: - type: Transform pos: -0.5,-97.5 parent: 2 - - uid: 6222 + - uid: 1437 components: - type: Transform pos: -1.5,-97.5 parent: 2 - - uid: 6223 + - uid: 1438 components: - type: Transform pos: -2.5,-97.5 parent: 2 - - uid: 6224 + - uid: 1439 components: - type: Transform pos: -3.5,-97.5 parent: 2 - - uid: 6225 + - uid: 1440 components: - type: Transform pos: -4.5,-97.5 parent: 2 - - uid: 6226 + - uid: 1441 components: - type: Transform pos: -5.5,-97.5 parent: 2 - - uid: 6227 + - uid: 1442 components: - type: Transform pos: -4.5,-96.5 parent: 2 - - uid: 6228 + - uid: 1443 components: - type: Transform pos: -2.5,-96.5 parent: 2 - - uid: 6229 + - uid: 1444 components: - type: Transform pos: -4.5,-99.5 parent: 2 - - uid: 6230 + - uid: 1445 components: - type: Transform pos: -4.5,-98.5 parent: 2 - - uid: 6232 + - uid: 1446 components: - type: Transform pos: -2.5,-98.5 parent: 2 - - uid: 6233 + - uid: 1447 components: - type: Transform pos: 0.5,-96.5 parent: 2 - - uid: 6234 + - uid: 1448 components: - type: Transform pos: 0.5,-95.5 parent: 2 - - uid: 6235 + - uid: 1449 components: - type: Transform pos: 2.5,-96.5 parent: 2 - - uid: 6236 + - uid: 1450 components: - type: Transform pos: 2.5,-95.5 parent: 2 - - uid: 6237 + - uid: 1451 components: - type: Transform pos: 4.5,-96.5 parent: 2 - - uid: 6238 + - uid: 1452 components: - type: Transform pos: 4.5,-95.5 parent: 2 - - uid: 6240 + - uid: 1453 components: - type: Transform pos: 6.5,-96.5 parent: 2 - - uid: 6241 + - uid: 1454 components: - type: Transform pos: 6.5,-95.5 parent: 2 - - uid: 6242 + - uid: 1455 components: - type: Transform pos: 6.5,-94.5 parent: 2 - - uid: 6243 + - uid: 1456 components: - type: Transform pos: 6.5,-93.5 parent: 2 - - uid: 6244 + - uid: 1457 components: - type: Transform pos: 6.5,-92.5 parent: 2 - - uid: 6245 + - uid: 1458 components: - type: Transform pos: 6.5,-91.5 parent: 2 - - uid: 6246 + - uid: 1459 components: - type: Transform pos: 6.5,-90.5 parent: 2 - - uid: 6247 + - uid: 1460 components: - type: Transform pos: 6.5,-89.5 parent: 2 - - uid: 6248 + - uid: 1461 components: - type: Transform pos: 6.5,-88.5 parent: 2 - - uid: 6249 + - uid: 1462 components: - type: Transform pos: 6.5,-87.5 parent: 2 - - uid: 6250 + - uid: 1463 components: - type: Transform pos: 6.5,-86.5 parent: 2 - - uid: 6251 + - uid: 1464 components: - type: Transform pos: 6.5,-85.5 parent: 2 - - uid: 6252 + - uid: 1465 components: - type: Transform pos: 6.5,-84.5 parent: 2 - - uid: 6253 + - uid: 1466 components: - type: Transform pos: 6.5,-83.5 parent: 2 - - uid: 6254 + - uid: 1467 components: - type: Transform pos: 6.5,-82.5 parent: 2 - - uid: 6256 + - uid: 1468 components: - type: Transform pos: 4.5,-94.5 parent: 2 - - uid: 6257 + - uid: 1469 components: - type: Transform pos: 4.5,-93.5 parent: 2 - - uid: 6258 + - uid: 1470 components: - type: Transform pos: 4.5,-92.5 parent: 2 - - uid: 6259 + - uid: 1471 components: - type: Transform pos: 4.5,-91.5 parent: 2 - - uid: 6260 + - uid: 1472 components: - type: Transform pos: 4.5,-90.5 parent: 2 - - uid: 6261 + - uid: 1473 components: - type: Transform pos: 4.5,-89.5 parent: 2 - - uid: 6262 + - uid: 1474 components: - type: Transform pos: 4.5,-88.5 parent: 2 - - uid: 6263 + - uid: 1475 components: - type: Transform pos: 4.5,-87.5 parent: 2 - - uid: 6264 - components: - - type: Transform - pos: 4.5,-86.5 - parent: 2 - - uid: 6265 + - uid: 1476 components: - type: Transform pos: 4.5,-85.5 parent: 2 - - uid: 6266 + - uid: 1477 components: - type: Transform pos: 4.5,-84.5 parent: 2 - - uid: 6267 + - uid: 1478 components: - type: Transform pos: 4.5,-83.5 parent: 2 - - uid: 6268 + - uid: 1479 components: - type: Transform pos: 4.5,-82.5 parent: 2 - - uid: 6269 + - uid: 1480 components: - type: Transform pos: 4.5,-81.5 parent: 2 - - uid: 6270 + - uid: 1481 components: - type: Transform pos: 6.5,-81.5 parent: 2 - - uid: 6271 + - uid: 1482 components: - type: Transform pos: 3.5,-81.5 parent: 2 - - uid: 6272 + - uid: 1483 components: - type: Transform pos: 2.5,-81.5 parent: 2 - - uid: 6273 + - uid: 1484 components: - type: Transform pos: 1.5,-81.5 parent: 2 - - uid: 6275 + - uid: 1485 components: - type: Transform pos: 0.5,-100.5 parent: 2 - - uid: 6276 + - uid: 1486 components: - type: Transform pos: 1.5,-100.5 parent: 2 - - uid: 6277 + - uid: 1487 components: - type: Transform pos: 2.5,-100.5 parent: 2 - - uid: 6278 + - uid: 1488 components: - type: Transform pos: -0.5,-100.5 parent: 2 - - uid: 6279 + - uid: 1489 components: - type: Transform pos: -1.5,-100.5 parent: 2 - - uid: 6280 + - uid: 1490 components: - type: Transform pos: 0.5,-99.5 parent: 2 - - uid: 6281 + - uid: 1491 components: - type: Transform pos: 0.5,-101.5 parent: 2 - - uid: 6282 + - uid: 1492 components: - type: Transform pos: 0.5,-98.5 parent: 2 - - uid: 6303 + - uid: 1493 components: - type: Transform pos: 5.5,-161.5 parent: 2 - - uid: 6308 + - uid: 1494 components: - type: Transform pos: -4.5,-114.5 parent: 2 - - uid: 6309 + - uid: 1495 components: - type: Transform pos: -4.5,-115.5 parent: 2 - - uid: 6310 + - uid: 1496 components: - type: Transform pos: -4.5,-116.5 parent: 2 - - uid: 6311 + - uid: 1497 components: - type: Transform pos: -4.5,-117.5 parent: 2 - - uid: 6312 + - uid: 1498 components: - type: Transform pos: -4.5,-118.5 parent: 2 - - uid: 6313 + - uid: 1499 components: - type: Transform pos: -4.5,-119.5 parent: 2 - - uid: 6314 + - uid: 1500 components: - type: Transform pos: -4.5,-120.5 parent: 2 - - uid: 6315 + - uid: 1501 components: - type: Transform pos: -4.5,-121.5 parent: 2 - - uid: 6316 + - uid: 1502 components: - type: Transform pos: -4.5,-122.5 parent: 2 - - uid: 6317 + - uid: 1503 components: - type: Transform pos: -4.5,-123.5 parent: 2 - - uid: 6318 + - uid: 1504 components: - type: Transform pos: -4.5,-124.5 parent: 2 - - uid: 6319 + - uid: 1505 components: - type: Transform pos: -4.5,-125.5 parent: 2 - - uid: 6320 + - uid: 1506 components: - type: Transform pos: -5.5,-125.5 parent: 2 - - uid: 6321 + - uid: 1507 components: - type: Transform pos: -6.5,-125.5 parent: 2 - - uid: 6322 + - uid: 1508 components: - type: Transform pos: -7.5,-125.5 parent: 2 - - uid: 6323 + - uid: 1509 components: - type: Transform pos: -8.5,-125.5 parent: 2 - - uid: 6324 + - uid: 1510 components: - type: Transform pos: -5.5,-122.5 parent: 2 - - uid: 6325 + - uid: 1511 components: - type: Transform pos: -6.5,-122.5 parent: 2 - - uid: 6326 + - uid: 1512 components: - type: Transform pos: -7.5,-122.5 parent: 2 - - uid: 6327 + - uid: 1513 components: - type: Transform pos: -8.5,-122.5 parent: 2 - - uid: 6328 + - uid: 1514 components: - type: Transform pos: -5.5,-119.5 parent: 2 - - uid: 6329 + - uid: 1515 components: - type: Transform pos: -6.5,-119.5 parent: 2 - - uid: 6330 + - uid: 1516 components: - type: Transform pos: -7.5,-119.5 parent: 2 - - uid: 6331 + - uid: 1517 components: - type: Transform pos: -8.5,-119.5 parent: 2 - - uid: 6332 + - uid: 1518 components: - type: Transform pos: -5.5,-116.5 parent: 2 - - uid: 6333 + - uid: 1519 components: - type: Transform pos: -6.5,-116.5 parent: 2 - - uid: 6334 + - uid: 1520 components: - type: Transform pos: -7.5,-116.5 parent: 2 - - uid: 6335 + - uid: 1521 components: - type: Transform pos: -8.5,-116.5 parent: 2 - - uid: 6336 + - uid: 1522 components: - type: Transform pos: -5.5,-113.5 parent: 2 - - uid: 6337 + - uid: 1523 components: - type: Transform pos: -6.5,-113.5 parent: 2 - - uid: 6338 + - uid: 1524 components: - type: Transform pos: -7.5,-113.5 parent: 2 - - uid: 6339 + - uid: 1525 components: - type: Transform pos: -8.5,-113.5 parent: 2 - - uid: 6340 + - uid: 1526 components: - type: Transform pos: -5.5,-110.5 parent: 2 - - uid: 6341 + - uid: 1527 components: - type: Transform pos: -6.5,-110.5 parent: 2 - - uid: 6342 + - uid: 1528 components: - type: Transform pos: -7.5,-110.5 parent: 2 - - uid: 6343 + - uid: 1529 components: - type: Transform pos: -7.5,-109.5 parent: 2 - - uid: 6344 + - uid: 1530 components: - type: Transform pos: -7.5,-108.5 parent: 2 - - uid: 6345 + - uid: 1531 components: - type: Transform pos: -7.5,-107.5 parent: 2 - - uid: 6347 + - uid: 1532 components: - type: Transform pos: -6.5,-107.5 parent: 2 - - uid: 6349 + - uid: 1533 components: - type: Transform pos: -5.5,-107.5 parent: 2 - - uid: 6350 + - uid: 1534 components: - type: Transform pos: -4.5,-107.5 parent: 2 - - uid: 6351 + - uid: 1535 components: - type: Transform pos: -4.5,-106.5 parent: 2 - - uid: 6352 + - uid: 1536 components: - type: Transform pos: -8.5,-110.5 parent: 2 - - uid: 6353 + - uid: 1537 components: - type: Transform pos: -8.5,-107.5 parent: 2 - - uid: 6354 + - uid: 1538 components: - type: Transform pos: -3.5,-113.5 parent: 2 - - uid: 6355 + - uid: 1539 components: - type: Transform pos: -2.5,-113.5 parent: 2 - - uid: 6356 + - uid: 1540 components: - type: Transform pos: -1.5,-113.5 parent: 2 - - uid: 6357 + - uid: 1541 components: - type: Transform pos: -0.5,-113.5 parent: 2 - - uid: 6358 + - uid: 1542 components: - type: Transform pos: -0.5,-114.5 parent: 2 - - uid: 6360 + - uid: 1543 components: - type: Transform pos: -0.5,-112.5 parent: 2 - - uid: 6362 + - uid: 1544 components: - type: Transform pos: 0.5,-113.5 parent: 2 - - uid: 6363 + - uid: 1545 components: - type: Transform pos: 1.5,-115.5 parent: 2 - - uid: 6364 + - uid: 1546 components: - type: Transform pos: 1.5,-116.5 parent: 2 - - uid: 6365 + - uid: 1547 components: - type: Transform pos: 0.5,-116.5 parent: 2 - - uid: 6366 + - uid: 1548 components: - type: Transform pos: -0.5,-116.5 parent: 2 - - uid: 6367 + - uid: 1549 components: - type: Transform pos: 0.5,-117.5 parent: 2 - - uid: 6368 + - uid: 1550 components: - type: Transform pos: 0.5,-118.5 parent: 2 - - uid: 6369 + - uid: 1551 components: - type: Transform pos: 0.5,-119.5 parent: 2 - - uid: 6370 + - uid: 1552 components: - type: Transform pos: 0.5,-120.5 parent: 2 - - uid: 6371 + - uid: 1553 components: - type: Transform pos: -0.5,-119.5 parent: 2 - - uid: 6372 + - uid: 1554 components: - type: Transform pos: 1.5,-119.5 parent: 2 - - uid: 6373 + - uid: 1555 components: - type: Transform pos: 0.5,-121.5 parent: 2 - - uid: 6374 + - uid: 1556 components: - type: Transform pos: -1.5,-119.5 parent: 2 - - uid: 6375 + - uid: 1557 components: - type: Transform pos: 2.5,-119.5 parent: 2 - - uid: 6376 + - uid: 1558 components: - type: Transform pos: -3.5,-125.5 parent: 2 - - uid: 6377 + - uid: 1559 components: - type: Transform pos: -2.5,-125.5 parent: 2 - - uid: 6378 + - uid: 1560 components: - type: Transform pos: 0.5,-125.5 parent: 2 - - uid: 6379 + - uid: 1561 components: - type: Transform pos: 1.5,-125.5 parent: 2 - - uid: 6380 + - uid: 1562 components: - type: Transform pos: 2.5,-125.5 parent: 2 - - uid: 6381 + - uid: 1563 components: - type: Transform pos: 3.5,-125.5 parent: 2 - - uid: 6382 + - uid: 1564 components: - type: Transform pos: 4.5,-125.5 parent: 2 - - uid: 6383 + - uid: 1565 components: - type: Transform pos: 5.5,-125.5 parent: 2 - - uid: 6384 + - uid: 1566 components: - type: Transform pos: 6.5,-125.5 parent: 2 - - uid: 6385 + - uid: 1567 components: - type: Transform pos: 5.5,-112.5 parent: 2 - - uid: 6386 + - uid: 1568 components: - type: Transform pos: 5.5,-113.5 parent: 2 - - uid: 6387 + - uid: 1569 components: - type: Transform pos: 5.5,-114.5 parent: 2 - - uid: 6388 + - uid: 1570 components: - type: Transform pos: 5.5,-115.5 parent: 2 - - uid: 6391 + - uid: 1571 components: - type: Transform pos: 5.5,-117.5 parent: 2 - - uid: 6395 + - uid: 1572 components: - type: Transform pos: 8.5,-118.5 parent: 2 - - uid: 6396 + - uid: 1573 components: - type: Transform pos: 8.5,-116.5 parent: 2 - - uid: 6398 + - uid: 1574 components: - type: Transform pos: 6.5,-114.5 parent: 2 - - uid: 6399 + - uid: 1575 components: - type: Transform pos: 7.5,-114.5 parent: 2 - - uid: 6400 + - uid: 1576 components: - type: Transform pos: 8.5,-114.5 parent: 2 - - uid: 6401 + - uid: 1577 components: - type: Transform pos: 3.5,-113.5 parent: 2 - - uid: 6402 + - uid: 1578 components: - type: Transform pos: 3.5,-112.5 parent: 2 - - uid: 6403 + - uid: 1579 components: - type: Transform pos: 3.5,-111.5 parent: 2 - - uid: 6404 + - uid: 1580 components: - type: Transform pos: 3.5,-110.5 parent: 2 - - uid: 6405 + - uid: 1581 components: - type: Transform pos: 3.5,-109.5 parent: 2 - - uid: 6406 + - uid: 1582 components: - type: Transform pos: 3.5,-108.5 parent: 2 - - uid: 6407 + - uid: 1583 components: - type: Transform pos: 4.5,-108.5 parent: 2 - - uid: 6408 + - uid: 1584 components: - type: Transform pos: 5.5,-108.5 parent: 2 - - uid: 6409 + - uid: 1585 components: - type: Transform pos: 5.5,-107.5 parent: 2 - - uid: 6410 + - uid: 1586 components: - type: Transform pos: -4.5,-136.5 parent: 2 - - uid: 6411 + - uid: 1587 components: - type: Transform pos: 0.5,-105.5 parent: 2 - - uid: 6412 + - uid: 1588 components: - type: Transform pos: 0.5,-106.5 parent: 2 - - uid: 6413 + - uid: 1589 components: - type: Transform pos: 1.5,-106.5 parent: 2 - - uid: 6414 + - uid: 1590 components: - type: Transform pos: 2.5,-106.5 parent: 2 - - uid: 6415 + - uid: 1591 components: - type: Transform pos: -0.5,-106.5 parent: 2 - - uid: 6416 + - uid: 1592 components: - type: Transform pos: -1.5,-106.5 parent: 2 - - uid: 6417 + - uid: 1593 components: - type: Transform pos: 0.5,-107.5 parent: 2 - - uid: 6418 + - uid: 1594 components: - type: Transform pos: 0.5,-108.5 parent: 2 - - uid: 6419 + - uid: 1595 components: - type: Transform pos: 0.5,-109.5 parent: 2 - - uid: 6420 + - uid: 1596 components: - type: Transform pos: -0.5,-109.5 parent: 2 - - uid: 6421 + - uid: 1597 components: - type: Transform pos: -1.5,-109.5 parent: 2 - - uid: 6422 + - uid: 1598 components: - type: Transform pos: -2.5,-124.5 parent: 2 - - uid: 6423 + - uid: 1599 components: - type: Transform pos: 2.5,-124.5 parent: 2 - - uid: 6424 + - uid: 1600 components: - type: Transform pos: 5.5,-124.5 parent: 2 - - uid: 6425 + - uid: 1601 components: - type: Transform pos: 5.5,-123.5 parent: 2 - - uid: 6426 + - uid: 1602 components: - type: Transform pos: 5.5,-122.5 parent: 2 - - uid: 6427 + - uid: 1603 components: - type: Transform pos: 5.5,-121.5 parent: 2 - - uid: 6428 + - uid: 1604 components: - type: Transform pos: 5.5,-120.5 parent: 2 - - uid: 6429 + - uid: 1605 components: - type: Transform pos: 0.5,-126.5 parent: 2 - - uid: 6430 + - uid: 1606 components: - type: Transform pos: 0.5,-127.5 parent: 2 - - uid: 6431 + - uid: 1607 components: - type: Transform pos: -0.5,-127.5 parent: 2 - - uid: 6432 + - uid: 1608 components: - type: Transform pos: -1.5,-127.5 parent: 2 - - uid: 6433 + - uid: 1609 components: - type: Transform pos: 1.5,-127.5 parent: 2 - - uid: 6434 + - uid: 1610 components: - type: Transform pos: 2.5,-127.5 parent: 2 - - uid: 6435 + - uid: 1611 components: - type: Transform pos: 0.5,-128.5 parent: 2 - - uid: 6436 + - uid: 1612 components: - type: Transform pos: 0.5,-132.5 parent: 2 - - uid: 6437 + - uid: 1613 components: - type: Transform pos: 0.5,-133.5 parent: 2 - - uid: 6438 + - uid: 1614 components: - type: Transform pos: 0.5,-134.5 parent: 2 - - uid: 6439 + - uid: 1615 components: - type: Transform pos: 0.5,-135.5 parent: 2 - - uid: 6440 + - uid: 1616 components: - type: Transform pos: 1.5,-133.5 parent: 2 - - uid: 6441 + - uid: 1617 components: - type: Transform pos: 2.5,-133.5 parent: 2 - - uid: 6442 + - uid: 1618 components: - type: Transform pos: -0.5,-133.5 parent: 2 - - uid: 6443 + - uid: 1619 components: - type: Transform pos: -1.5,-133.5 parent: 2 - - uid: 6494 + - uid: 1620 components: - type: Transform pos: -3.5,-134.5 parent: 2 - - uid: 6495 + - uid: 1621 components: - type: Transform pos: -3.5,-135.5 parent: 2 - - uid: 6496 + - uid: 1622 components: - type: Transform pos: -3.5,-136.5 parent: 2 - - uid: 6497 + - uid: 1623 components: - type: Transform pos: -5.5,-136.5 parent: 2 - - uid: 6498 + - uid: 1624 components: - type: Transform pos: -2.5,-136.5 parent: 2 - - uid: 6499 + - uid: 1625 components: - type: Transform pos: 0.5,-151.5 parent: 2 - - uid: 6500 + - uid: 1626 components: - type: Transform pos: -4.5,-137.5 parent: 2 - - uid: 6501 + - uid: 1627 components: - type: Transform pos: -4.5,-138.5 parent: 2 - - uid: 6502 + - uid: 1628 components: - type: Transform pos: -4.5,-139.5 parent: 2 - - uid: 6503 + - uid: 1629 components: - type: Transform pos: -4.5,-140.5 parent: 2 - - uid: 6504 + - uid: 1630 components: - type: Transform pos: -4.5,-141.5 parent: 2 - - uid: 6505 + - uid: 1631 components: - type: Transform pos: -4.5,-142.5 parent: 2 - - uid: 6506 + - uid: 1632 components: - type: Transform pos: -4.5,-143.5 parent: 2 - - uid: 6507 + - uid: 1633 components: - type: Transform pos: -4.5,-144.5 parent: 2 - - uid: 6508 + - uid: 1634 components: - type: Transform pos: -3.5,-144.5 parent: 2 - - uid: 6510 + - uid: 1635 components: - type: Transform pos: -3.5,-145.5 parent: 2 - - uid: 6512 + - uid: 1636 components: - type: Transform pos: -3.5,-146.5 parent: 2 - - uid: 6513 + - uid: 1637 components: - type: Transform pos: -4.5,-146.5 parent: 2 - - uid: 6514 + - uid: 1638 components: - type: Transform pos: -4.5,-147.5 parent: 2 - - uid: 6515 + - uid: 1639 components: - type: Transform pos: -4.5,-148.5 parent: 2 - - uid: 6516 + - uid: 1640 components: - type: Transform pos: -5.5,-139.5 parent: 2 - - uid: 6517 + - uid: 1641 components: - type: Transform pos: -3.5,-148.5 parent: 2 - - uid: 6519 + - uid: 1642 components: - type: Transform pos: -5.5,-141.5 parent: 2 - - uid: 6520 + - uid: 1643 components: - type: Transform pos: -6.5,-141.5 parent: 2 - - uid: 6521 + - uid: 1644 components: - type: Transform pos: -6.5,-139.5 parent: 2 - - uid: 6522 + - uid: 1645 components: - type: Transform pos: -3.5,-139.5 parent: 2 - - uid: 6523 + - uid: 1646 components: - type: Transform pos: -2.5,-139.5 parent: 2 - - uid: 6524 + - uid: 1647 components: - type: Transform pos: -3.5,-141.5 parent: 2 - - uid: 6525 + - uid: 1648 components: - type: Transform pos: -2.5,-141.5 parent: 2 - - uid: 6526 + - uid: 1649 components: - type: Transform pos: -1.5,-141.5 parent: 2 - - uid: 6527 + - uid: 1650 components: - type: Transform pos: -1.5,-139.5 parent: 2 - - uid: 6528 + - uid: 1651 components: - type: Transform pos: -0.5,-139.5 parent: 2 - - uid: 6529 + - uid: 1652 components: - type: Transform pos: 0.5,-139.5 parent: 2 - - uid: 6530 + - uid: 1653 components: - type: Transform pos: 0.5,-138.5 parent: 2 - - uid: 6531 + - uid: 1654 components: - type: Transform pos: 0.5,-137.5 parent: 2 - - uid: 6532 + - uid: 1655 components: - type: Transform pos: 0.5,-136.5 parent: 2 - - uid: 6533 + - uid: 1656 components: - type: Transform pos: 6.5,-137.5 parent: 2 - - uid: 6534 + - uid: 1657 components: - type: Transform pos: 6.5,-138.5 parent: 2 - - uid: 6535 + - uid: 1658 components: - type: Transform pos: 5.5,-138.5 parent: 2 - - uid: 6536 + - uid: 1659 components: - type: Transform pos: 4.5,-138.5 parent: 2 - - uid: 6537 + - uid: 1660 components: - type: Transform pos: 3.5,-138.5 parent: 2 - - uid: 6538 + - uid: 1661 components: - type: Transform pos: 4.5,-139.5 parent: 2 - - uid: 6539 + - uid: 1662 components: - type: Transform pos: 4.5,-140.5 parent: 2 - - uid: 6540 + - uid: 1663 components: - type: Transform pos: 4.5,-141.5 parent: 2 - - uid: 6541 + - uid: 1664 components: - type: Transform pos: 4.5,-142.5 parent: 2 - - uid: 6542 + - uid: 1665 components: - type: Transform pos: 4.5,-143.5 parent: 2 - - uid: 6543 + - uid: 1666 components: - type: Transform pos: 4.5,-144.5 parent: 2 - - uid: 6544 + - uid: 1667 components: - type: Transform pos: 4.5,-145.5 parent: 2 - - uid: 6545 + - uid: 1668 components: - type: Transform pos: 4.5,-146.5 parent: 2 - - uid: 6546 + - uid: 1669 components: - type: Transform pos: 4.5,-147.5 parent: 2 - - uid: 6547 + - uid: 1670 components: - type: Transform pos: 6.5,-143.5 parent: 2 - - uid: 6548 + - uid: 1671 components: - type: Transform pos: 3.5,-143.5 parent: 2 - - uid: 6550 + - uid: 1672 components: - type: Transform pos: 2.5,-143.5 parent: 2 - - uid: 6554 + - uid: 1673 components: - type: Transform pos: 8.5,-138.5 parent: 2 - - uid: 6555 + - uid: 1674 components: - type: Transform pos: 8.5,-139.5 parent: 2 - - uid: 6556 + - uid: 1675 components: - type: Transform pos: 8.5,-140.5 parent: 2 - - uid: 6557 + - uid: 1676 components: - type: Transform pos: 8.5,-141.5 parent: 2 - - uid: 6558 + - uid: 1677 components: - type: Transform pos: 8.5,-142.5 parent: 2 - - uid: 6559 + - uid: 1678 components: - type: Transform pos: 8.5,-143.5 parent: 2 - - uid: 6560 + - uid: 1679 components: - type: Transform pos: 8.5,-144.5 parent: 2 - - uid: 6561 + - uid: 1680 components: - type: Transform pos: 8.5,-145.5 parent: 2 - - uid: 6562 + - uid: 1681 components: - type: Transform pos: 8.5,-146.5 parent: 2 - - uid: 6563 + - uid: 1682 components: - type: Transform pos: 8.5,-147.5 parent: 2 - - uid: 6564 + - uid: 1683 components: - type: Transform pos: 8.5,-148.5 parent: 2 - - uid: 6565 + - uid: 1684 components: - type: Transform pos: 8.5,-149.5 parent: 2 - - uid: 6566 + - uid: 1685 components: - type: Transform pos: 8.5,-150.5 parent: 2 - - uid: 6567 + - uid: 1686 components: - type: Transform pos: 8.5,-151.5 parent: 2 - - uid: 6568 + - uid: 1687 components: - type: Transform pos: 7.5,-151.5 parent: 2 - - uid: 6569 + - uid: 1688 components: - type: Transform pos: 7.5,-152.5 parent: 2 - - uid: 6571 + - uid: 1689 components: - type: Transform pos: 6.5,-151.5 parent: 2 - - uid: 6572 + - uid: 1690 components: - type: Transform pos: 5.5,-151.5 parent: 2 - - uid: 6574 + - uid: 1691 components: - type: Transform pos: 5.5,-152.5 parent: 2 - - uid: 6575 + - uid: 1692 components: - type: Transform pos: 5.5,-153.5 parent: 2 - - uid: 6576 + - uid: 1693 components: - type: Transform pos: 4.5,-152.5 parent: 2 - - uid: 6577 + - uid: 1694 components: - type: Transform pos: 5.5,-154.5 parent: 2 - - uid: 6578 + - uid: 1695 components: - type: Transform pos: 3.5,-152.5 parent: 2 - - uid: 6579 + - uid: 1696 components: - type: Transform pos: 2.5,-152.5 parent: 2 - - uid: 6580 + - uid: 1697 components: - type: Transform pos: 1.5,-152.5 parent: 2 - - uid: 6581 + - uid: 1698 components: - type: Transform pos: 0.5,-152.5 parent: 2 - - uid: 6582 + - uid: 1699 components: - type: Transform pos: 0.5,-153.5 parent: 2 - - uid: 6583 + - uid: 1700 components: - type: Transform pos: 0.5,-154.5 parent: 2 - - uid: 6584 + - uid: 1701 components: - type: Transform pos: 0.5,-155.5 parent: 2 - - uid: 6585 + - uid: 1702 components: - type: Transform pos: 1.5,-154.5 parent: 2 - - uid: 6586 + - uid: 1703 components: - type: Transform pos: -0.5,-154.5 parent: 2 - - uid: 6587 + - uid: 1704 components: - type: Transform pos: -1.5,-154.5 parent: 2 - - uid: 6588 + - uid: 1705 components: - type: Transform pos: 2.5,-154.5 parent: 2 - - uid: 6590 + - uid: 1706 components: - type: Transform pos: -0.5,-151.5 parent: 2 - - uid: 6591 + - uid: 1707 components: - type: Transform pos: -1.5,-151.5 parent: 2 - - uid: 6592 + - uid: 1708 components: - type: Transform pos: -2.5,-151.5 parent: 2 - - uid: 6593 + - uid: 1709 components: - type: Transform pos: -3.5,-151.5 parent: 2 - - uid: 6594 + - uid: 1710 components: - type: Transform pos: -4.5,-151.5 parent: 2 - - uid: 6595 + - uid: 1711 components: - type: Transform pos: -4.5,-152.5 parent: 2 - - uid: 6596 + - uid: 1712 components: - type: Transform pos: -4.5,-153.5 parent: 2 - - uid: 6597 + - uid: 1713 components: - type: Transform pos: -4.5,-154.5 parent: 2 - - uid: 6598 + - uid: 1714 components: - type: Transform pos: -4.5,-150.5 parent: 2 - - uid: 6599 + - uid: 1715 components: - type: Transform pos: -5.5,-150.5 parent: 2 - - uid: 6600 + - uid: 1716 components: - type: Transform pos: -5.5,-152.5 parent: 2 - - uid: 6601 + - uid: 1717 components: - type: Transform pos: -6.5,-152.5 parent: 2 - - uid: 6602 + - uid: 1718 components: - type: Transform pos: -6.5,-150.5 parent: 2 - - uid: 6603 + - uid: 1719 components: - type: Transform pos: -0.5,-141.5 parent: 2 - - uid: 6604 + - uid: 1720 components: - type: Transform pos: 0.5,-141.5 parent: 2 - - uid: 6605 + - uid: 1721 components: - type: Transform pos: 0.5,-142.5 parent: 2 - - uid: 6606 + - uid: 1722 components: - type: Transform pos: 0.5,-143.5 parent: 2 - - uid: 6607 + - uid: 1723 components: - type: Transform pos: 0.5,-144.5 parent: 2 - - uid: 6608 + - uid: 1724 components: - type: Transform pos: 0.5,-145.5 parent: 2 - - uid: 6609 + - uid: 1725 components: - type: Transform pos: 0.5,-146.5 parent: 2 - - uid: 6610 + - uid: 1726 components: - type: Transform pos: 0.5,-147.5 parent: 2 - - uid: 6611 + - uid: 1727 components: - type: Transform pos: 0.5,-148.5 parent: 2 - - uid: 6617 + - uid: 1728 components: - type: Transform pos: 4.5,-30.5 parent: 2 - - uid: 6633 + - uid: 1729 components: - type: Transform pos: -3.5,-220.5 parent: 2 - - uid: 6634 + - uid: 1730 components: - type: Transform pos: -3.5,-221.5 parent: 2 - - uid: 6635 + - uid: 1731 components: - type: Transform pos: 2.5,-219.5 parent: 2 - - uid: 6648 + - uid: 1732 components: - type: Transform pos: 17.5,-242.5 parent: 2 - - uid: 6649 + - uid: 1733 components: - type: Transform pos: 17.5,-241.5 parent: 2 - - uid: 6655 + - uid: 1734 components: - type: Transform pos: 10.5,-243.5 parent: 2 - - uid: 6656 + - uid: 1735 components: - type: Transform pos: 11.5,-243.5 parent: 2 - - uid: 6658 + - uid: 1736 components: - type: Transform pos: 17.5,-248.5 parent: 2 - - uid: 6672 + - uid: 1737 components: - type: Transform pos: -11.5,-167.5 parent: 2 - - uid: 6711 + - uid: 1738 components: - type: Transform pos: -8.5,-162.5 parent: 2 - - uid: 6713 + - uid: 1739 components: - type: Transform pos: -12.5,-162.5 parent: 2 - - uid: 6746 + - uid: 1740 components: - type: Transform pos: -9.5,-162.5 parent: 2 - - uid: 6747 + - uid: 1741 components: - type: Transform pos: -10.5,-162.5 parent: 2 - - uid: 6861 + - uid: 1742 components: - type: Transform pos: 5.5,-105.5 parent: 2 - - uid: 6874 + - uid: 1743 components: - type: Transform pos: -5.5,-308.5 parent: 2 - - uid: 6875 + - uid: 1744 components: - type: Transform pos: -6.5,-308.5 parent: 2 - - uid: 6909 + - uid: 1745 components: - type: Transform pos: -21.5,-242.5 parent: 2 - - uid: 6943 + - uid: 1746 components: - type: Transform pos: 2.5,-164.5 parent: 2 - - uid: 6944 + - uid: 1747 components: - type: Transform pos: 1.5,-164.5 parent: 2 - - uid: 6945 + - uid: 1748 components: - type: Transform pos: 1.5,-163.5 parent: 2 - - uid: 6946 + - uid: 1749 components: - type: Transform pos: 1.5,-162.5 parent: 2 - - uid: 6947 + - uid: 1750 components: - type: Transform pos: 2.5,-162.5 parent: 2 - - uid: 6948 + - uid: 1751 components: - type: Transform pos: 3.5,-162.5 parent: 2 - - uid: 6949 + - uid: 1752 components: - type: Transform pos: 4.5,-162.5 parent: 2 - - uid: 6950 + - uid: 1753 components: - type: Transform pos: 5.5,-162.5 parent: 2 - - uid: 6951 + - uid: 1754 components: - type: Transform pos: 6.5,-162.5 parent: 2 - - uid: 6952 + - uid: 1755 components: - type: Transform pos: 6.5,-163.5 parent: 2 - - uid: 6954 + - uid: 1756 components: - type: Transform pos: -0.5,-163.5 parent: 2 - - uid: 6955 + - uid: 1757 components: - type: Transform pos: -1.5,-163.5 parent: 2 - - uid: 6956 + - uid: 1758 components: - type: Transform pos: -2.5,-163.5 parent: 2 - - uid: 6957 + - uid: 1759 components: - type: Transform pos: -3.5,-163.5 parent: 2 - - uid: 6958 + - uid: 1760 components: - type: Transform pos: -4.5,-163.5 parent: 2 - - uid: 6959 + - uid: 1761 components: - type: Transform pos: -5.5,-163.5 parent: 2 - - uid: 6965 + - uid: 1762 components: - type: Transform pos: -6.5,-168.5 parent: 2 - - uid: 6966 + - uid: 1763 components: - type: Transform pos: -6.5,-169.5 parent: 2 - - uid: 6967 + - uid: 1764 components: - type: Transform pos: -0.5,-176.5 parent: 2 - - uid: 6968 + - uid: 1765 components: - type: Transform pos: 0.5,-176.5 parent: 2 - - uid: 6969 + - uid: 1766 components: - type: Transform pos: 0.5,-175.5 parent: 2 - - uid: 6970 + - uid: 1767 components: - type: Transform pos: 0.5,-174.5 parent: 2 - - uid: 6971 + - uid: 1768 components: - type: Transform pos: 0.5,-177.5 parent: 2 - - uid: 6972 + - uid: 1769 components: - type: Transform pos: -1.5,-174.5 parent: 2 - - uid: 6973 + - uid: 1770 components: - type: Transform pos: -1.5,-173.5 parent: 2 - - uid: 6974 + - uid: 1771 components: - type: Transform pos: -2.5,-173.5 parent: 2 - - uid: 6975 + - uid: 1772 components: - type: Transform pos: -3.5,-173.5 parent: 2 - - uid: 6976 + - uid: 1773 components: - type: Transform pos: -4.5,-173.5 parent: 2 - - uid: 6977 + - uid: 1774 components: - type: Transform pos: -1.5,-175.5 parent: 2 - - uid: 6978 + - uid: 1775 components: - type: Transform pos: -1.5,-176.5 parent: 2 - - uid: 6979 + - uid: 1776 components: - type: Transform pos: -2.5,-176.5 parent: 2 - - uid: 6980 + - uid: 1777 components: - type: Transform pos: -3.5,-176.5 parent: 2 - - uid: 6981 + - uid: 1778 components: - type: Transform pos: -4.5,-176.5 parent: 2 - - uid: 6982 + - uid: 1779 components: - type: Transform pos: 0.5,-178.5 parent: 2 - - uid: 6983 + - uid: 1780 components: - type: Transform pos: 0.5,-179.5 parent: 2 - - uid: 6984 + - uid: 1781 components: - type: Transform pos: 0.5,-180.5 parent: 2 - - uid: 6985 + - uid: 1782 components: - type: Transform pos: 0.5,-181.5 parent: 2 - - uid: 6986 + - uid: 1783 components: - type: Transform pos: 0.5,-182.5 parent: 2 - - uid: 6987 + - uid: 1784 components: - type: Transform pos: -4.5,-179.5 parent: 2 - - uid: 6988 + - uid: 1785 components: - type: Transform pos: -4.5,-180.5 parent: 2 - - uid: 6989 + - uid: 1786 components: - type: Transform pos: -5.5,-179.5 parent: 2 - - uid: 6990 + - uid: 1787 components: - type: Transform pos: -6.5,-179.5 parent: 2 - - uid: 6991 + - uid: 1788 components: - type: Transform pos: -6.5,-178.5 parent: 2 - - uid: 6992 + - uid: 1789 components: - type: Transform pos: -6.5,-177.5 parent: 2 - - uid: 6993 + - uid: 1790 components: - type: Transform pos: -6.5,-176.5 parent: 2 - - uid: 6994 + - uid: 1791 components: - type: Transform pos: -6.5,-175.5 parent: 2 - - uid: 6995 + - uid: 1792 components: - type: Transform pos: -6.5,-174.5 parent: 2 - - uid: 6996 + - uid: 1793 components: - type: Transform pos: 0.5,-165.5 parent: 2 - - uid: 6997 + - uid: 1794 components: - type: Transform pos: 1.5,-165.5 parent: 2 - - uid: 6998 + - uid: 1795 components: - type: Transform pos: -0.5,-165.5 parent: 2 - - uid: 6999 + - uid: 1796 components: - type: Transform pos: -1.5,-165.5 parent: 2 - - uid: 7000 + - uid: 1797 components: - type: Transform pos: -2.5,-165.5 parent: 2 - - uid: 7003 + - uid: 1798 components: - type: Transform pos: 1.5,-166.5 parent: 2 - - uid: 7004 + - uid: 1799 components: - type: Transform pos: 1.5,-167.5 parent: 2 - - uid: 7005 + - uid: 1800 components: - type: Transform pos: 1.5,-168.5 parent: 2 - - uid: 7006 + - uid: 1801 components: - type: Transform pos: 1.5,-169.5 parent: 2 - - uid: 7007 + - uid: 1802 components: - type: Transform pos: 0.5,-169.5 parent: 2 - - uid: 7008 + - uid: 1803 components: - type: Transform pos: -0.5,-169.5 parent: 2 - - uid: 7009 + - uid: 1804 components: - type: Transform pos: -1.5,-169.5 parent: 2 - - uid: 7010 + - uid: 1805 components: - type: Transform pos: -2.5,-169.5 parent: 2 - - uid: 7011 + - uid: 1806 components: - type: Transform pos: -3.5,-169.5 parent: 2 - - uid: 7012 + - uid: 1807 components: - type: Transform pos: 2.5,-167.5 parent: 2 - - uid: 7013 + - uid: 1808 components: - type: Transform pos: 3.5,-167.5 parent: 2 - - uid: 7014 + - uid: 1809 components: - type: Transform pos: 3.5,-168.5 parent: 2 - - uid: 7015 + - uid: 1810 components: - type: Transform pos: 4.5,-168.5 parent: 2 - - uid: 7016 + - uid: 1811 components: - type: Transform pos: 5.5,-168.5 parent: 2 - - uid: 7017 + - uid: 1812 components: - type: Transform pos: 6.5,-168.5 parent: 2 - - uid: 7018 + - uid: 1813 components: - type: Transform pos: 6.5,-166.5 parent: 2 - - uid: 7019 + - uid: 1814 components: - type: Transform pos: 6.5,-167.5 parent: 2 - - uid: 7020 + - uid: 1815 components: - type: Transform pos: 5.5,-166.5 parent: 2 - - uid: 7021 + - uid: 1816 components: - type: Transform pos: 4.5,-166.5 parent: 2 - - uid: 7022 + - uid: 1817 components: - type: Transform pos: 3.5,-166.5 parent: 2 - - uid: 7023 + - uid: 1818 components: - type: Transform pos: 0.5,-173.5 parent: 2 - - uid: 7024 + - uid: 1819 components: - type: Transform pos: 0.5,-172.5 parent: 2 - - uid: 7025 + - uid: 1820 components: - type: Transform pos: 0.5,-171.5 parent: 2 - - uid: 7026 + - uid: 1821 components: - type: Transform pos: 1.5,-175.5 parent: 2 - - uid: 7027 + - uid: 1822 components: - type: Transform pos: 2.5,-175.5 parent: 2 - - uid: 7028 + - uid: 1823 components: - type: Transform pos: 3.5,-175.5 parent: 2 - - uid: 7029 + - uid: 1824 components: - type: Transform pos: 4.5,-175.5 parent: 2 - - uid: 7030 + - uid: 1825 components: - type: Transform pos: 5.5,-175.5 parent: 2 - - uid: 7031 + - uid: 1826 components: - type: Transform pos: 6.5,-175.5 parent: 2 - - uid: 7032 + - uid: 1827 components: - type: Transform pos: 7.5,-175.5 parent: 2 - - uid: 7033 + - uid: 1828 components: - type: Transform pos: 7.5,-174.5 parent: 2 - - uid: 7034 + - uid: 1829 components: - type: Transform pos: 7.5,-173.5 parent: 2 - - uid: 7035 + - uid: 1830 components: - type: Transform pos: 7.5,-172.5 parent: 2 - - uid: 7036 + - uid: 1831 components: - type: Transform pos: 6.5,-172.5 parent: 2 - - uid: 7037 + - uid: 1832 components: - type: Transform pos: 5.5,-172.5 parent: 2 - - uid: 7038 + - uid: 1833 components: - type: Transform pos: 4.5,-172.5 parent: 2 - - uid: 7039 + - uid: 1834 components: - type: Transform pos: 4.5,-173.5 parent: 2 - - uid: 7040 + - uid: 1835 components: - type: Transform pos: 4.5,-174.5 parent: 2 - - uid: 7041 + - uid: 1836 components: - type: Transform pos: 7.5,-176.5 parent: 2 - - uid: 7042 + - uid: 1837 components: - type: Transform pos: 7.5,-177.5 parent: 2 - - uid: 7043 + - uid: 1838 components: - type: Transform pos: 7.5,-178.5 parent: 2 - - uid: 7044 + - uid: 1839 components: - type: Transform pos: 5.5,-176.5 parent: 2 - - uid: 7045 + - uid: 1840 components: - type: Transform pos: 5.5,-177.5 parent: 2 - - uid: 7046 + - uid: 1841 components: - type: Transform pos: 5.5,-178.5 parent: 2 - - uid: 7047 + - uid: 1842 components: - type: Transform pos: 5.5,-179.5 parent: 2 - - uid: 7048 + - uid: 1843 components: - type: Transform pos: 4.5,-179.5 parent: 2 - - uid: 7049 + - uid: 1844 components: - type: Transform pos: -4.5,-162.5 parent: 2 - - uid: 7050 + - uid: 1845 components: - type: Transform pos: -4.5,-161.5 parent: 2 - - uid: 7051 + - uid: 1846 components: - type: Transform pos: 0.5,-162.5 parent: 2 - - uid: 7052 + - uid: 1847 components: - type: Transform pos: 0.5,-161.5 parent: 2 - - uid: 7053 + - uid: 1848 components: - type: Transform pos: 0.5,-160.5 parent: 2 - - uid: 7054 + - uid: 1849 components: - type: Transform pos: 0.5,-159.5 parent: 2 - - uid: 7055 + - uid: 1850 components: - type: Transform pos: -4.5,-181.5 parent: 2 - - uid: 7057 + - uid: 1851 components: - type: Transform pos: 7.5,-179.5 parent: 2 - - uid: 7058 + - uid: 1852 components: - type: Transform pos: 6.5,-169.5 parent: 2 - - uid: 7059 + - uid: 1853 components: - type: Transform pos: 6.5,-165.5 parent: 2 - - uid: 7091 + - uid: 1854 components: - type: Transform pos: 4.5,-188.5 parent: 2 - - uid: 7092 + - uid: 1855 components: - type: Transform pos: 4.5,-189.5 parent: 2 - - uid: 7093 + - uid: 1856 components: - type: Transform pos: 3.5,-189.5 parent: 2 - - uid: 7094 + - uid: 1857 components: - type: Transform pos: 2.5,-189.5 parent: 2 - - uid: 7095 + - uid: 1858 components: - type: Transform pos: 1.5,-189.5 parent: 2 - - uid: 7096 + - uid: 1859 components: - type: Transform pos: 0.5,-189.5 parent: 2 - - uid: 7097 + - uid: 1860 components: - type: Transform pos: -0.5,-189.5 parent: 2 - - uid: 7098 + - uid: 1861 components: - type: Transform pos: -1.5,-189.5 parent: 2 - - uid: 7099 + - uid: 1862 components: - type: Transform pos: -2.5,-189.5 parent: 2 - - uid: 7100 + - uid: 1863 components: - type: Transform pos: -2.5,-188.5 parent: 2 - - uid: 7101 + - uid: 1864 components: - type: Transform pos: -2.5,-187.5 parent: 2 - - uid: 7102 + - uid: 1865 components: - type: Transform pos: 3.5,-188.5 parent: 2 - - uid: 7103 + - uid: 1866 components: - type: Transform pos: 3.5,-187.5 parent: 2 - - uid: 7104 + - uid: 1867 components: - type: Transform pos: 5.5,-189.5 parent: 2 - - uid: 7105 + - uid: 1868 components: - type: Transform pos: 6.5,-189.5 parent: 2 - - uid: 7106 + - uid: 1869 components: - type: Transform pos: 6.5,-190.5 parent: 2 - - uid: 7107 + - uid: 1870 components: - type: Transform pos: 6.5,-191.5 parent: 2 - - uid: 7108 + - uid: 1871 components: - type: Transform pos: 6.5,-192.5 parent: 2 - - uid: 7109 + - uid: 1872 components: - type: Transform pos: 6.5,-193.5 parent: 2 - - uid: 7110 + - uid: 1873 components: - type: Transform pos: 6.5,-194.5 parent: 2 - - uid: 7111 + - uid: 1874 components: - type: Transform pos: 6.5,-195.5 parent: 2 - - uid: 7112 + - uid: 1875 components: - type: Transform pos: 6.5,-196.5 parent: 2 - - uid: 7113 + - uid: 1876 components: - type: Transform pos: 6.5,-197.5 parent: 2 - - uid: 7114 + - uid: 1877 components: - type: Transform pos: 6.5,-198.5 parent: 2 - - uid: 7115 + - uid: 1878 components: - type: Transform pos: 6.5,-199.5 parent: 2 - - uid: 7116 + - uid: 1879 components: - type: Transform pos: 6.5,-200.5 parent: 2 - - uid: 7117 + - uid: 1880 components: - type: Transform pos: 6.5,-201.5 parent: 2 - - uid: 7118 + - uid: 1881 components: - type: Transform pos: 6.5,-202.5 parent: 2 - - uid: 7119 + - uid: 1882 components: - type: Transform pos: 6.5,-203.5 parent: 2 - - uid: 7120 + - uid: 1883 components: - type: Transform pos: 6.5,-204.5 parent: 2 - - uid: 7121 + - uid: 1884 components: - type: Transform pos: 6.5,-205.5 parent: 2 - - uid: 7122 + - uid: 1885 components: - type: Transform pos: 6.5,-206.5 parent: 2 - - uid: 7123 + - uid: 1886 components: - type: Transform pos: 5.5,-206.5 parent: 2 - - uid: 7124 + - uid: 1887 components: - type: Transform pos: 4.5,-206.5 parent: 2 - - uid: 7125 + - uid: 1888 components: - type: Transform pos: 3.5,-206.5 parent: 2 - - uid: 7126 + - uid: 1889 components: - type: Transform pos: 2.5,-206.5 parent: 2 - - uid: 7127 + - uid: 1890 components: - type: Transform pos: 1.5,-206.5 parent: 2 - - uid: 7128 + - uid: 1891 components: - type: Transform pos: 0.5,-206.5 parent: 2 - - uid: 7129 + - uid: 1892 components: - type: Transform pos: 0.5,-207.5 parent: 2 - - uid: 7130 + - uid: 1893 components: - type: Transform pos: 0.5,-208.5 parent: 2 - - uid: 7131 + - uid: 1894 components: - type: Transform pos: 0.5,-209.5 parent: 2 - - uid: 7132 + - uid: 1895 components: - type: Transform pos: 5.5,-198.5 parent: 2 - - uid: 7133 + - uid: 1896 components: - type: Transform pos: 4.5,-198.5 parent: 2 - - uid: 7134 + - uid: 1897 components: - type: Transform pos: 3.5,-198.5 parent: 2 - - uid: 7135 + - uid: 1898 components: - type: Transform pos: 2.5,-198.5 parent: 2 - - uid: 7136 + - uid: 1899 components: - type: Transform pos: 2.5,-197.5 parent: 2 - - uid: 7137 + - uid: 1900 components: - type: Transform pos: 2.5,-196.5 parent: 2 - - uid: 7138 + - uid: 1901 components: - type: Transform pos: 2.5,-195.5 parent: 2 - - uid: 7139 + - uid: 1902 components: - type: Transform pos: 2.5,-194.5 parent: 2 - - uid: 7140 + - uid: 1903 components: - type: Transform pos: 2.5,-193.5 parent: 2 - - uid: 7141 + - uid: 1904 components: - type: Transform pos: 1.5,-193.5 parent: 2 - - uid: 7142 + - uid: 1905 components: - type: Transform pos: 0.5,-193.5 parent: 2 - - uid: 7143 + - uid: 1906 components: - type: Transform pos: 2.5,-199.5 parent: 2 - - uid: 7144 + - uid: 1907 components: - type: Transform pos: 2.5,-200.5 parent: 2 - - uid: 7145 + - uid: 1908 components: - type: Transform pos: 2.5,-201.5 parent: 2 - - uid: 7146 + - uid: 1909 components: - type: Transform pos: 2.5,-202.5 parent: 2 - - uid: 7147 + - uid: 1910 components: - type: Transform pos: 1.5,-202.5 parent: 2 - - uid: 7148 + - uid: 1911 components: - type: Transform pos: 0.5,-202.5 parent: 2 - - uid: 7149 + - uid: 1912 components: - type: Transform pos: 0.5,-201.5 parent: 2 - - uid: 7150 + - uid: 1913 components: - type: Transform pos: 0.5,-200.5 parent: 2 - - uid: 7151 + - uid: 1914 components: - type: Transform pos: 0.5,-199.5 parent: 2 - - uid: 7152 + - uid: 1915 components: - type: Transform pos: 0.5,-198.5 parent: 2 - - uid: 7153 + - uid: 1916 components: - type: Transform pos: 0.5,-197.5 parent: 2 - - uid: 7154 + - uid: 1917 components: - type: Transform pos: 1.5,-197.5 parent: 2 - - uid: 7155 + - uid: 1918 components: - type: Transform pos: -3.5,-203.5 parent: 2 - - uid: 7156 + - uid: 1919 components: - type: Transform pos: -2.5,-203.5 parent: 2 - - uid: 7157 + - uid: 1920 components: - type: Transform pos: -2.5,-204.5 parent: 2 - - uid: 7158 + - uid: 1921 components: - type: Transform pos: -2.5,-205.5 parent: 2 - - uid: 7159 + - uid: 1922 components: - type: Transform pos: -3.5,-205.5 parent: 2 - - uid: 7160 + - uid: 1923 components: - type: Transform pos: -4.5,-205.5 parent: 2 - - uid: 7161 + - uid: 1924 components: - type: Transform pos: -5.5,-205.5 parent: 2 - - uid: 7162 + - uid: 1925 components: - type: Transform pos: -2.5,-202.5 parent: 2 - - uid: 7163 + - uid: 1926 components: - type: Transform pos: -2.5,-201.5 parent: 2 - - uid: 7164 + - uid: 1927 components: - type: Transform pos: -3.5,-201.5 parent: 2 - - uid: 7165 + - uid: 1928 components: - type: Transform pos: -4.5,-201.5 parent: 2 - - uid: 7166 + - uid: 1929 components: - type: Transform pos: -5.5,-201.5 parent: 2 - - uid: 7167 + - uid: 1930 components: - type: Transform pos: -2.5,-206.5 parent: 2 - - uid: 7168 + - uid: 1931 components: - type: Transform pos: -2.5,-200.5 parent: 2 - - uid: 7169 + - uid: 1932 components: - type: Transform pos: -2.5,-199.5 parent: 2 - - uid: 7170 + - uid: 1933 components: - type: Transform pos: -2.5,-198.5 parent: 2 - - uid: 7171 + - uid: 1934 components: - type: Transform pos: -2.5,-197.5 parent: 2 - - uid: 7172 + - uid: 1935 components: - type: Transform pos: -2.5,-196.5 parent: 2 - - uid: 7173 + - uid: 1936 components: - type: Transform pos: -2.5,-195.5 parent: 2 - - uid: 7174 + - uid: 1937 components: - type: Transform pos: -2.5,-194.5 parent: 2 - - uid: 7175 + - uid: 1938 components: - type: Transform pos: -3.5,-194.5 parent: 2 - - uid: 7176 + - uid: 1939 components: - type: Transform pos: -4.5,-194.5 parent: 2 - - uid: 7177 + - uid: 1940 components: - type: Transform pos: -5.5,-194.5 parent: 2 - - uid: 7178 + - uid: 1941 components: - type: Transform pos: -6.5,-194.5 parent: 2 - - uid: 7179 + - uid: 1942 components: - type: Transform pos: -6.5,-195.5 parent: 2 - - uid: 7180 + - uid: 1943 components: - type: Transform pos: -6.5,-196.5 parent: 2 - - uid: 7181 + - uid: 1944 components: - type: Transform pos: -6.5,-197.5 parent: 2 - - uid: 7182 + - uid: 1945 components: - type: Transform pos: -6.5,-198.5 parent: 2 - - uid: 7183 + - uid: 1946 components: - type: Transform pos: -5.5,-198.5 parent: 2 - - uid: 7184 + - uid: 1947 components: - type: Transform pos: -4.5,-198.5 parent: 2 - - uid: 7185 + - uid: 1948 components: - type: Transform pos: -3.5,-198.5 parent: 2 - - uid: 7186 + - uid: 1949 components: - type: Transform pos: -3.5,-193.5 parent: 2 - - uid: 7187 + - uid: 1950 components: - type: Transform pos: -3.5,-192.5 parent: 2 - - uid: 7188 + - uid: 1951 components: - type: Transform pos: -1.5,-181.5 parent: 2 - - uid: 7215 + - uid: 1952 components: - type: Transform pos: 1.5,-160.5 parent: 2 - - uid: 7218 + - uid: 1953 components: - type: Transform pos: -0.5,-160.5 parent: 2 - - uid: 7219 + - uid: 1954 components: - type: Transform pos: 2.5,-160.5 parent: 2 - - uid: 7220 + - uid: 1955 components: - type: Transform pos: -1.5,-160.5 parent: 2 - - uid: 7221 + - uid: 1956 components: - type: Transform pos: 1.5,-181.5 parent: 2 - - uid: 7222 + - uid: 1957 components: - type: Transform pos: 2.5,-181.5 parent: 2 - - uid: 7223 + - uid: 1958 components: - type: Transform pos: -0.5,-181.5 parent: 2 - - uid: 7224 + - uid: 1959 components: - type: Transform pos: -0.5,-187.5 parent: 2 - - uid: 7225 + - uid: 1960 components: - type: Transform pos: 1.5,-187.5 parent: 2 - - uid: 7226 + - uid: 1961 components: - type: Transform pos: -1.5,-187.5 parent: 2 - - uid: 7227 + - uid: 1962 components: - type: Transform pos: 0.5,-187.5 parent: 2 - - uid: 7228 + - uid: 1963 components: - type: Transform pos: 2.5,-187.5 parent: 2 - - uid: 7229 + - uid: 1964 components: - type: Transform pos: 0.5,-186.5 parent: 2 - - uid: 7230 + - uid: 1965 components: - type: Transform pos: 0.5,-188.5 parent: 2 - - uid: 7423 + - uid: 1966 components: - type: Transform pos: 2.5,-282.5 parent: 2 - - uid: 7438 + - uid: 1967 components: - type: Transform pos: 2.5,-285.5 parent: 2 - - uid: 7443 + - uid: 1968 components: - type: Transform pos: 7.5,-253.5 parent: 2 - - uid: 7444 + - uid: 1969 components: - type: Transform pos: 7.5,-250.5 parent: 2 - - uid: 7445 + - uid: 1970 components: - type: Transform pos: 7.5,-249.5 parent: 2 - - uid: 7457 + - uid: 1971 components: - type: Transform pos: -16.5,-248.5 parent: 2 - - uid: 7458 + - uid: 1972 components: - type: Transform pos: 15.5,-248.5 parent: 2 - - uid: 7459 + - uid: 1973 components: - type: Transform pos: 14.5,-248.5 parent: 2 - - uid: 7462 + - uid: 1974 components: - type: Transform pos: 12.5,-248.5 parent: 2 - - uid: 7463 + - uid: 1975 components: - type: Transform pos: 8.5,-243.5 parent: 2 - - uid: 7477 + - uid: 1976 components: - type: Transform pos: 5.5,-180.5 parent: 2 - - uid: 7509 + - uid: 1977 components: - type: Transform pos: 5.5,-287.5 parent: 2 - - uid: 7557 + - uid: 1978 components: - type: Transform pos: 1.5,-208.5 parent: 2 - - uid: 7560 + - uid: 1979 components: - type: Transform pos: -0.5,-208.5 parent: 2 - - uid: 7562 + - uid: 1980 components: - type: Transform pos: -1.5,-208.5 parent: 2 - - uid: 7592 + - uid: 1981 components: - type: Transform pos: -2.5,-228.5 parent: 2 - - uid: 7593 + - uid: 1982 components: - type: Transform pos: -2.5,-229.5 parent: 2 - - uid: 7594 + - uid: 1983 components: - type: Transform pos: -2.5,-230.5 parent: 2 - - uid: 7595 + - uid: 1984 components: - type: Transform pos: -3.5,-228.5 parent: 2 - - uid: 7596 + - uid: 1985 components: - type: Transform pos: -3.5,-227.5 parent: 2 - - uid: 7597 + - uid: 1986 components: - type: Transform pos: -3.5,-226.5 parent: 2 - - uid: 7598 + - uid: 1987 components: - type: Transform pos: -4.5,-226.5 parent: 2 - - uid: 7599 + - uid: 1988 components: - type: Transform pos: -5.5,-226.5 parent: 2 - - uid: 7600 + - uid: 1989 components: - type: Transform pos: -6.5,-226.5 parent: 2 - - uid: 7601 + - uid: 1990 components: - type: Transform pos: -6.5,-227.5 parent: 2 - - uid: 7602 + - uid: 1991 components: - type: Transform pos: -6.5,-228.5 parent: 2 - - uid: 7603 + - uid: 1992 components: - type: Transform pos: -6.5,-229.5 parent: 2 - - uid: 7604 + - uid: 1993 components: - type: Transform pos: -7.5,-229.5 parent: 2 - - uid: 7605 + - uid: 1994 components: - type: Transform pos: -8.5,-229.5 parent: 2 - - uid: 7625 + - uid: 1995 components: - type: Transform pos: -1.5,-230.5 parent: 2 - - uid: 7626 + - uid: 1996 components: - type: Transform pos: -0.5,-230.5 parent: 2 - - uid: 7627 + - uid: 1997 components: - type: Transform pos: 0.5,-230.5 parent: 2 - - uid: 7628 + - uid: 1998 components: - type: Transform pos: 1.5,-230.5 parent: 2 - - uid: 7629 + - uid: 1999 components: - type: Transform pos: 2.5,-230.5 parent: 2 - - uid: 7630 + - uid: 2000 components: - type: Transform pos: 3.5,-230.5 parent: 2 - - uid: 7631 + - uid: 2001 components: - type: Transform pos: 4.5,-230.5 parent: 2 - - uid: 7632 + - uid: 2002 components: - type: Transform pos: 4.5,-229.5 parent: 2 - - uid: 7633 + - uid: 2003 components: - type: Transform pos: 4.5,-228.5 parent: 2 - - uid: 7634 + - uid: 2004 components: - type: Transform pos: 4.5,-227.5 parent: 2 - - uid: 7635 + - uid: 2005 components: - type: Transform pos: 4.5,-226.5 parent: 2 - - uid: 7636 + - uid: 2006 components: - type: Transform pos: 6.5,-226.5 parent: 2 - - uid: 7637 + - uid: 2007 components: - type: Transform pos: 7.5,-226.5 parent: 2 - - uid: 7639 + - uid: 2008 components: - type: Transform pos: 7.5,-227.5 parent: 2 - - uid: 7640 + - uid: 2009 components: - type: Transform pos: 7.5,-228.5 parent: 2 - - uid: 7641 + - uid: 2010 components: - type: Transform pos: 7.5,-229.5 parent: 2 - - uid: 7642 + - uid: 2011 components: - type: Transform pos: 8.5,-229.5 parent: 2 - - uid: 7643 + - uid: 2012 components: - type: Transform pos: 9.5,-229.5 parent: 2 - - uid: 7645 + - uid: 2013 components: - type: Transform pos: 0.5,-219.5 parent: 2 - - uid: 7646 + - uid: 2014 components: - type: Transform pos: -0.5,-219.5 parent: 2 - - uid: 7647 + - uid: 2015 components: - type: Transform pos: -1.5,-219.5 parent: 2 - - uid: 7648 + - uid: 2016 components: - type: Transform pos: -2.5,-219.5 parent: 2 - - uid: 7649 + - uid: 2017 components: - type: Transform pos: -3.5,-219.5 parent: 2 - - uid: 7650 + - uid: 2018 components: - type: Transform pos: -3.5,-222.5 parent: 2 - - uid: 7651 + - uid: 2019 components: - type: Transform pos: -3.5,-223.5 parent: 2 - - uid: 7652 + - uid: 2020 components: - type: Transform pos: -4.5,-223.5 parent: 2 - - uid: 7653 + - uid: 2021 components: - type: Transform pos: -5.5,-223.5 parent: 2 - - uid: 7654 + - uid: 2022 components: - type: Transform pos: -6.5,-223.5 parent: 2 - - uid: 7655 + - uid: 2023 components: - type: Transform pos: -6.5,-222.5 parent: 2 - - uid: 7656 + - uid: 2024 components: - type: Transform pos: -6.5,-221.5 parent: 2 - - uid: 7657 + - uid: 2025 components: - type: Transform pos: -6.5,-220.5 parent: 2 - - uid: 7658 + - uid: 2026 components: - type: Transform pos: -7.5,-220.5 parent: 2 - - uid: 7659 + - uid: 2027 components: - type: Transform pos: 0.5,-214.5 parent: 2 - - uid: 7660 + - uid: 2028 components: - type: Transform pos: 0.5,-215.5 parent: 2 - - uid: 7661 + - uid: 2029 components: - type: Transform pos: 0.5,-216.5 parent: 2 - - uid: 7662 + - uid: 2030 components: - type: Transform pos: 0.5,-217.5 parent: 2 - - uid: 7663 + - uid: 2031 components: - type: Transform pos: 0.5,-218.5 parent: 2 - - uid: 7664 + - uid: 2032 components: - type: Transform pos: 1.5,-214.5 parent: 2 - - uid: 7665 + - uid: 2033 components: - type: Transform pos: -8.5,-220.5 parent: 2 - - uid: 7666 + - uid: 2034 components: - type: Transform pos: 0.5,-213.5 parent: 2 - - uid: 7669 + - uid: 2035 components: - type: Transform pos: 7.5,-223.5 parent: 2 - - uid: 7670 + - uid: 2036 components: - type: Transform pos: 7.5,-222.5 parent: 2 - - uid: 7671 + - uid: 2037 components: - type: Transform pos: 7.5,-221.5 parent: 2 - - uid: 7672 + - uid: 2038 components: - type: Transform pos: 7.5,-220.5 parent: 2 - - uid: 7673 + - uid: 2039 components: - type: Transform pos: 8.5,-220.5 parent: 2 - - uid: 7674 + - uid: 2040 components: - type: Transform pos: 9.5,-220.5 parent: 2 - - uid: 7675 + - uid: 2041 components: - type: Transform pos: 2.5,-214.5 parent: 2 - - uid: 7676 + - uid: 2042 components: - type: Transform pos: -0.5,-214.5 parent: 2 - - uid: 7678 + - uid: 2043 components: - type: Transform pos: -1.5,-214.5 parent: 2 - - uid: 7680 + - uid: 2044 components: - type: Transform pos: -1.5,-235.5 parent: 2 - - uid: 7681 + - uid: 2045 components: - type: Transform pos: -0.5,-235.5 parent: 2 - - uid: 7682 + - uid: 2046 components: - type: Transform pos: 0.5,-235.5 parent: 2 - - uid: 7683 + - uid: 2047 components: - type: Transform pos: 1.5,-235.5 parent: 2 - - uid: 7684 + - uid: 2048 components: - type: Transform pos: 2.5,-235.5 parent: 2 - - uid: 7686 + - uid: 2049 components: - type: Transform pos: 0.5,-236.5 parent: 2 - - uid: 7687 + - uid: 2050 components: - type: Transform pos: 0.5,-234.5 parent: 2 - - uid: 7688 + - uid: 2051 components: - type: Transform pos: 0.5,-233.5 parent: 2 - - uid: 7689 + - uid: 2052 components: - type: Transform pos: 0.5,-232.5 parent: 2 - - uid: 7690 + - uid: 2053 components: - type: Transform pos: 0.5,-231.5 parent: 2 - - uid: 7699 + - uid: 2054 components: - type: Transform pos: 0.5,-229.5 parent: 2 - - uid: 7700 + - uid: 2055 components: - type: Transform pos: 0.5,-228.5 parent: 2 - - uid: 7701 + - uid: 2056 components: - type: Transform pos: 0.5,-227.5 parent: 2 - - uid: 7702 + - uid: 2057 components: - type: Transform pos: 0.5,-226.5 parent: 2 - - uid: 7711 + - uid: 2058 components: - type: Transform pos: 0.5,-220.5 parent: 2 - - uid: 7712 + - uid: 2059 components: - type: Transform pos: 0.5,-221.5 parent: 2 - - uid: 7713 + - uid: 2060 components: - type: Transform pos: 0.5,-222.5 parent: 2 - - uid: 7714 + - uid: 2061 components: - type: Transform pos: 0.5,-223.5 parent: 2 - - uid: 7716 + - uid: 2062 components: - type: Transform pos: -3.5,-230.5 parent: 2 - - uid: 7718 + - uid: 2063 components: - type: Transform pos: -2.5,-231.5 parent: 2 - - uid: 7775 + - uid: 2064 components: - type: Transform pos: 13.5,-248.5 parent: 2 - - uid: 7778 + - uid: 2065 components: - type: Transform pos: 4.5,-260.5 parent: 2 - - uid: 7814 + - uid: 2066 components: - type: Transform pos: 4.5,-252.5 parent: 2 - - uid: 7842 + - uid: 2067 components: - type: Transform pos: 6.5,-247.5 parent: 2 - - uid: 7919 + - uid: 2068 components: - type: Transform pos: 2.5,-286.5 parent: 2 - - uid: 7920 + - uid: 2069 components: - type: Transform pos: 2.5,-287.5 parent: 2 - - uid: 7925 + - uid: 2070 components: - type: Transform pos: 5.5,-289.5 parent: 2 - - uid: 7930 + - uid: 2071 components: - type: Transform pos: 8.5,-286.5 parent: 2 - - uid: 7931 + - uid: 2072 components: - type: Transform pos: 7.5,-287.5 parent: 2 - - uid: 7932 + - uid: 2073 components: - type: Transform pos: 6.5,-287.5 parent: 2 - - uid: 7938 + - uid: 2074 components: - type: Transform pos: 7.5,-339.5 parent: 2 - - uid: 7940 + - uid: 2075 components: - type: Transform pos: 7.5,-340.5 parent: 2 - - uid: 7974 + - uid: 2076 components: - type: Transform pos: 2.5,-284.5 parent: 2 - - uid: 7983 + - uid: 2077 components: - type: Transform pos: 0.5,-242.5 parent: 2 - - uid: 7985 + - uid: 2078 components: - type: Transform pos: 0.5,-241.5 parent: 2 - - uid: 7986 + - uid: 2079 components: - type: Transform pos: 1.5,-241.5 parent: 2 - - uid: 7987 + - uid: 2080 components: - type: Transform pos: 2.5,-241.5 parent: 2 - - uid: 7988 + - uid: 2081 components: - type: Transform pos: -0.5,-241.5 parent: 2 - - uid: 7989 + - uid: 2082 components: - type: Transform pos: -1.5,-241.5 parent: 2 - - uid: 7990 + - uid: 2083 components: - type: Transform pos: 0.5,-240.5 parent: 2 - - uid: 7994 + - uid: 2084 components: - type: Transform pos: 4.5,-287.5 parent: 2 - - uid: 8030 + - uid: 2085 components: - type: Transform pos: 6.5,-336.5 parent: 2 - - uid: 8045 + - uid: 2086 components: - type: Transform pos: 3.5,-287.5 parent: 2 - - uid: 8057 + - uid: 2087 components: - type: Transform pos: 2.5,-283.5 parent: 2 - - uid: 8072 + - uid: 2088 components: - type: Transform pos: 0.5,-261.5 parent: 2 - - uid: 8073 + - uid: 2089 components: - type: Transform pos: 0.5,-262.5 parent: 2 - - uid: 8074 + - uid: 2090 components: - type: Transform pos: 0.5,-263.5 parent: 2 - - uid: 8075 + - uid: 2091 components: - type: Transform pos: 1.5,-262.5 parent: 2 - - uid: 8076 + - uid: 2092 components: - type: Transform pos: 2.5,-262.5 parent: 2 - - uid: 8078 + - uid: 2093 components: - type: Transform pos: -0.5,-262.5 parent: 2 - - uid: 8080 + - uid: 2094 components: - type: Transform pos: -1.5,-262.5 parent: 2 - - uid: 8083 + - uid: 2095 components: - type: Transform pos: 8.5,-287.5 parent: 2 - - uid: 8095 + - uid: 2096 components: - type: Transform pos: 5.5,-288.5 parent: 2 - - uid: 8097 + - uid: 2097 components: - type: Transform pos: 8.5,-285.5 parent: 2 - - uid: 8112 + - uid: 2098 components: - type: Transform pos: 3.5,-254.5 parent: 2 - - uid: 8167 + - uid: 2099 components: - type: Transform pos: 7.5,-337.5 parent: 2 - - uid: 8168 + - uid: 2100 components: - type: Transform pos: 5.5,-340.5 parent: 2 - - uid: 8171 + - uid: 2101 components: - type: Transform pos: -6.5,-166.5 parent: 2 - - uid: 8172 + - uid: 2102 components: - type: Transform pos: 7.5,-255.5 parent: 2 - - uid: 8173 + - uid: 2103 components: - type: Transform pos: 7.5,-256.5 parent: 2 - - uid: 8188 + - uid: 2104 components: - type: Transform pos: 6.5,-342.5 parent: 2 - - uid: 8194 + - uid: 2105 components: - type: Transform pos: 5.5,-337.5 parent: 2 - - uid: 8216 + - uid: 2106 components: - type: Transform pos: -8.5,-308.5 parent: 2 - - uid: 8227 + - uid: 2107 components: - type: Transform pos: 16.5,-254.5 parent: 2 - - uid: 8228 + - uid: 2108 components: - type: Transform pos: -6.5,-165.5 parent: 2 - - uid: 8262 + - uid: 2109 components: - type: Transform pos: 13.5,-158.5 parent: 2 - - uid: 8263 + - uid: 2110 components: - type: Transform pos: 13.5,-159.5 parent: 2 - - uid: 8264 + - uid: 2111 components: - type: Transform pos: 13.5,-160.5 parent: 2 - - uid: 8265 + - uid: 2112 components: - type: Transform pos: 13.5,-161.5 parent: 2 - - uid: 8266 + - uid: 2113 components: - type: Transform pos: 13.5,-162.5 parent: 2 - - uid: 8268 + - uid: 2114 components: - type: Transform pos: 15.5,-159.5 parent: 2 - - uid: 8269 + - uid: 2115 components: - type: Transform pos: 16.5,-159.5 parent: 2 - - uid: 8270 + - uid: 2116 components: - type: Transform pos: 17.5,-159.5 parent: 2 - - uid: 8271 + - uid: 2117 components: - type: Transform pos: 5.5,-336.5 parent: 2 - - uid: 8272 + - uid: 2118 components: - type: Transform pos: 17.5,-160.5 parent: 2 - - uid: 8273 + - uid: 2119 components: - type: Transform pos: 17.5,-161.5 parent: 2 - - uid: 8274 + - uid: 2120 components: - type: Transform pos: 17.5,-162.5 parent: 2 - - uid: 8276 + - uid: 2121 components: - type: Transform pos: 8.5,-340.5 parent: 2 - - uid: 8278 + - uid: 2122 components: - type: Transform pos: 17.5,-137.5 parent: 2 - - uid: 8279 + - uid: 2123 components: - type: Transform pos: 17.5,-138.5 parent: 2 - - uid: 8280 + - uid: 2124 components: - type: Transform pos: 17.5,-139.5 parent: 2 - - uid: 8281 + - uid: 2125 components: - type: Transform pos: 17.5,-140.5 parent: 2 - - uid: 8282 + - uid: 2126 components: - type: Transform pos: 17.5,-141.5 parent: 2 - - uid: 8283 + - uid: 2127 components: - type: Transform pos: 17.5,-142.5 parent: 2 - - uid: 8284 + - uid: 2128 components: - type: Transform pos: 17.5,-143.5 parent: 2 - - uid: 8285 + - uid: 2129 components: - type: Transform pos: 17.5,-144.5 parent: 2 - - uid: 8286 + - uid: 2130 components: - type: Transform pos: 17.5,-145.5 parent: 2 - - uid: 8287 + - uid: 2131 components: - type: Transform pos: 17.5,-146.5 parent: 2 - - uid: 8288 + - uid: 2132 components: - type: Transform pos: 17.5,-147.5 parent: 2 - - uid: 8289 + - uid: 2133 components: - type: Transform pos: 17.5,-148.5 parent: 2 - - uid: 8290 + - uid: 2134 components: - type: Transform pos: 17.5,-149.5 parent: 2 - - uid: 8291 + - uid: 2135 components: - type: Transform pos: 17.5,-150.5 parent: 2 - - uid: 8292 + - uid: 2136 components: - type: Transform pos: 17.5,-151.5 parent: 2 - - uid: 8293 + - uid: 2137 components: - type: Transform pos: 17.5,-152.5 parent: 2 - - uid: 8294 + - uid: 2138 components: - type: Transform pos: 17.5,-153.5 parent: 2 - - uid: 8295 + - uid: 2139 components: - type: Transform pos: 16.5,-138.5 parent: 2 - - uid: 8296 + - uid: 2140 components: - type: Transform pos: 15.5,-138.5 parent: 2 - - uid: 8297 + - uid: 2141 components: - type: Transform pos: 14.5,-138.5 parent: 2 - - uid: 8298 + - uid: 2142 components: - type: Transform pos: 13.5,-138.5 parent: 2 - - uid: 8299 + - uid: 2143 components: - type: Transform pos: 13.5,-139.5 parent: 2 - - uid: 8300 + - uid: 2144 components: - type: Transform pos: 13.5,-140.5 parent: 2 - - uid: 8301 + - uid: 2145 components: - type: Transform pos: 13.5,-141.5 parent: 2 - - uid: 8302 + - uid: 2146 components: - type: Transform pos: 13.5,-142.5 parent: 2 - - uid: 8303 + - uid: 2147 components: - type: Transform pos: 13.5,-143.5 parent: 2 - - uid: 8304 + - uid: 2148 components: - type: Transform pos: 13.5,-144.5 parent: 2 - - uid: 8306 + - uid: 2149 components: - type: Transform pos: 13.5,-146.5 parent: 2 - - uid: 8307 + - uid: 2150 components: - type: Transform pos: 13.5,-147.5 parent: 2 - - uid: 8308 + - uid: 2151 components: - type: Transform pos: 13.5,-148.5 parent: 2 - - uid: 8309 + - uid: 2152 components: - type: Transform pos: 13.5,-149.5 parent: 2 - - uid: 8310 + - uid: 2153 components: - type: Transform pos: 13.5,-150.5 parent: 2 - - uid: 8311 + - uid: 2154 components: - type: Transform pos: 13.5,-151.5 parent: 2 - - uid: 8312 + - uid: 2155 components: - type: Transform pos: 13.5,-152.5 parent: 2 - - uid: 8313 + - uid: 2156 components: - type: Transform pos: 13.5,-153.5 parent: 2 - - uid: 8320 + - uid: 2157 components: - type: Transform pos: 19.5,-240.5 parent: 2 - - uid: 8349 + - uid: 2158 components: - type: Transform pos: -13.5,-162.5 parent: 2 - - uid: 8351 + - uid: 2159 components: - type: Transform pos: 16.5,-255.5 parent: 2 - - uid: 8352 + - uid: 2160 components: - type: Transform pos: 17.5,-255.5 parent: 2 - - uid: 8356 + - uid: 2161 components: - type: Transform pos: 18.5,-255.5 parent: 2 - - uid: 8359 + - uid: 2162 components: - type: Transform pos: 12.5,-260.5 parent: 2 - - uid: 8360 + - uid: 2163 components: - type: Transform pos: 18.5,-257.5 parent: 2 - - uid: 8361 + - uid: 2164 components: - type: Transform pos: 15.5,-240.5 parent: 2 - - uid: 8362 + - uid: 2165 components: - type: Transform pos: 16.5,-243.5 parent: 2 - - uid: 8363 + - uid: 2166 components: - type: Transform pos: 18.5,-260.5 parent: 2 - - uid: 8364 + - uid: 2167 components: - type: Transform pos: 15.5,-243.5 parent: 2 - - uid: 8367 + - uid: 2168 components: - type: Transform pos: -13.5,-163.5 parent: 2 - - uid: 8368 + - uid: 2169 components: - type: Transform pos: 18.5,-248.5 parent: 2 - - uid: 8369 + - uid: 2170 components: - type: Transform pos: 17.5,-245.5 parent: 2 - - uid: 8371 + - uid: 2171 components: - type: Transform pos: -13.5,-164.5 parent: 2 - - uid: 8377 + - uid: 2172 components: - type: Transform pos: -13.5,-165.5 parent: 2 - - uid: 8382 + - uid: 2173 components: - type: Transform pos: 17.5,-260.5 parent: 2 - - uid: 8383 + - uid: 2174 components: - type: Transform pos: 14.5,-256.5 parent: 2 - - uid: 8386 + - uid: 2175 components: - type: Transform pos: -13.5,-166.5 parent: 2 - - uid: 8389 + - uid: 2176 components: - type: Transform pos: 7.5,-257.5 parent: 2 - - uid: 8390 + - uid: 2177 components: - type: Transform pos: 7.5,-258.5 parent: 2 - - uid: 8392 + - uid: 2178 components: - type: Transform pos: -13.5,-167.5 parent: 2 - - uid: 8393 + - uid: 2179 components: - type: Transform pos: -12.5,-167.5 parent: 2 - - uid: 8418 + - uid: 2180 components: - type: Transform pos: 7.5,-247.5 parent: 2 - - uid: 8423 + - uid: 2181 components: - type: Transform pos: 7.5,-259.5 parent: 2 - - uid: 8427 + - uid: 2182 components: - type: Transform pos: 7.5,-260.5 parent: 2 - - uid: 8434 + - uid: 2183 components: - type: Transform pos: 11.5,-256.5 parent: 2 - - uid: 8437 + - uid: 2184 components: - type: Transform pos: 6.5,-243.5 parent: 2 - - uid: 8445 + - uid: 2185 components: - type: Transform pos: -9.5,-299.5 parent: 2 - - uid: 8446 + - uid: 2186 components: - type: Transform pos: 8.5,-260.5 parent: 2 - - uid: 8447 + - uid: 2187 components: - type: Transform pos: 13.5,-256.5 parent: 2 - - uid: 8451 + - uid: 2188 components: - type: Transform pos: 16.5,-264.5 parent: 2 - - uid: 8457 + - uid: 2189 components: - type: Transform pos: 5.5,-261.5 parent: 2 - - uid: 8462 + - uid: 2190 components: - type: Transform pos: 19.5,-264.5 parent: 2 - - uid: 8464 + - uid: 2191 components: - type: Transform pos: 0.5,-362.5 parent: 2 - - uid: 8465 + - uid: 2192 components: - type: Transform pos: 20.5,-264.5 parent: 2 - - uid: 8500 + - uid: 2193 components: - type: Transform pos: 17.5,-243.5 parent: 2 - - uid: 8505 + - uid: 2194 components: - type: Transform pos: 18.5,-247.5 parent: 2 - - uid: 8506 + - uid: 2195 components: - type: Transform pos: 18.5,-240.5 parent: 2 - - uid: 8517 + - uid: 2196 components: - type: Transform pos: 3.5,-252.5 parent: 2 - - uid: 8555 + - uid: 2197 components: - type: Transform pos: 3.5,-250.5 parent: 2 - - uid: 8566 + - uid: 2198 components: - type: Transform pos: 3.5,-260.5 parent: 2 - - uid: 8618 + - uid: 2199 components: - type: Transform pos: 3.5,-249.5 parent: 2 - - uid: 8645 + - uid: 2200 components: - type: Transform pos: 5.5,-260.5 parent: 2 - - uid: 8646 + - uid: 2201 components: - type: Transform pos: 15.5,-260.5 parent: 2 - - uid: 8647 + - uid: 2202 components: - type: Transform pos: 17.5,-240.5 parent: 2 - - uid: 8660 + - uid: 2203 components: - type: Transform pos: 14.5,-260.5 parent: 2 - - uid: 8668 + - uid: 2204 components: - type: Transform pos: 16.5,-250.5 parent: 2 - - uid: 8670 + - uid: 2205 components: - type: Transform pos: 19.5,-248.5 parent: 2 - - uid: 8684 + - uid: 2206 components: - type: Transform pos: 15.5,-245.5 parent: 2 - - uid: 8696 + - uid: 2207 components: - type: Transform pos: 16.5,-260.5 parent: 2 - - uid: 8708 + - uid: 2208 components: - type: Transform pos: -6.5,-167.5 parent: 2 - - uid: 8730 + - uid: 2209 components: - type: Transform pos: 13.5,-260.5 parent: 2 - - uid: 8731 + - uid: 2210 components: - type: Transform pos: 18.5,-256.5 parent: 2 - - uid: 8764 + - uid: 2211 components: - type: Transform pos: -7.5,-167.5 parent: 2 - - uid: 8786 + - uid: 2212 components: - type: Transform pos: 16.5,-256.5 parent: 2 - - uid: 8787 + - uid: 2213 components: - type: Transform pos: 11.5,-260.5 parent: 2 - - uid: 8791 + - uid: 2214 components: - type: Transform pos: 18.5,-258.5 parent: 2 - - uid: 8792 + - uid: 2215 components: - type: Transform pos: 18.5,-246.5 parent: 2 - - uid: 8793 + - uid: 2216 components: - type: Transform pos: 16.5,-245.5 parent: 2 - - uid: 8799 + - uid: 2217 components: - type: Transform pos: 18.5,-261.5 parent: 2 - - uid: 8804 + - uid: 2218 components: - type: Transform pos: 18.5,-259.5 parent: 2 - - uid: 8805 + - uid: 2219 components: - type: Transform pos: -7.5,-302.5 parent: 2 - - uid: 8829 + - uid: 2220 components: - type: Transform pos: 6.5,-252.5 parent: 2 - - uid: 8843 + - uid: 2221 components: - type: Transform pos: 8.5,-117.5 parent: 2 - - uid: 8895 + - uid: 2222 components: - type: Transform pos: 18.5,-245.5 parent: 2 - - uid: 8897 + - uid: 2223 components: - type: Transform pos: 18.5,-264.5 parent: 2 - - uid: 8916 + - uid: 2224 components: - type: Transform pos: 5.5,-252.5 parent: 2 - - uid: 8929 + - uid: 2225 components: - type: Transform pos: 17.5,-264.5 parent: 2 - - uid: 8930 + - uid: 2226 components: - type: Transform pos: 3.5,-251.5 parent: 2 - - uid: 8973 + - uid: 2227 components: - type: Transform pos: 7.5,-252.5 parent: 2 - - uid: 8976 + - uid: 2228 components: - type: Transform pos: 7.5,-251.5 parent: 2 - - uid: 8988 + - uid: 2229 components: - type: Transform pos: 7.5,-243.5 parent: 2 - - uid: 9010 + - uid: 2230 components: - type: Transform pos: 5.5,-283.5 parent: 2 - - uid: 9027 + - uid: 2231 components: - type: Transform pos: -9.5,-302.5 parent: 2 - - uid: 9041 + - uid: 2232 components: - type: Transform pos: 4.5,-243.5 parent: 2 - - uid: 9043 + - uid: 2233 components: - type: Transform pos: 5.5,-243.5 parent: 2 - - uid: 9049 + - uid: 2234 components: - type: Transform pos: 3.5,-243.5 parent: 2 - - uid: 9061 + - uid: 2235 components: - type: Transform pos: 12.5,-256.5 parent: 2 - - uid: 9170 + - uid: 2236 components: - type: Transform pos: 5.5,-284.5 parent: 2 - - uid: 9171 + - uid: 2237 components: - type: Transform pos: 5.5,-285.5 parent: 2 - - uid: 9172 + - uid: 2238 components: - type: Transform pos: 4.5,-284.5 parent: 2 - - uid: 9173 + - uid: 2239 components: - type: Transform pos: 6.5,-284.5 parent: 2 - - uid: 9215 + - uid: 2240 components: - type: Transform pos: -1.5,-272.5 parent: 2 - - uid: 9216 + - uid: 2241 components: - type: Transform pos: -1.5,-271.5 parent: 2 - - uid: 9217 + - uid: 2242 components: - type: Transform pos: -2.5,-271.5 parent: 2 - - uid: 9218 + - uid: 2243 components: - type: Transform pos: -3.5,-271.5 parent: 2 - - uid: 9219 + - uid: 2244 components: - type: Transform pos: -4.5,-271.5 parent: 2 - - uid: 9220 + - uid: 2245 components: - type: Transform pos: -5.5,-271.5 parent: 2 - - uid: 9221 + - uid: 2246 components: - type: Transform pos: -6.5,-271.5 parent: 2 - - uid: 9222 + - uid: 2247 components: - type: Transform pos: -6.5,-270.5 parent: 2 - - uid: 9223 + - uid: 2248 components: - type: Transform pos: -6.5,-272.5 parent: 2 - - uid: 9224 + - uid: 2249 components: - type: Transform pos: -7.5,-272.5 parent: 2 - - uid: 9225 + - uid: 2250 components: - type: Transform pos: -8.5,-272.5 parent: 2 - - uid: 9226 + - uid: 2251 components: - type: Transform pos: -6.5,-273.5 parent: 2 - - uid: 9227 + - uid: 2252 components: - type: Transform pos: -6.5,-274.5 parent: 2 - - uid: 9228 + - uid: 2253 components: - type: Transform pos: -6.5,-275.5 parent: 2 - - uid: 9229 + - uid: 2254 components: - type: Transform pos: -5.5,-275.5 parent: 2 - - uid: 9230 + - uid: 2255 components: - type: Transform pos: -5.5,-276.5 parent: 2 - - uid: 9231 + - uid: 2256 components: - type: Transform pos: 7.5,-272.5 parent: 2 - - uid: 9232 + - uid: 2257 components: - type: Transform pos: 6.5,-272.5 parent: 2 - - uid: 9233 + - uid: 2258 components: - type: Transform pos: 5.5,-272.5 parent: 2 - - uid: 9234 + - uid: 2259 components: - type: Transform pos: 4.5,-272.5 parent: 2 - - uid: 9235 + - uid: 2260 components: - type: Transform pos: 3.5,-272.5 parent: 2 - - uid: 9236 + - uid: 2261 components: - type: Transform pos: 5.5,-271.5 parent: 2 - - uid: 9237 + - uid: 2262 components: - type: Transform pos: 5.5,-270.5 parent: 2 - - uid: 9238 + - uid: 2263 components: - type: Transform pos: 5.5,-269.5 parent: 2 - - uid: 9239 + - uid: 2264 components: - type: Transform pos: 3.5,-271.5 parent: 2 - - uid: 9240 + - uid: 2265 components: - type: Transform pos: 3.5,-270.5 parent: 2 - - uid: 9241 + - uid: 2266 components: - type: Transform pos: 2.5,-272.5 parent: 2 - - uid: 9242 + - uid: 2267 components: - type: Transform pos: 5.5,-273.5 parent: 2 - - uid: 9243 + - uid: 2268 components: - type: Transform pos: 5.5,-274.5 parent: 2 - - uid: 9244 + - uid: 2269 components: - type: Transform pos: 5.5,-275.5 parent: 2 - - uid: 9245 + - uid: 2270 components: - type: Transform pos: 5.5,-276.5 parent: 2 - - uid: 9246 + - uid: 2271 components: - type: Transform pos: 5.5,-277.5 parent: 2 - - uid: 9247 + - uid: 2272 components: - type: Transform pos: 5.5,-278.5 parent: 2 - - uid: 9248 + - uid: 2273 components: - type: Transform pos: 5.5,-279.5 parent: 2 - - uid: 9249 + - uid: 2274 components: - type: Transform pos: 5.5,-280.5 parent: 2 - - uid: 9250 + - uid: 2275 components: - type: Transform pos: 5.5,-281.5 parent: 2 - - uid: 9251 + - uid: 2276 components: - type: Transform pos: 4.5,-277.5 parent: 2 - - uid: 9252 + - uid: 2277 components: - type: Transform pos: 3.5,-277.5 parent: 2 - - uid: 9253 + - uid: 2278 components: - type: Transform pos: 2.5,-277.5 parent: 2 - - uid: 9254 + - uid: 2279 components: - type: Transform pos: 1.5,-277.5 parent: 2 - - uid: 9255 + - uid: 2280 components: - type: Transform pos: 0.5,-277.5 parent: 2 - - uid: 9256 + - uid: 2281 components: - type: Transform pos: 0.5,-278.5 parent: 2 - - uid: 9257 + - uid: 2282 components: - type: Transform pos: 0.5,-279.5 parent: 2 - - uid: 9258 + - uid: 2283 components: - type: Transform pos: 0.5,-280.5 parent: 2 - - uid: 9259 + - uid: 2284 components: - type: Transform pos: 0.5,-281.5 parent: 2 - - uid: 9260 + - uid: 2285 components: - type: Transform pos: 0.5,-282.5 parent: 2 - - uid: 9261 + - uid: 2286 components: - type: Transform pos: -0.5,-281.5 parent: 2 - - uid: 9262 + - uid: 2287 components: - type: Transform pos: -0.5,-277.5 parent: 2 - - uid: 9263 + - uid: 2288 components: - type: Transform pos: 0.5,-276.5 parent: 2 - - uid: 9264 + - uid: 2289 components: - type: Transform pos: 6.5,-277.5 parent: 2 - - uid: 9265 + - uid: 2290 components: - type: Transform pos: 7.5,-277.5 parent: 2 - - uid: 9266 + - uid: 2291 components: - type: Transform pos: 8.5,-277.5 parent: 2 - - uid: 9267 + - uid: 2292 components: - type: Transform pos: 9.5,-277.5 parent: 2 - - uid: 9268 + - uid: 2293 components: - type: Transform pos: 10.5,-277.5 parent: 2 - - uid: 9269 + - uid: 2294 components: - type: Transform pos: 11.5,-277.5 parent: 2 - - uid: 9270 + - uid: 2295 components: - type: Transform pos: 11.5,-281.5 parent: 2 - - uid: 9271 + - uid: 2296 components: - type: Transform pos: 10.5,-281.5 parent: 2 - - uid: 9272 + - uid: 2297 components: - type: Transform pos: 9.5,-281.5 parent: 2 - - uid: 9273 + - uid: 2298 components: - type: Transform pos: 8.5,-281.5 parent: 2 - - uid: 9274 + - uid: 2299 components: - type: Transform pos: 7.5,-281.5 parent: 2 - - uid: 9275 + - uid: 2300 components: - type: Transform pos: 6.5,-281.5 parent: 2 - - uid: 9276 + - uid: 2301 components: - type: Transform pos: 4.5,-281.5 parent: 2 - - uid: 9277 + - uid: 2302 components: - type: Transform pos: 3.5,-281.5 parent: 2 - - uid: 9278 + - uid: 2303 components: - type: Transform pos: 2.5,-281.5 parent: 2 - - uid: 9279 + - uid: 2304 components: - type: Transform pos: 1.5,-281.5 parent: 2 - - uid: 9280 + - uid: 2305 components: - type: Transform pos: 5.5,-282.5 parent: 2 - - uid: 9281 + - uid: 2306 components: - type: Transform pos: -5.5,-277.5 parent: 2 - - uid: 9282 + - uid: 2307 components: - type: Transform pos: -5.5,-278.5 parent: 2 - - uid: 9283 + - uid: 2308 components: - type: Transform pos: -5.5,-279.5 parent: 2 - - uid: 9284 + - uid: 2309 components: - type: Transform pos: -5.5,-280.5 parent: 2 - - uid: 9285 + - uid: 2310 components: - type: Transform pos: -5.5,-281.5 parent: 2 - - uid: 9286 + - uid: 2311 components: - type: Transform pos: -5.5,-282.5 parent: 2 - - uid: 9287 + - uid: 2312 components: - type: Transform pos: -5.5,-283.5 parent: 2 - - uid: 9288 + - uid: 2313 components: - type: Transform pos: -5.5,-284.5 parent: 2 - - uid: 9289 + - uid: 2314 components: - type: Transform pos: -5.5,-285.5 parent: 2 - - uid: 9290 + - uid: 2315 components: - type: Transform pos: -5.5,-286.5 parent: 2 - - uid: 9291 + - uid: 2316 components: - type: Transform pos: -5.5,-287.5 parent: 2 - - uid: 9292 + - uid: 2317 components: - type: Transform pos: -4.5,-287.5 parent: 2 - - uid: 9293 + - uid: 2318 components: - type: Transform pos: -3.5,-287.5 parent: 2 - - uid: 9294 + - uid: 2319 components: - type: Transform pos: -4.5,-279.5 parent: 2 - - uid: 9295 + - uid: 2320 components: - type: Transform pos: -3.5,-279.5 parent: 2 - - uid: 9296 + - uid: 2321 components: - type: Transform pos: -3.5,-280.5 parent: 2 - - uid: 9297 + - uid: 2322 components: - type: Transform pos: -3.5,-281.5 parent: 2 - - uid: 9298 + - uid: 2323 components: - type: Transform pos: -3.5,-282.5 parent: 2 - - uid: 9299 + - uid: 2324 components: - type: Transform pos: -3.5,-283.5 parent: 2 - - uid: 9300 + - uid: 2325 components: - type: Transform pos: -2.5,-283.5 parent: 2 - - uid: 9301 + - uid: 2326 components: - type: Transform pos: -2.5,-284.5 parent: 2 - - uid: 9302 + - uid: 2327 components: - type: Transform pos: -1.5,-284.5 parent: 2 - - uid: 9303 + - uid: 2328 components: - type: Transform pos: -0.5,-284.5 parent: 2 - - uid: 9304 + - uid: 2329 components: - type: Transform pos: 0.5,-284.5 parent: 2 - - uid: 9305 + - uid: 2330 components: - type: Transform pos: 0.5,-285.5 parent: 2 - - uid: 9306 + - uid: 2331 components: - type: Transform pos: 0.5,-286.5 parent: 2 - - uid: 9307 + - uid: 2332 components: - type: Transform pos: 0.5,-287.5 parent: 2 - - uid: 9308 + - uid: 2333 components: - type: Transform pos: 0.5,-288.5 parent: 2 - - uid: 9309 + - uid: 2334 components: - type: Transform pos: 0.5,-289.5 parent: 2 - - uid: 9310 + - uid: 2335 components: - type: Transform pos: 0.5,-290.5 parent: 2 - - uid: 9311 + - uid: 2336 components: - type: Transform pos: 1.5,-289.5 parent: 2 - - uid: 9312 + - uid: 2337 components: - type: Transform pos: 2.5,-289.5 parent: 2 - - uid: 9313 + - uid: 2338 components: - type: Transform pos: -0.5,-289.5 parent: 2 - - uid: 9314 + - uid: 2339 components: - type: Transform pos: -1.5,-289.5 parent: 2 - - uid: 9315 + - uid: 2340 components: - type: Transform pos: -3.5,-278.5 parent: 2 - - uid: 9316 + - uid: 2341 components: - type: Transform pos: -3.5,-277.5 parent: 2 - - uid: 9317 + - uid: 2342 components: - type: Transform pos: -3.5,-276.5 parent: 2 - - uid: 9318 + - uid: 2343 components: - type: Transform pos: -3.5,-275.5 parent: 2 - - uid: 9319 + - uid: 2344 components: - type: Transform pos: -2.5,-275.5 parent: 2 - - uid: 9320 + - uid: 2345 components: - type: Transform pos: -2.5,-274.5 parent: 2 - - uid: 9321 + - uid: 2346 components: - type: Transform pos: -1.5,-274.5 parent: 2 - - uid: 9323 + - uid: 2347 components: - type: Transform pos: -0.5,-274.5 parent: 2 - - uid: 9324 + - uid: 2348 components: - type: Transform pos: 0.5,-274.5 parent: 2 - - uid: 9325 + - uid: 2349 components: - type: Transform pos: 0.5,-273.5 parent: 2 - - uid: 9326 + - uid: 2350 components: - type: Transform pos: 0.5,-272.5 parent: 2 - - uid: 9327 + - uid: 2351 components: - type: Transform pos: 0.5,-271.5 parent: 2 - - uid: 9328 + - uid: 2352 components: - type: Transform pos: 0.5,-270.5 parent: 2 - - uid: 9329 + - uid: 2353 components: - type: Transform pos: 0.5,-269.5 parent: 2 - - uid: 9330 + - uid: 2354 components: - type: Transform pos: 0.5,-268.5 parent: 2 - - uid: 9331 + - uid: 2355 components: - type: Transform pos: 0.5,-267.5 parent: 2 - - uid: 9332 + - uid: 2356 components: - type: Transform pos: 2.5,-268.5 parent: 2 - - uid: 9333 + - uid: 2357 components: - type: Transform pos: 1.5,-268.5 parent: 2 - - uid: 9334 + - uid: 2358 components: - type: Transform pos: -0.5,-268.5 parent: 2 - - uid: 9335 + - uid: 2359 components: - type: Transform pos: -1.5,-268.5 parent: 2 - - uid: 9429 + - uid: 2360 components: - type: Transform pos: -4.5,-328.5 parent: 2 - - uid: 9457 + - uid: 2361 components: - type: Transform pos: 22.5,-311.5 parent: 2 - - uid: 9518 + - uid: 2362 components: - type: Transform pos: 22.5,-312.5 parent: 2 - - uid: 9619 + - uid: 2363 components: - type: Transform pos: 19.5,-308.5 parent: 2 - - uid: 9621 + - uid: 2364 components: - type: Transform pos: 20.5,-307.5 parent: 2 - - uid: 9622 + - uid: 2365 components: - type: Transform pos: 20.5,-307.5 parent: 2 - - uid: 9623 + - uid: 2366 components: - type: Transform pos: 19.5,-307.5 parent: 2 - - uid: 9624 + - uid: 2367 components: - type: Transform pos: 18.5,-307.5 parent: 2 - - uid: 9625 + - uid: 2368 components: - type: Transform pos: 17.5,-307.5 parent: 2 - - uid: 9626 + - uid: 2369 components: - type: Transform pos: 16.5,-307.5 parent: 2 - - uid: 9627 + - uid: 2370 components: - type: Transform pos: 15.5,-307.5 parent: 2 - - uid: 9628 + - uid: 2371 components: - type: Transform pos: 14.5,-307.5 parent: 2 - - uid: 9629 + - uid: 2372 components: - type: Transform pos: 13.5,-307.5 parent: 2 - - uid: 9630 + - uid: 2373 components: - type: Transform pos: 19.5,-309.5 parent: 2 - - uid: 9631 + - uid: 2374 components: - type: Transform pos: 20.5,-309.5 parent: 2 - - uid: 9632 + - uid: 2375 components: - type: Transform pos: 20.5,-310.5 parent: 2 - - uid: 9633 + - uid: 2376 components: - type: Transform pos: 21.5,-310.5 parent: 2 - - uid: 9634 + - uid: 2377 components: - type: Transform pos: 22.5,-310.5 parent: 2 - - uid: 9635 + - uid: 2378 components: - type: Transform pos: 23.5,-310.5 parent: 2 - - uid: 9636 + - uid: 2379 components: - type: Transform pos: 24.5,-310.5 parent: 2 - - uid: 9637 + - uid: 2380 components: - type: Transform pos: 24.5,-309.5 parent: 2 - - uid: 9639 + - uid: 2381 components: - type: Transform pos: 25.5,-309.5 parent: 2 - - uid: 9640 + - uid: 2382 components: - type: Transform pos: 25.5,-308.5 parent: 2 - - uid: 9641 + - uid: 2383 components: - type: Transform pos: 25.5,-307.5 parent: 2 - - uid: 9642 + - uid: 2384 components: - type: Transform pos: 26.5,-307.5 parent: 2 - - uid: 9643 + - uid: 2385 components: - type: Transform pos: 27.5,-307.5 parent: 2 - - uid: 9644 + - uid: 2386 components: - type: Transform pos: 28.5,-307.5 parent: 2 - - uid: 9645 + - uid: 2387 components: - type: Transform pos: 29.5,-307.5 parent: 2 - - uid: 9646 + - uid: 2388 components: - type: Transform pos: 25.5,-306.5 parent: 2 - - uid: 9647 + - uid: 2389 components: - type: Transform pos: 25.5,-305.5 parent: 2 - - uid: 9648 + - uid: 2390 components: - type: Transform pos: 24.5,-305.5 parent: 2 - - uid: 9649 + - uid: 2391 components: - type: Transform pos: 24.5,-304.5 parent: 2 - - uid: 9650 + - uid: 2392 components: - type: Transform pos: 23.5,-304.5 parent: 2 - - uid: 9651 + - uid: 2393 components: - type: Transform pos: 19.5,-306.5 parent: 2 - - uid: 9652 + - uid: 2394 components: - type: Transform pos: 19.5,-305.5 parent: 2 - - uid: 9653 + - uid: 2395 components: - type: Transform pos: 20.5,-305.5 parent: 2 - - uid: 9654 + - uid: 2396 components: - type: Transform pos: 20.5,-304.5 parent: 2 - - uid: 9655 + - uid: 2397 components: - type: Transform pos: 21.5,-304.5 parent: 2 - - uid: 9656 + - uid: 2398 components: - type: Transform pos: 22.5,-304.5 parent: 2 - - uid: 9657 + - uid: 2399 components: - type: Transform pos: 22.5,-303.5 parent: 2 - - uid: 9658 + - uid: 2400 components: - type: Transform pos: 22.5,-302.5 parent: 2 - - uid: 9659 + - uid: 2401 components: - type: Transform pos: 22.5,-301.5 parent: 2 - - uid: 9660 + - uid: 2402 components: - type: Transform pos: 22.5,-300.5 parent: 2 - - uid: 9661 + - uid: 2403 components: - type: Transform pos: 22.5,-299.5 parent: 2 - - uid: 9662 + - uid: 2404 components: - type: Transform pos: 22.5,-298.5 parent: 2 - - uid: 9663 + - uid: 2405 components: - type: Transform pos: 23.5,-298.5 parent: 2 - - uid: 9664 + - uid: 2406 components: - type: Transform pos: 24.5,-298.5 parent: 2 - - uid: 9665 + - uid: 2407 components: - type: Transform pos: 25.5,-298.5 parent: 2 - - uid: 9666 + - uid: 2408 components: - type: Transform pos: 21.5,-298.5 parent: 2 - - uid: 9667 + - uid: 2409 components: - type: Transform pos: 20.5,-298.5 parent: 2 - - uid: 9668 + - uid: 2410 components: - type: Transform pos: 19.5,-298.5 parent: 2 - - uid: 9669 + - uid: 2411 components: - type: Transform pos: 22.5,-313.5 parent: 2 - - uid: 9670 + - uid: 2412 components: - type: Transform pos: 22.5,-314.5 parent: 2 - - uid: 9671 + - uid: 2413 components: - type: Transform pos: 22.5,-315.5 parent: 2 - - uid: 9672 + - uid: 2414 components: - type: Transform pos: 22.5,-316.5 parent: 2 - - uid: 9674 + - uid: 2415 components: - type: Transform pos: 23.5,-316.5 parent: 2 - - uid: 9675 + - uid: 2416 components: - type: Transform pos: 24.5,-316.5 parent: 2 - - uid: 9676 + - uid: 2417 components: - type: Transform pos: 25.5,-316.5 parent: 2 - - uid: 9677 + - uid: 2418 components: - type: Transform pos: 21.5,-316.5 parent: 2 - - uid: 9678 + - uid: 2419 components: - type: Transform pos: 20.5,-316.5 parent: 2 - - uid: 9679 + - uid: 2420 components: - type: Transform pos: 19.5,-316.5 parent: 2 - - uid: 9680 + - uid: 2421 components: - type: Transform pos: 22.5,-317.5 parent: 2 - - uid: 9681 + - uid: 2422 components: - type: Transform pos: 22.5,-297.5 parent: 2 - - uid: 9769 + - uid: 2423 components: - type: Transform pos: 29.5,-306.5 parent: 2 - - uid: 9770 + - uid: 2424 components: - type: Transform pos: 29.5,-305.5 parent: 2 - - uid: 9771 + - uid: 2425 components: - type: Transform pos: 29.5,-304.5 parent: 2 - - uid: 9775 + - uid: 2426 components: - type: Transform pos: 29.5,-308.5 parent: 2 - - uid: 9776 + - uid: 2427 components: - type: Transform pos: 29.5,-309.5 parent: 2 - - uid: 9777 + - uid: 2428 components: - type: Transform pos: 29.5,-310.5 parent: 2 - - uid: 9831 + - uid: 2429 components: - type: Transform pos: 5.5,-335.5 parent: 2 - - uid: 9853 + - uid: 2430 components: - type: Transform pos: 14.5,-243.5 parent: 2 - - uid: 10035 + - uid: 2431 components: - type: Transform pos: 7.5,-343.5 parent: 2 - - uid: 10048 + - uid: 2432 components: - type: Transform pos: 7.5,-335.5 parent: 2 - - uid: 10165 + - uid: 2433 components: - type: Transform pos: 0.5,-308.5 parent: 2 - - uid: 10168 + - uid: 2434 components: - type: Transform pos: 5.5,-338.5 parent: 2 - - uid: 10353 + - uid: 2435 components: - type: Transform pos: -9.5,-303.5 parent: 2 - - uid: 10354 + - uid: 2436 components: - type: Transform pos: -9.5,-304.5 parent: 2 - - uid: 10355 + - uid: 2437 components: - type: Transform pos: -9.5,-305.5 parent: 2 - - uid: 10356 + - uid: 2438 components: - type: Transform pos: -8.5,-303.5 parent: 2 - - uid: 10357 + - uid: 2439 components: - type: Transform pos: -7.5,-303.5 parent: 2 - - uid: 10358 + - uid: 2440 components: - type: Transform pos: -6.5,-303.5 parent: 2 - - uid: 10359 + - uid: 2441 components: - type: Transform pos: -5.5,-303.5 parent: 2 - - uid: 10360 + - uid: 2442 components: - type: Transform pos: -4.5,-303.5 parent: 2 - - uid: 10361 + - uid: 2443 components: - type: Transform pos: -3.5,-303.5 parent: 2 - - uid: 10362 + - uid: 2444 components: - type: Transform pos: -2.5,-303.5 parent: 2 - - uid: 10363 + - uid: 2445 components: - type: Transform pos: -4.5,-302.5 parent: 2 - - uid: 10364 + - uid: 2446 components: - type: Transform pos: -4.5,-301.5 parent: 2 - - uid: 10365 + - uid: 2447 components: - type: Transform pos: -4.5,-300.5 parent: 2 - - uid: 10366 + - uid: 2448 components: - type: Transform pos: -4.5,-299.5 parent: 2 - - uid: 10367 + - uid: 2449 components: - type: Transform pos: -4.5,-304.5 parent: 2 - - uid: 10368 + - uid: 2450 components: - type: Transform pos: -4.5,-305.5 parent: 2 - - uid: 10369 + - uid: 2451 components: - type: Transform pos: -1.5,-303.5 parent: 2 - - uid: 10370 + - uid: 2452 components: - type: Transform pos: -0.5,-303.5 parent: 2 - - uid: 10371 + - uid: 2453 components: - type: Transform pos: 0.5,-303.5 parent: 2 - - uid: 10372 + - uid: 2454 components: - type: Transform pos: 0.5,-302.5 parent: 2 - - uid: 10373 + - uid: 2455 components: - type: Transform pos: 0.5,-301.5 parent: 2 - - uid: 10374 + - uid: 2456 components: - type: Transform pos: 0.5,-300.5 parent: 2 - - uid: 10375 + - uid: 2457 components: - type: Transform pos: 0.5,-299.5 parent: 2 - - uid: 10376 + - uid: 2458 components: - type: Transform pos: 0.5,-298.5 parent: 2 - - uid: 10377 - components: - - type: Transform - pos: 0.5,-297.5 - parent: 2 - - uid: 10378 + - uid: 2459 components: - type: Transform pos: 0.5,-296.5 parent: 2 - - uid: 10379 + - uid: 2460 components: - type: Transform pos: 0.5,-295.5 parent: 2 - - uid: 10380 + - uid: 2461 components: - type: Transform pos: 0.5,-294.5 parent: 2 - - uid: 10381 + - uid: 2462 components: - type: Transform pos: -0.5,-295.5 parent: 2 - - uid: 10382 + - uid: 2463 components: - type: Transform pos: -1.5,-295.5 parent: 2 - - uid: 10383 + - uid: 2464 components: - type: Transform pos: 1.5,-295.5 parent: 2 - - uid: 10384 + - uid: 2465 components: - type: Transform pos: 2.5,-295.5 parent: 2 - - uid: 10385 + - uid: 2466 components: - type: Transform pos: -0.5,-297.5 parent: 2 - - uid: 10386 + - uid: 2467 components: - type: Transform pos: -1.5,-297.5 parent: 2 - - uid: 10387 + - uid: 2468 components: - type: Transform pos: -2.5,-297.5 parent: 2 - - uid: 10388 + - uid: 2469 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10389 + - uid: 2470 components: - type: Transform pos: -4.5,-297.5 parent: 2 - - uid: 10390 + - uid: 2471 components: - type: Transform pos: -5.5,-297.5 parent: 2 - - uid: 10391 + - uid: 2472 components: - type: Transform pos: -6.5,-297.5 parent: 2 - - uid: 10392 + - uid: 2473 components: - type: Transform pos: -7.5,-297.5 parent: 2 - - uid: 10393 + - uid: 2474 components: - type: Transform pos: 0.5,-304.5 parent: 2 - - uid: 10394 + - uid: 2475 components: - type: Transform pos: 1.5,-303.5 parent: 2 - - uid: 10395 + - uid: 2476 components: - type: Transform pos: 0.5,-305.5 parent: 2 - - uid: 10396 + - uid: 2477 components: - type: Transform pos: 0.5,-306.5 parent: 2 - - uid: 10397 + - uid: 2478 components: - type: Transform pos: -3.5,-320.5 parent: 2 - - uid: 10398 + - uid: 2479 components: - type: Transform pos: -3.5,-319.5 parent: 2 - - uid: 10399 + - uid: 2480 components: - type: Transform pos: -3.5,-318.5 parent: 2 - - uid: 10400 + - uid: 2481 components: - type: Transform pos: -3.5,-317.5 parent: 2 - - uid: 10401 + - uid: 2482 components: - type: Transform pos: -3.5,-316.5 parent: 2 - - uid: 10402 + - uid: 2483 components: - type: Transform pos: -3.5,-315.5 parent: 2 - - uid: 10407 + - uid: 2484 components: - type: Transform pos: -3.5,-314.5 parent: 2 - - uid: 10408 + - uid: 2485 components: - type: Transform pos: -3.5,-313.5 parent: 2 - - uid: 10409 + - uid: 2486 components: - type: Transform pos: -3.5,-312.5 parent: 2 - - uid: 10410 + - uid: 2487 components: - type: Transform pos: -3.5,-311.5 parent: 2 - - uid: 10411 + - uid: 2488 components: - type: Transform pos: -3.5,-310.5 parent: 2 - - uid: 10412 + - uid: 2489 components: - type: Transform pos: -3.5,-309.5 parent: 2 - - uid: 10413 + - uid: 2490 components: - type: Transform pos: -3.5,-308.5 parent: 2 - - uid: 10414 + - uid: 2491 components: - type: Transform pos: -2.5,-308.5 parent: 2 - - uid: 10415 + - uid: 2492 components: - type: Transform pos: -4.5,-308.5 parent: 2 - - uid: 10416 + - uid: 2493 components: - type: Transform pos: -3.5,-307.5 parent: 2 - - uid: 10417 + - uid: 2494 components: - type: Transform pos: -4.5,-314.5 parent: 2 - - uid: 10418 + - uid: 2495 components: - type: Transform pos: -5.5,-314.5 parent: 2 - - uid: 10419 + - uid: 2496 components: - type: Transform pos: -6.5,-314.5 parent: 2 - - uid: 10420 + - uid: 2497 components: - type: Transform pos: -7.5,-314.5 parent: 2 - - uid: 10421 + - uid: 2498 components: - type: Transform pos: -8.5,-314.5 parent: 2 - - uid: 10422 + - uid: 2499 components: - type: Transform pos: -4.5,-318.5 parent: 2 - - uid: 10423 + - uid: 2500 components: - type: Transform pos: -5.5,-318.5 parent: 2 - - uid: 10424 + - uid: 2501 components: - type: Transform pos: -6.5,-318.5 parent: 2 - - uid: 10425 + - uid: 2502 components: - type: Transform pos: -7.5,-318.5 parent: 2 - - uid: 10426 + - uid: 2503 components: - type: Transform pos: -8.5,-318.5 parent: 2 - - uid: 10427 + - uid: 2504 components: - type: Transform pos: -4.5,-316.5 parent: 2 - - uid: 10428 + - uid: 2505 components: - type: Transform pos: -5.5,-316.5 parent: 2 - - uid: 10429 + - uid: 2506 components: - type: Transform pos: -2.5,-317.5 parent: 2 - - uid: 10430 + - uid: 2507 components: - type: Transform pos: -1.5,-317.5 parent: 2 - - uid: 10431 + - uid: 2508 components: - type: Transform pos: -0.5,-317.5 parent: 2 - - uid: 10432 + - uid: 2509 components: - type: Transform pos: 0.5,-317.5 parent: 2 - - uid: 10433 + - uid: 2510 components: - type: Transform pos: 0.5,-318.5 parent: 2 - - uid: 10434 + - uid: 2511 components: - type: Transform pos: 0.5,-319.5 parent: 2 - - uid: 10435 - components: - - type: Transform - pos: 1.5,-319.5 - parent: 2 - - uid: 10436 + - uid: 2512 components: - type: Transform pos: 1.5,-317.5 parent: 2 - - uid: 10437 + - uid: 2513 components: - type: Transform pos: 0.5,-316.5 parent: 2 - - uid: 10438 + - uid: 2514 components: - type: Transform pos: 0.5,-320.5 parent: 2 - - uid: 10439 + - uid: 2515 components: - type: Transform pos: 0.5,-321.5 parent: 2 - - uid: 10440 + - uid: 2516 components: - type: Transform pos: -0.5,-321.5 parent: 2 - - uid: 10441 + - uid: 2517 components: - type: Transform pos: -1.5,-321.5 parent: 2 - - uid: 10442 + - uid: 2518 components: - type: Transform pos: 1.5,-321.5 parent: 2 - - uid: 10443 + - uid: 2519 components: - type: Transform pos: 0.5,-322.5 parent: 2 - - uid: 10444 + - uid: 2520 components: - type: Transform pos: 2.5,-321.5 parent: 2 - - uid: 10445 + - uid: 2521 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - uid: 10446 + - uid: 2522 components: - type: Transform pos: 3.5,-319.5 parent: 2 - - uid: 10447 + - uid: 2523 components: - type: Transform pos: 4.5,-319.5 parent: 2 - - uid: 10448 + - uid: 2524 components: - type: Transform pos: 5.5,-319.5 parent: 2 - - uid: 10449 + - uid: 2525 components: - type: Transform pos: 6.5,-319.5 parent: 2 - - uid: 10450 + - uid: 2526 components: - type: Transform pos: 6.5,-318.5 parent: 2 - - uid: 10451 + - uid: 2527 components: - type: Transform pos: 7.5,-318.5 parent: 2 - - uid: 10452 + - uid: 2528 components: - type: Transform pos: 8.5,-318.5 parent: 2 - - uid: 10453 + - uid: 2529 components: - type: Transform pos: 9.5,-318.5 parent: 2 - - uid: 10454 + - uid: 2530 components: - type: Transform pos: 10.5,-318.5 parent: 2 - - uid: 10455 + - uid: 2531 components: - type: Transform pos: 5.5,-317.5 parent: 2 - - uid: 10456 + - uid: 2532 components: - type: Transform pos: 5.5,-316.5 parent: 2 - - uid: 10457 + - uid: 2533 components: - type: Transform pos: 5.5,-315.5 parent: 2 - - uid: 10458 + - uid: 2534 components: - type: Transform pos: 5.5,-314.5 parent: 2 - - uid: 10459 + - uid: 2535 components: - type: Transform pos: 5.5,-313.5 parent: 2 - - uid: 10460 + - uid: 2536 components: - type: Transform pos: 5.5,-312.5 parent: 2 - - uid: 10461 + - uid: 2537 components: - type: Transform pos: 5.5,-311.5 parent: 2 - - uid: 10462 + - uid: 2538 components: - type: Transform pos: 5.5,-310.5 parent: 2 - - uid: 10463 + - uid: 2539 components: - type: Transform pos: 4.5,-313.5 parent: 2 - - uid: 10464 + - uid: 2540 components: - type: Transform pos: 3.5,-313.5 parent: 2 - - uid: 10465 + - uid: 2541 components: - type: Transform pos: 2.5,-313.5 parent: 2 - - uid: 10466 + - uid: 2542 components: - type: Transform pos: 6.5,-313.5 parent: 2 - - uid: 10467 + - uid: 2543 components: - type: Transform pos: 7.5,-313.5 parent: 2 - - uid: 10468 + - uid: 2544 components: - type: Transform pos: 6.5,-315.5 parent: 2 - - uid: 10469 + - uid: 2545 components: - type: Transform pos: 7.5,-315.5 parent: 2 - - uid: 10470 + - uid: 2546 components: - type: Transform pos: 8.5,-315.5 parent: 2 - - uid: 10471 + - uid: 2547 components: - type: Transform pos: 4.5,-315.5 parent: 2 - - uid: 10472 + - uid: 2548 components: - type: Transform pos: 3.5,-315.5 parent: 2 - - uid: 10473 + - uid: 2549 components: - type: Transform pos: 6.5,-311.5 parent: 2 - - uid: 10474 + - uid: 2550 components: - type: Transform pos: 7.5,-311.5 parent: 2 - - uid: 10475 + - uid: 2551 components: - type: Transform pos: 4.5,-311.5 parent: 2 - - uid: 10477 + - uid: 2552 components: - type: Transform pos: 3.5,-311.5 parent: 2 - - uid: 10478 + - uid: 2553 components: - type: Transform pos: 2.5,-301.5 parent: 2 - - uid: 10479 + - uid: 2554 components: - type: Transform pos: 3.5,-301.5 parent: 2 - - uid: 10480 + - uid: 2555 components: - type: Transform pos: 4.5,-301.5 parent: 2 - - uid: 10481 + - uid: 2556 components: - type: Transform pos: 5.5,-301.5 parent: 2 - - uid: 10482 + - uid: 2557 components: - type: Transform pos: 6.5,-301.5 parent: 2 - - uid: 10483 + - uid: 2558 components: - type: Transform pos: 6.5,-302.5 parent: 2 - - uid: 10484 + - uid: 2559 components: - type: Transform pos: 6.5,-303.5 parent: 2 - - uid: 10485 + - uid: 2560 components: - type: Transform pos: 6.5,-304.5 parent: 2 - - uid: 10486 + - uid: 2561 components: - type: Transform pos: 6.5,-305.5 parent: 2 - - uid: 10487 + - uid: 2562 components: - type: Transform pos: 6.5,-306.5 parent: 2 - - uid: 10488 + - uid: 2563 components: - type: Transform pos: 6.5,-307.5 parent: 2 - - uid: 10489 + - uid: 2564 components: - type: Transform pos: 5.5,-307.5 parent: 2 - - uid: 10490 + - uid: 2565 components: - type: Transform pos: 4.5,-307.5 parent: 2 - - uid: 10491 + - uid: 2566 components: - type: Transform pos: 3.5,-307.5 parent: 2 - - uid: 10492 + - uid: 2567 components: - type: Transform pos: 2.5,-307.5 parent: 2 - - uid: 10493 + - uid: 2568 components: - type: Transform pos: 7.5,-307.5 parent: 2 - - uid: 10494 + - uid: 2569 components: - type: Transform pos: 8.5,-307.5 parent: 2 - - uid: 10495 + - uid: 2570 components: - type: Transform pos: 9.5,-307.5 parent: 2 - - uid: 10496 + - uid: 2571 components: - type: Transform pos: 10.5,-307.5 parent: 2 - - uid: 10497 + - uid: 2572 components: - type: Transform pos: 11.5,-307.5 parent: 2 - - uid: 10498 + - uid: 2573 components: - type: Transform pos: 9.5,-308.5 parent: 2 - - uid: 10499 + - uid: 2574 components: - type: Transform pos: 9.5,-309.5 parent: 2 - - uid: 10500 + - uid: 2575 components: - type: Transform pos: 9.5,-310.5 parent: 2 - - uid: 10501 + - uid: 2576 components: - type: Transform pos: 9.5,-311.5 parent: 2 - - uid: 10502 + - uid: 2577 components: - type: Transform pos: 9.5,-312.5 parent: 2 - - uid: 10503 + - uid: 2578 components: - type: Transform pos: 9.5,-313.5 parent: 2 - - uid: 10504 + - uid: 2579 components: - type: Transform pos: 9.5,-306.5 parent: 2 - - uid: 10505 + - uid: 2580 components: - type: Transform pos: 9.5,-305.5 parent: 2 - - uid: 10506 + - uid: 2581 components: - type: Transform pos: 9.5,-304.5 parent: 2 - - uid: 10507 + - uid: 2582 components: - type: Transform pos: 9.5,-303.5 parent: 2 - - uid: 10508 + - uid: 2583 components: - type: Transform pos: 9.5,-302.5 parent: 2 - - uid: 10509 + - uid: 2584 components: - type: Transform pos: 9.5,-301.5 parent: 2 - - uid: 10510 + - uid: 2585 components: - type: Transform pos: 9.5,-300.5 parent: 2 - - uid: 10511 + - uid: 2586 components: - type: Transform pos: 9.5,-299.5 parent: 2 - - uid: 10512 + - uid: 2587 components: - type: Transform pos: 9.5,-298.5 parent: 2 - - uid: 10513 + - uid: 2588 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 10514 + - uid: 2589 components: - type: Transform pos: 1.5,-297.5 parent: 2 - - uid: 10515 + - uid: 2590 components: - type: Transform pos: 2.5,-297.5 parent: 2 - - uid: 10516 + - uid: 2591 components: - type: Transform pos: 3.5,-297.5 parent: 2 - - uid: 10517 + - uid: 2592 components: - type: Transform pos: 4.5,-297.5 parent: 2 - - uid: 10518 + - uid: 2593 components: - type: Transform pos: 5.5,-297.5 parent: 2 - - uid: 10519 + - uid: 2594 components: - type: Transform pos: 5.5,-303.5 parent: 2 - - uid: 10520 + - uid: 2595 components: - type: Transform pos: 4.5,-303.5 parent: 2 - - uid: 10521 + - uid: 2596 components: - type: Transform pos: 3.5,-303.5 parent: 2 - - uid: 10522 + - uid: 2597 components: - type: Transform pos: 7.5,-303.5 parent: 2 - - uid: 10523 + - uid: 2598 components: - type: Transform pos: 7.5,-301.5 parent: 2 - - uid: 10524 + - uid: 2599 components: - type: Transform pos: 4.5,-300.5 parent: 2 - - uid: 10525 + - uid: 2600 components: - type: Transform pos: 6.5,-300.5 parent: 2 - - uid: 10526 + - uid: 2601 components: - type: Transform pos: 4.5,-304.5 parent: 2 - - uid: 10527 + - uid: 2602 components: - type: Transform pos: 6.5,-308.5 parent: 2 - - uid: 10616 + - uid: 2603 components: - type: Transform pos: 0.5,-315.5 parent: 2 - - uid: 10617 + - uid: 2604 components: - type: Transform pos: 0.5,-314.5 parent: 2 - - uid: 10618 + - uid: 2605 components: - type: Transform pos: 0.5,-313.5 parent: 2 - - uid: 10619 + - uid: 2606 components: - type: Transform pos: 0.5,-312.5 parent: 2 - - uid: 10620 + - uid: 2607 components: - type: Transform pos: 0.5,-311.5 parent: 2 - - uid: 10621 + - uid: 2608 components: - type: Transform pos: 0.5,-310.5 parent: 2 - - uid: 10622 + - uid: 2609 components: - type: Transform pos: 0.5,-309.5 parent: 2 - - uid: 10707 + - uid: 2610 components: - type: Transform pos: -4.5,-329.5 parent: 2 - - uid: 10712 + - uid: 2611 components: - type: Transform pos: 7.5,-342.5 parent: 2 - - uid: 10764 + - uid: 2612 components: - type: Transform pos: -5.5,-335.5 parent: 2 - - uid: 10847 + - uid: 2613 components: - type: Transform pos: -1.5,-54.5 parent: 2 - - uid: 10861 + - uid: 2614 components: - type: Transform pos: -2.5,-330.5 parent: 2 - - uid: 10925 + - uid: 2615 components: - type: Transform pos: -17.5,-256.5 parent: 2 - - uid: 10939 + - uid: 2616 components: - type: Transform pos: 5.5,-267.5 parent: 2 - - uid: 10940 + - uid: 2617 components: - type: Transform pos: 0.5,-326.5 parent: 2 - - uid: 10941 + - uid: 2618 components: - type: Transform pos: 0.5,-327.5 parent: 2 - - uid: 10942 + - uid: 2619 components: - type: Transform pos: 0.5,-328.5 parent: 2 - - uid: 10943 + - uid: 2620 components: - type: Transform pos: 1.5,-327.5 parent: 2 - - uid: 10944 + - uid: 2621 components: - type: Transform pos: 2.5,-327.5 parent: 2 - - uid: 10945 + - uid: 2622 components: - type: Transform pos: -0.5,-327.5 parent: 2 - - uid: 10946 + - uid: 2623 components: - type: Transform pos: -1.5,-327.5 parent: 2 - - uid: 10947 + - uid: 2624 components: - type: Transform pos: 0.5,-329.5 parent: 2 - - uid: 10948 + - uid: 2625 components: - type: Transform pos: 0.5,-330.5 parent: 2 - - uid: 10949 + - uid: 2626 components: - type: Transform pos: 1.5,-330.5 parent: 2 - - uid: 10950 + - uid: 2627 components: - type: Transform pos: 2.5,-330.5 parent: 2 - - uid: 10951 + - uid: 2628 components: - type: Transform pos: 3.5,-330.5 parent: 2 - - uid: 10952 + - uid: 2629 components: - type: Transform pos: 4.5,-330.5 parent: 2 - - uid: 10953 + - uid: 2630 components: - type: Transform pos: 5.5,-330.5 parent: 2 - - uid: 10954 + - uid: 2631 components: - type: Transform pos: 6.5,-330.5 parent: 2 - - uid: 10955 + - uid: 2632 components: - type: Transform pos: 6.5,-329.5 parent: 2 - - uid: 10956 + - uid: 2633 components: - type: Transform pos: 6.5,-328.5 parent: 2 - - uid: 10958 + - uid: 2634 components: - type: Transform pos: 5.5,-331.5 parent: 2 - - uid: 10959 + - uid: 2635 components: - type: Transform pos: 5.5,-332.5 parent: 2 - - uid: 10960 + - uid: 2636 components: - type: Transform pos: 0.5,-331.5 parent: 2 - - uid: 10961 + - uid: 2637 components: - type: Transform pos: 0.5,-332.5 parent: 2 - - uid: 10965 + - uid: 2638 components: - type: Transform pos: -4.5,-330.5 parent: 2 - - uid: 10967 + - uid: 2639 components: - type: Transform pos: -6.5,-335.5 parent: 2 - - uid: 10974 + - uid: 2640 components: - type: Transform pos: -3.5,-334.5 parent: 2 - - uid: 10975 + - uid: 2641 components: - type: Transform pos: -4.5,-334.5 parent: 2 - - uid: 10978 + - uid: 2642 components: - type: Transform pos: -4.5,-335.5 parent: 2 - - uid: 10979 + - uid: 2643 components: - type: Transform pos: -4.5,-336.5 parent: 2 - - uid: 10980 + - uid: 2644 components: - type: Transform pos: -4.5,-337.5 parent: 2 - - uid: 10981 + - uid: 2645 components: - type: Transform pos: -4.5,-338.5 parent: 2 - - uid: 10982 + - uid: 2646 components: - type: Transform pos: -3.5,-347.5 parent: 2 - - uid: 10983 + - uid: 2647 components: - type: Transform pos: -3.5,-346.5 parent: 2 - - uid: 10984 + - uid: 2648 components: - type: Transform pos: -3.5,-345.5 parent: 2 - - uid: 10985 + - uid: 2649 components: - type: Transform pos: -3.5,-344.5 parent: 2 - - uid: 10986 + - uid: 2650 components: - type: Transform pos: -4.5,-345.5 parent: 2 - - uid: 10987 + - uid: 2651 components: - type: Transform pos: -4.5,-345.5 parent: 2 - - uid: 10988 + - uid: 2652 components: - type: Transform pos: -2.5,-345.5 parent: 2 - - uid: 10989 + - uid: 2653 components: - type: Transform pos: 4.5,-347.5 parent: 2 - - uid: 10990 + - uid: 2654 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 10991 + - uid: 2655 components: - type: Transform pos: 4.5,-345.5 parent: 2 - - uid: 11004 + - uid: 2656 components: - type: Transform pos: -4.5,-326.5 parent: 2 - - uid: 11005 + - uid: 2657 components: - type: Transform pos: -4.5,-327.5 parent: 2 - - uid: 11008 + - uid: 2658 components: - type: Transform pos: 3.5,-340.5 parent: 2 - - uid: 11009 + - uid: 2659 components: - type: Transform pos: 2.5,-340.5 parent: 2 - - uid: 11010 + - uid: 2660 components: - type: Transform pos: -4.5,-339.5 parent: 2 - - uid: 11011 + - uid: 2661 components: - type: Transform pos: -4.5,-340.5 parent: 2 - - uid: 11012 + - uid: 2662 components: - type: Transform pos: -4.5,-341.5 parent: 2 - - uid: 11013 + - uid: 2663 components: - type: Transform pos: -4.5,-342.5 parent: 2 - - uid: 11015 + - uid: 2664 components: - type: Transform pos: -3.5,-338.5 parent: 2 - - uid: 11016 + - uid: 2665 components: - type: Transform pos: -2.5,-338.5 parent: 2 - - uid: 11017 + - uid: 2666 components: - type: Transform pos: -1.5,-338.5 parent: 2 - - uid: 11018 + - uid: 2667 components: - type: Transform pos: -0.5,-338.5 parent: 2 - - uid: 11019 + - uid: 2668 components: - type: Transform pos: 0.5,-338.5 parent: 2 - - uid: 11020 + - uid: 2669 components: - type: Transform pos: -3.5,-341.5 parent: 2 - - uid: 11021 + - uid: 2670 components: - type: Transform pos: -2.5,-341.5 parent: 2 - - uid: 11022 + - uid: 2671 components: - type: Transform pos: -1.5,-341.5 parent: 2 - - uid: 11023 + - uid: 2672 components: - type: Transform pos: -0.5,-341.5 parent: 2 - - uid: 11024 + - uid: 2673 components: - type: Transform pos: 0.5,-341.5 parent: 2 - - uid: 11025 + - uid: 2674 components: - type: Transform pos: 0.5,-342.5 parent: 2 - - uid: 11026 + - uid: 2675 components: - type: Transform pos: 0.5,-343.5 parent: 2 - - uid: 11027 + - uid: 2676 components: - type: Transform pos: 0.5,-344.5 parent: 2 - - uid: 11028 + - uid: 2677 components: - type: Transform pos: 0.5,-345.5 parent: 2 - - uid: 11029 + - uid: 2678 components: - type: Transform pos: 0.5,-346.5 parent: 2 - - uid: 11030 + - uid: 2679 components: - type: Transform pos: 0.5,-347.5 parent: 2 - - uid: 11031 + - uid: 2680 components: - type: Transform pos: 0.5,-348.5 parent: 2 - - uid: 11032 + - uid: 2681 components: - type: Transform pos: 0.5,-349.5 parent: 2 - - uid: 11033 + - uid: 2682 components: - type: Transform pos: 1.5,-348.5 parent: 2 - - uid: 11034 + - uid: 2683 components: - type: Transform pos: 2.5,-348.5 parent: 2 - - uid: 11035 + - uid: 2684 components: - type: Transform pos: -0.5,-348.5 parent: 2 - - uid: 11036 + - uid: 2685 components: - type: Transform pos: -1.5,-348.5 parent: 2 - - uid: 11037 + - uid: 2686 components: - type: Transform pos: -5.5,-338.5 parent: 2 - - uid: 11038 + - uid: 2687 components: - type: Transform pos: -0.5,-337.5 parent: 2 - - uid: 11039 + - uid: 2688 components: - type: Transform pos: -0.5,-336.5 parent: 2 - - uid: 11040 + - uid: 2689 components: - type: Transform pos: -0.5,-335.5 parent: 2 - - uid: 11041 + - uid: 2690 components: - type: Transform pos: -0.5,-334.5 parent: 2 - - uid: 11042 + - uid: 2691 components: - type: Transform pos: -5.5,-341.5 parent: 2 - - uid: 11111 + - uid: 2692 components: - type: Transform pos: 7.5,-338.5 parent: 2 - - uid: 11547 + - uid: 2693 components: - type: Transform pos: 4.5,-340.5 parent: 2 - - uid: 11553 + - uid: 2694 components: - type: Transform pos: 0.5,-353.5 parent: 2 - - uid: 11555 + - uid: 2695 components: - type: Transform pos: 2.5,-354.5 parent: 2 - - uid: 11556 + - uid: 2696 components: - type: Transform pos: 0.5,-355.5 parent: 2 - - uid: 11558 + - uid: 2697 components: - type: Transform pos: 0.5,-354.5 parent: 2 - - uid: 11560 + - uid: 2698 components: - type: Transform pos: 1.5,-354.5 parent: 2 - - uid: 11561 + - uid: 2699 components: - type: Transform pos: -0.5,-354.5 parent: 2 - - uid: 11562 + - uid: 2700 components: - type: Transform pos: -1.5,-354.5 parent: 2 - - uid: 11564 + - uid: 2701 components: - type: Transform pos: 0.5,-356.5 parent: 2 - - uid: 11565 + - uid: 2702 components: - type: Transform pos: 0.5,-357.5 parent: 2 - - uid: 11566 + - uid: 2703 components: - type: Transform pos: 0.5,-358.5 parent: 2 - - uid: 11567 + - uid: 2704 components: - type: Transform pos: 0.5,-359.5 parent: 2 - - uid: 11568 + - uid: 2705 components: - type: Transform pos: 0.5,-360.5 parent: 2 - - uid: 11569 + - uid: 2706 components: - type: Transform pos: 0.5,-361.5 parent: 2 - - uid: 11570 + - uid: 2707 components: - type: Transform pos: 1.5,-361.5 parent: 2 - - uid: 11571 + - uid: 2708 components: - type: Transform pos: -0.5,-357.5 parent: 2 - - uid: 11572 + - uid: 2709 components: - type: Transform pos: -1.5,-357.5 parent: 2 - - uid: 11573 + - uid: 2710 components: - type: Transform pos: -2.5,-357.5 parent: 2 - - uid: 11574 + - uid: 2711 components: - type: Transform pos: -3.5,-357.5 parent: 2 - - uid: 11575 + - uid: 2712 components: - type: Transform pos: -4.5,-357.5 parent: 2 - - uid: 11576 + - uid: 2713 components: - type: Transform pos: -5.5,-357.5 parent: 2 - - uid: 11577 + - uid: 2714 components: - type: Transform pos: -6.5,-357.5 parent: 2 - - uid: 11578 + - uid: 2715 components: - type: Transform pos: -4.5,-356.5 parent: 2 - - uid: 11579 + - uid: 2716 components: - type: Transform pos: -4.5,-355.5 parent: 2 - - uid: 11580 + - uid: 2717 components: - type: Transform pos: -4.5,-358.5 parent: 2 - - uid: 11581 + - uid: 2718 components: - type: Transform pos: 1.5,-357.5 parent: 2 - - uid: 11582 + - uid: 2719 components: - type: Transform pos: 2.5,-357.5 parent: 2 - - uid: 11583 + - uid: 2720 components: - type: Transform pos: 3.5,-357.5 parent: 2 - - uid: 11584 + - uid: 2721 components: - type: Transform pos: 4.5,-357.5 parent: 2 - - uid: 11585 + - uid: 2722 components: - type: Transform pos: 5.5,-357.5 parent: 2 - - uid: 11586 + - uid: 2723 components: - type: Transform pos: 6.5,-357.5 parent: 2 - - uid: 11587 + - uid: 2724 components: - type: Transform pos: 7.5,-357.5 parent: 2 - - uid: 11588 + - uid: 2725 components: - type: Transform pos: 1.5,-359.5 parent: 2 - - uid: 11590 + - uid: 2726 components: - type: Transform pos: 1.5,-359.5 parent: 2 - - uid: 11591 + - uid: 2727 components: - type: Transform pos: 2.5,-359.5 parent: 2 - - uid: 11592 + - uid: 2728 components: - type: Transform pos: 2.5,-360.5 parent: 2 - - uid: 11593 + - uid: 2729 components: - type: Transform pos: 3.5,-360.5 parent: 2 - - uid: 11594 + - uid: 2730 components: - type: Transform pos: 4.5,-360.5 parent: 2 - - uid: 11595 + - uid: 2731 components: - type: Transform pos: 5.5,-360.5 parent: 2 - - uid: 11596 + - uid: 2732 components: - type: Transform pos: 6.5,-360.5 parent: 2 - - uid: 11597 + - uid: 2733 components: - type: Transform pos: 7.5,-360.5 parent: 2 - - uid: 11598 + - uid: 2734 components: - type: Transform pos: 3.5,-361.5 parent: 2 - - uid: 11599 + - uid: 2735 components: - type: Transform pos: 3.5,-362.5 parent: 2 - - uid: 11600 + - uid: 2736 components: - type: Transform pos: 3.5,-363.5 parent: 2 - - uid: 11601 + - uid: 2737 components: - type: Transform pos: 3.5,-364.5 parent: 2 - - uid: 11602 + - uid: 2738 components: - type: Transform pos: 3.5,-365.5 parent: 2 - - uid: 11603 + - uid: 2739 components: - type: Transform pos: 3.5,-366.5 parent: 2 - - uid: 11604 + - uid: 2740 components: - type: Transform pos: -0.5,-359.5 parent: 2 - - uid: 11605 + - uid: 2741 components: - type: Transform pos: -1.5,-359.5 parent: 2 - - uid: 11606 + - uid: 2742 components: - type: Transform pos: -1.5,-360.5 parent: 2 - - uid: 11607 + - uid: 2743 components: - type: Transform pos: -2.5,-360.5 parent: 2 - - uid: 11608 + - uid: 2744 components: - type: Transform pos: -2.5,-361.5 parent: 2 - - uid: 11609 + - uid: 2745 components: - type: Transform pos: -2.5,-362.5 parent: 2 - - uid: 11610 + - uid: 2746 components: - type: Transform pos: -2.5,-363.5 parent: 2 - - uid: 11611 + - uid: 2747 components: - type: Transform pos: -2.5,-364.5 parent: 2 - - uid: 11612 + - uid: 2748 components: - type: Transform pos: -2.5,-365.5 parent: 2 - - uid: 11613 + - uid: 2749 components: - type: Transform pos: -2.5,-366.5 parent: 2 - - uid: 11614 + - uid: 2750 components: - type: Transform pos: -3.5,-360.5 parent: 2 - - uid: 11615 + - uid: 2751 components: - type: Transform pos: -4.5,-360.5 parent: 2 - - uid: 11616 + - uid: 2752 components: - type: Transform pos: -5.5,-360.5 parent: 2 - - uid: 11617 + - uid: 2753 components: - type: Transform pos: -3.5,-363.5 parent: 2 - - uid: 11618 + - uid: 2754 components: - type: Transform pos: -4.5,-363.5 parent: 2 - - uid: 11619 + - uid: 2755 components: - type: Transform pos: -5.5,-363.5 parent: 2 - - uid: 11620 + - uid: 2756 components: - type: Transform pos: -3.5,-366.5 parent: 2 - - uid: 11621 + - uid: 2757 components: - type: Transform pos: -4.5,-366.5 parent: 2 - - uid: 11622 + - uid: 2758 components: - type: Transform pos: -5.5,-366.5 parent: 2 - - uid: 11623 + - uid: 2759 components: - type: Transform pos: -3.5,-367.5 parent: 2 - - uid: 11624 + - uid: 2760 components: - type: Transform pos: -3.5,-368.5 parent: 2 - - uid: 11625 + - uid: 2761 components: - type: Transform pos: -3.5,-369.5 parent: 2 - - uid: 11626 + - uid: 2762 components: - type: Transform pos: -3.5,-370.5 parent: 2 - - uid: 11627 + - uid: 2763 components: - type: Transform pos: -3.5,-371.5 parent: 2 - - uid: 11628 + - uid: 2764 components: - type: Transform pos: -3.5,-372.5 parent: 2 - - uid: 11629 + - uid: 2765 components: - type: Transform pos: 4.5,-367.5 parent: 2 - - uid: 11630 + - uid: 2766 components: - type: Transform pos: 4.5,-368.5 parent: 2 - - uid: 11631 + - uid: 2767 components: - type: Transform pos: 4.5,-369.5 parent: 2 - - uid: 11632 + - uid: 2768 components: - type: Transform pos: 4.5,-370.5 parent: 2 - - uid: 11633 + - uid: 2769 components: - type: Transform pos: 4.5,-371.5 parent: 2 - - uid: 11634 + - uid: 2770 components: - type: Transform pos: 4.5,-372.5 parent: 2 - - uid: 11635 + - uid: 2771 components: - type: Transform pos: 4.5,-366.5 parent: 2 - - uid: 11636 + - uid: 2772 components: - type: Transform pos: 5.5,-366.5 parent: 2 - - uid: 11638 + - uid: 2773 components: - type: Transform pos: 6.5,-366.5 parent: 2 - - uid: 11639 + - uid: 2774 components: - type: Transform pos: 7.5,-366.5 parent: 2 - - uid: 11640 + - uid: 2775 components: - type: Transform pos: 4.5,-363.5 parent: 2 - - uid: 11641 + - uid: 2776 components: - type: Transform pos: 5.5,-363.5 parent: 2 - - uid: 11642 + - uid: 2777 components: - type: Transform pos: 6.5,-363.5 parent: 2 - - uid: 11643 + - uid: 2778 components: - type: Transform pos: 7.5,-363.5 parent: 2 - - uid: 11644 + - uid: 2779 components: - type: Transform pos: -6.5,-363.5 parent: 2 - - uid: 11645 + - uid: 2780 components: - type: Transform pos: -6.5,-366.5 parent: 2 - - uid: 11647 + - uid: 2781 components: - type: Transform pos: -6.5,-360.5 parent: 2 - - uid: 11648 + - uid: 2782 components: - type: Transform pos: -4.5,-360.5 parent: 2 - - uid: 11650 + - uid: 2783 components: - type: Transform pos: 5.5,-371.5 parent: 2 - - uid: 11651 + - uid: 2784 components: - type: Transform pos: 6.5,-371.5 parent: 2 - - uid: 11652 + - uid: 2785 components: - type: Transform pos: 4.5,-373.5 parent: 2 - - uid: 11654 + - uid: 2786 components: - type: Transform pos: 3.5,-371.5 parent: 2 - - uid: 11655 + - uid: 2787 components: - type: Transform pos: 2.5,-371.5 parent: 2 - - uid: 11656 + - uid: 2788 components: - type: Transform pos: 1.5,-371.5 parent: 2 - - uid: 11657 + - uid: 2789 components: - type: Transform pos: -2.5,-371.5 parent: 2 - - uid: 11658 + - uid: 2790 components: - type: Transform pos: -4.5,-371.5 parent: 2 - - uid: 11659 + - uid: 2791 components: - type: Transform pos: -3.5,-373.5 parent: 2 - - uid: 11660 + - uid: 2792 components: - type: Transform pos: -5.5,-371.5 parent: 2 - - uid: 11662 + - uid: 2793 components: - type: Transform pos: -1.5,-371.5 parent: 2 - - uid: 11663 + - uid: 2794 components: - type: Transform pos: -0.5,-371.5 parent: 2 - - uid: 11664 + - uid: 2795 components: - type: Transform pos: 1.5,-372.5 parent: 2 - - uid: 11665 + - uid: 2796 components: - type: Transform pos: 1.5,-373.5 parent: 2 - - uid: 11666 + - uid: 2797 components: - type: Transform pos: 1.5,-370.5 parent: 2 - - uid: 11667 + - uid: 2798 components: - type: Transform pos: -0.5,-370.5 parent: 2 - - uid: 11668 + - uid: 2799 components: - type: Transform pos: -0.5,-372.5 parent: 2 - - uid: 11669 + - uid: 2800 components: - type: Transform pos: -0.5,-373.5 parent: 2 - - uid: 11678 + - uid: 2801 components: - type: Transform pos: 0.5,-363.5 parent: 2 - - uid: 11679 + - uid: 2802 components: - type: Transform pos: 0.5,-364.5 parent: 2 - - uid: 11680 + - uid: 2803 components: - type: Transform pos: 0.5,-365.5 parent: 2 - - uid: 11681 + - uid: 2804 components: - type: Transform pos: 0.5,-366.5 parent: 2 - - uid: 11682 + - uid: 2805 components: - type: Transform pos: 0.5,-367.5 parent: 2 - - uid: 11683 + - uid: 2806 components: - type: Transform pos: 0.5,-368.5 parent: 2 - - uid: 11951 + - uid: 2807 components: - type: Transform pos: 7.5,-344.5 parent: 2 - - uid: 12025 + - uid: 2808 components: - type: Transform pos: 4.5,-336.5 parent: 2 - - uid: 12058 + - uid: 2809 components: - type: Transform pos: 7.5,-334.5 parent: 2 - - uid: 12061 + - uid: 2810 components: - type: Transform pos: -2.5,-314.5 parent: 2 - - uid: 12065 + - uid: 2811 components: - type: Transform pos: 4.5,-117.5 parent: 2 - - uid: 12066 + - uid: 2812 components: - type: Transform pos: 3.5,-117.5 parent: 2 - - uid: 12092 + - uid: 2813 components: - type: Transform pos: 5.5,-342.5 parent: 2 - - uid: 12106 + - uid: 2814 components: - type: Transform pos: 5.5,-341.5 parent: 2 - - uid: 12112 + - uid: 2815 components: - type: Transform pos: 7.5,-336.5 parent: 2 - - uid: 12167 + - uid: 2816 components: - type: Transform pos: -1.5,-11.5 parent: 2 - - uid: 12332 + - uid: 2817 components: - type: Transform pos: 16.5,-252.5 parent: 2 - - uid: 12471 + - uid: 2818 components: - type: Transform pos: 16.5,-251.5 parent: 2 - - uid: 12495 + - uid: 2819 components: - type: Transform pos: 16.5,-253.5 parent: 2 - - uid: 13215 + - uid: 2820 + components: + - type: Transform + pos: 4.5,-86.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: 0.5,-297.5 + parent: 2 + - uid: 2822 components: - type: Transform pos: 19.5,-245.5 parent: 2 - - uid: 13274 + - uid: 2823 components: - type: Transform pos: 16.5,-249.5 parent: 2 - - uid: 13283 + - uid: 2824 components: - type: Transform pos: 14.5,-249.5 parent: 2 - - uid: 13284 + - uid: 2825 components: - type: Transform pos: 16.5,-248.5 parent: 2 - - uid: 13285 + - uid: 2826 components: - type: Transform pos: 18.5,-244.5 parent: 2 - - uid: 13302 + - uid: 2827 components: - type: Transform pos: -7.5,-308.5 parent: 2 - - uid: 13436 + - uid: 2828 components: - type: Transform pos: 8.5,-137.5 parent: 2 - - uid: 13437 + - uid: 2829 components: - type: Transform pos: 8.5,-136.5 parent: 2 - - uid: 13438 + - uid: 2830 components: - type: Transform pos: 7.5,-136.5 parent: 2 - - uid: 13439 + - uid: 2831 components: - type: Transform pos: 7.5,-135.5 parent: 2 - - uid: 13440 + - uid: 2832 components: - type: Transform pos: 6.5,-135.5 parent: 2 - - uid: 13441 + - uid: 2833 components: - type: Transform pos: 5.5,-135.5 parent: 2 - - uid: 13442 + - uid: 2834 components: - type: Transform pos: 5.5,-134.5 parent: 2 - - uid: 14005 + - uid: 2835 components: - type: Transform pos: -6.5,-164.5 parent: 2 - - uid: 14015 + - uid: 2836 components: - type: Transform pos: 7.5,-254.5 parent: 2 - - uid: 14016 + - uid: 2837 components: - type: Transform pos: 19.5,-255.5 parent: 2 - - uid: 14017 + - uid: 2838 components: - type: Transform pos: 15.5,-256.5 parent: 2 - - uid: 14514 + - uid: 2839 components: - type: Transform pos: 18.5,-84.5 parent: 2 - - uid: 14515 + - uid: 2840 components: - type: Transform pos: 17.5,-84.5 parent: 2 - - uid: 14516 + - uid: 2841 components: - type: Transform pos: 16.5,-84.5 parent: 2 - - uid: 14517 + - uid: 2842 components: - type: Transform pos: 15.5,-84.5 parent: 2 - - uid: 14518 + - uid: 2843 components: - type: Transform pos: 15.5,-83.5 parent: 2 - - uid: 14519 + - uid: 2844 components: - type: Transform pos: 15.5,-82.5 parent: 2 - - uid: 14520 + - uid: 2845 components: - type: Transform pos: 15.5,-81.5 parent: 2 - - uid: 14521 + - uid: 2846 components: - type: Transform pos: 15.5,-80.5 parent: 2 - - uid: 14522 + - uid: 2847 components: - type: Transform pos: 15.5,-79.5 parent: 2 - - uid: 14523 + - uid: 2848 components: - type: Transform pos: 15.5,-78.5 parent: 2 - - uid: 14524 + - uid: 2849 components: - type: Transform pos: 15.5,-77.5 parent: 2 - - uid: 14525 + - uid: 2850 components: - type: Transform pos: 15.5,-76.5 parent: 2 - - uid: 14526 + - uid: 2851 components: - type: Transform pos: 15.5,-75.5 parent: 2 - - uid: 14527 + - uid: 2852 components: - type: Transform pos: 15.5,-74.5 parent: 2 - - uid: 14528 + - uid: 2853 components: - type: Transform pos: 15.5,-73.5 parent: 2 - - uid: 14529 + - uid: 2854 components: - type: Transform pos: 15.5,-72.5 parent: 2 - - uid: 14530 + - uid: 2855 components: - type: Transform pos: 15.5,-71.5 parent: 2 - - uid: 14531 + - uid: 2856 components: - type: Transform pos: 15.5,-70.5 parent: 2 - - uid: 14532 + - uid: 2857 components: - type: Transform pos: 15.5,-69.5 parent: 2 - - uid: 14533 + - uid: 2858 components: - type: Transform pos: 15.5,-68.5 parent: 2 - - uid: 14534 + - uid: 2859 components: - type: Transform pos: 15.5,-67.5 parent: 2 - - uid: 14535 + - uid: 2860 components: - type: Transform pos: 15.5,-66.5 parent: 2 - - uid: 14536 + - uid: 2861 components: - type: Transform pos: 15.5,-65.5 parent: 2 - - uid: 14537 + - uid: 2862 components: - type: Transform pos: 15.5,-64.5 parent: 2 - - uid: 14538 + - uid: 2863 components: - type: Transform pos: 15.5,-63.5 parent: 2 - - uid: 14539 + - uid: 2864 components: - type: Transform pos: 15.5,-62.5 parent: 2 - - uid: 14540 + - uid: 2865 components: - type: Transform pos: 15.5,-61.5 parent: 2 - - uid: 14541 + - uid: 2866 components: - type: Transform pos: 15.5,-60.5 parent: 2 - - uid: 14542 + - uid: 2867 components: - type: Transform pos: 14.5,-61.5 parent: 2 - - uid: 14543 + - uid: 2868 components: - type: Transform pos: 13.5,-61.5 parent: 2 - - uid: 14544 + - uid: 2869 components: - type: Transform pos: 16.5,-61.5 parent: 2 - - uid: 14545 + - uid: 2870 components: - type: Transform pos: 17.5,-61.5 parent: 2 - - uid: 14546 + - uid: 2871 components: - type: Transform pos: 14.5,-69.5 parent: 2 - - uid: 14547 + - uid: 2872 components: - type: Transform pos: 13.5,-69.5 parent: 2 - - uid: 14548 + - uid: 2873 components: - type: Transform pos: 16.5,-69.5 parent: 2 - - uid: 14549 + - uid: 2874 components: - type: Transform pos: 17.5,-69.5 parent: 2 - - uid: 14550 + - uid: 2875 components: - type: Transform pos: 16.5,-73.5 parent: 2 - - uid: 14551 + - uid: 2876 components: - type: Transform pos: 17.5,-73.5 parent: 2 - - uid: 14552 + - uid: 2877 components: - type: Transform pos: 14.5,-73.5 parent: 2 - - uid: 14553 + - uid: 2878 components: - type: Transform pos: 13.5,-73.5 parent: 2 - - uid: 14555 + - uid: 2879 components: - type: Transform pos: 14.5,-81.5 parent: 2 - - uid: 14556 + - uid: 2880 components: - type: Transform pos: 13.5,-81.5 parent: 2 - - uid: 14557 + - uid: 2881 components: - type: Transform pos: 16.5,-81.5 parent: 2 - - uid: 14558 + - uid: 2882 components: - type: Transform pos: 17.5,-81.5 parent: 2 - - uid: 14559 + - uid: 2883 components: - type: Transform pos: 12.5,-81.5 parent: 2 - - uid: 14560 + - uid: 2884 components: - type: Transform pos: 11.5,-81.5 parent: 2 - - uid: 14561 + - uid: 2885 components: - type: Transform pos: 10.5,-81.5 parent: 2 - - uid: 14562 + - uid: 2886 components: - type: Transform pos: 9.5,-81.5 parent: 2 - - uid: 14574 + - uid: 2887 components: - type: Transform pos: -4.5,-104.5 parent: 2 - - uid: 14623 + - uid: 2888 components: - type: Transform pos: -4.5,-325.5 parent: 2 - - uid: 14650 + - uid: 2889 components: - type: Transform pos: 4.5,-247.5 parent: 2 - - uid: 14663 + - uid: 2890 components: - type: Transform pos: -3.5,-247.5 parent: 2 - - uid: 14664 + - uid: 2891 components: - type: Transform pos: -2.5,-247.5 parent: 2 - - uid: 14665 + - uid: 2892 components: - type: Transform pos: -1.5,-247.5 parent: 2 - - uid: 14666 + - uid: 2893 components: - type: Transform pos: -0.5,-247.5 parent: 2 - - uid: 14667 + - uid: 2894 components: - type: Transform pos: 0.5,-247.5 parent: 2 - - uid: 14668 + - uid: 2895 components: - type: Transform pos: 1.5,-247.5 parent: 2 - - uid: 14669 + - uid: 2896 components: - type: Transform pos: 2.5,-247.5 parent: 2 - - uid: 14670 + - uid: 2897 components: - type: Transform pos: 0.5,-246.5 parent: 2 - - uid: 14671 + - uid: 2898 components: - type: Transform pos: 0.5,-245.5 parent: 2 - - uid: 14672 + - uid: 2899 components: - type: Transform pos: 0.5,-244.5 parent: 2 - - uid: 14673 + - uid: 2900 components: - type: Transform pos: 0.5,-243.5 parent: 2 - - uid: 14674 + - uid: 2901 components: - type: Transform pos: -0.5,-243.5 parent: 2 - - uid: 14675 + - uid: 2902 components: - type: Transform pos: 1.5,-243.5 parent: 2 - - uid: 14676 + - uid: 2903 components: - type: Transform pos: -1.5,-243.5 parent: 2 - - uid: 14677 + - uid: 2904 components: - type: Transform pos: -2.5,-243.5 parent: 2 - - uid: 14678 + - uid: 2905 components: - type: Transform pos: -3.5,-243.5 parent: 2 - - uid: 14679 + - uid: 2906 components: - type: Transform pos: -4.5,-243.5 parent: 2 - - uid: 14684 + - uid: 2907 components: - type: Transform pos: -16.5,-255.5 parent: 2 - - uid: 14692 + - uid: 2908 components: - type: Transform pos: -6.5,-252.5 parent: 2 - - uid: 14693 + - uid: 2909 components: - type: Transform pos: -6.5,-253.5 parent: 2 - - uid: 14694 + - uid: 2910 components: - type: Transform pos: -6.5,-254.5 parent: 2 - - uid: 14695 + - uid: 2911 components: - type: Transform pos: -6.5,-255.5 parent: 2 - - uid: 14696 + - uid: 2912 components: - type: Transform pos: -6.5,-256.5 parent: 2 - - uid: 14697 + - uid: 2913 components: - type: Transform pos: -6.5,-257.5 parent: 2 - - uid: 14698 + - uid: 2914 components: - type: Transform pos: -0.5,-248.5 parent: 2 - - uid: 14699 + - uid: 2915 components: - type: Transform pos: -0.5,-249.5 parent: 2 - - uid: 14700 + - uid: 2916 components: - type: Transform pos: -0.5,-250.5 parent: 2 - - uid: 14701 + - uid: 2917 components: - type: Transform pos: -0.5,-251.5 parent: 2 - - uid: 14702 + - uid: 2918 components: - type: Transform pos: -0.5,-252.5 parent: 2 - - uid: 14703 + - uid: 2919 components: - type: Transform pos: -0.5,-253.5 parent: 2 - - uid: 14704 + - uid: 2920 components: - type: Transform pos: -0.5,-254.5 parent: 2 - - uid: 14705 + - uid: 2921 components: - type: Transform pos: -0.5,-255.5 parent: 2 - - uid: 14706 + - uid: 2922 components: - type: Transform pos: -0.5,-256.5 parent: 2 - - uid: 14707 + - uid: 2923 components: - type: Transform pos: -0.5,-257.5 parent: 2 - - uid: 14708 + - uid: 2924 components: - type: Transform pos: -0.5,-258.5 parent: 2 - - uid: 14709 + - uid: 2925 components: - type: Transform pos: -0.5,-259.5 parent: 2 - - uid: 14710 + - uid: 2926 components: - type: Transform pos: -0.5,-260.5 parent: 2 - - uid: 14711 + - uid: 2927 components: - type: Transform pos: 0.5,-260.5 parent: 2 - - uid: 14712 + - uid: 2928 components: - type: Transform pos: 1.5,-260.5 parent: 2 - - uid: 14713 + - uid: 2929 components: - type: Transform pos: -1.5,-260.5 parent: 2 - - uid: 14714 + - uid: 2930 components: - type: Transform pos: -2.5,-260.5 parent: 2 - - uid: 14715 + - uid: 2931 components: - type: Transform pos: -3.5,-260.5 parent: 2 - - uid: 14716 + - uid: 2932 components: - type: Transform pos: -4.5,-260.5 parent: 2 - - uid: 14717 + - uid: 2933 components: - type: Transform pos: -4.5,-261.5 parent: 2 - - uid: 14718 + - uid: 2934 components: - type: Transform pos: 0.5,-256.5 parent: 2 - - uid: 14720 + - uid: 2935 components: - type: Transform pos: -2.5,-190.5 parent: 2 - - uid: 14721 + - uid: 2936 components: - type: Transform pos: -3.5,-190.5 parent: 2 - - uid: 14722 + - uid: 2937 components: - type: Transform pos: -4.5,-190.5 parent: 2 - - uid: 14723 + - uid: 2938 components: - type: Transform pos: -5.5,-190.5 parent: 2 - - uid: 14724 + - uid: 2939 components: - type: Transform pos: -6.5,-190.5 parent: 2 - - uid: 14725 + - uid: 2940 components: - type: Transform pos: -7.5,-190.5 parent: 2 - - uid: 14763 + - uid: 2941 components: - type: Transform pos: -4.5,-26.5 parent: 2 - - uid: 14764 + - uid: 2942 components: - type: Transform pos: -4.5,-31.5 parent: 2 - - uid: 14802 + - uid: 2943 components: - type: Transform pos: -0.5,-54.5 parent: 2 - - uid: 14906 + - uid: 2944 components: - type: Transform pos: -9.5,-132.5 parent: 2 - - uid: 14907 + - uid: 2945 components: - type: Transform pos: -10.5,-132.5 parent: 2 - - uid: 14930 + - uid: 2946 components: - type: Transform pos: -10.5,-133.5 parent: 2 - - uid: 14947 + - uid: 2947 components: - type: Transform pos: -10.5,-134.5 parent: 2 - - uid: 14951 + - uid: 2948 components: - type: Transform pos: -3.5,-133.5 parent: 2 - - uid: 14952 + - uid: 2949 components: - type: Transform pos: -4.5,-133.5 parent: 2 - - uid: 14953 + - uid: 2950 components: - type: Transform pos: -4.5,-132.5 parent: 2 - - uid: 14954 + - uid: 2951 components: - type: Transform pos: -5.5,-132.5 parent: 2 - - uid: 14955 + - uid: 2952 components: - type: Transform pos: -6.5,-132.5 parent: 2 - - uid: 14956 + - uid: 2953 components: - type: Transform pos: -7.5,-132.5 parent: 2 - - uid: 14957 + - uid: 2954 components: - type: Transform pos: -7.5,-133.5 parent: 2 - - uid: 14958 + - uid: 2955 components: - type: Transform pos: -7.5,-134.5 parent: 2 - - uid: 14959 + - uid: 2956 components: - type: Transform pos: -7.5,-135.5 parent: 2 - - uid: 14960 + - uid: 2957 components: - type: Transform pos: -7.5,-136.5 parent: 2 - - uid: 14961 + - uid: 2958 components: - type: Transform pos: -8.5,-137.5 parent: 2 - - uid: 14962 + - uid: 2959 components: - type: Transform pos: -8.5,-136.5 parent: 2 - - uid: 14963 + - uid: 2960 components: - type: Transform pos: -8.5,-138.5 parent: 2 - - uid: 14964 + - uid: 2961 components: - type: Transform pos: -8.5,-139.5 parent: 2 - - uid: 14965 + - uid: 2962 components: - type: Transform pos: -8.5,-140.5 parent: 2 - - uid: 14966 + - uid: 2963 components: - type: Transform pos: -8.5,-141.5 parent: 2 - - uid: 14967 + - uid: 2964 components: - type: Transform pos: -8.5,-142.5 parent: 2 - - uid: 14968 + - uid: 2965 components: - type: Transform pos: -8.5,-143.5 parent: 2 - - uid: 14969 + - uid: 2966 components: - type: Transform pos: -8.5,-144.5 parent: 2 - - uid: 14970 + - uid: 2967 components: - type: Transform pos: -8.5,-145.5 parent: 2 - - uid: 14971 + - uid: 2968 components: - type: Transform pos: -8.5,-146.5 parent: 2 - - uid: 14972 + - uid: 2969 components: - type: Transform pos: -8.5,-147.5 parent: 2 - - uid: 14973 + - uid: 2970 components: - type: Transform pos: -8.5,-148.5 parent: 2 - - uid: 14974 + - uid: 2971 components: - type: Transform pos: -8.5,-149.5 parent: 2 - - uid: 14975 + - uid: 2972 components: - type: Transform pos: -8.5,-150.5 parent: 2 - - uid: 14976 + - uid: 2973 components: - type: Transform pos: -8.5,-151.5 parent: 2 - - uid: 14991 + - uid: 2974 components: - type: Transform pos: -4.5,-157.5 parent: 2 - - uid: 14993 + - uid: 2975 components: - type: Transform pos: -8.5,-152.5 parent: 2 - - uid: 14994 + - uid: 2976 components: - type: Transform pos: -8.5,-153.5 parent: 2 - - uid: 14995 + - uid: 2977 components: - type: Transform pos: -8.5,-154.5 parent: 2 - - uid: 14996 + - uid: 2978 components: - type: Transform pos: -7.5,-154.5 parent: 2 - - uid: 14997 + - uid: 2979 components: - type: Transform pos: -6.5,-154.5 parent: 2 - - uid: 14998 + - uid: 2980 components: - type: Transform pos: -4.5,-155.5 parent: 2 - - uid: 14999 + - uid: 2981 components: - type: Transform pos: -4.5,-156.5 parent: 2 - - uid: 15000 + - uid: 2982 components: - type: Transform pos: -4.5,-158.5 parent: 2 - - uid: 15001 + - uid: 2983 components: - type: Transform pos: -4.5,-131.5 parent: 2 - - uid: 15002 + - uid: 2984 components: - type: Transform pos: 5.5,-126.5 parent: 2 - - uid: 15003 + - uid: 2985 components: - type: Transform pos: 5.5,-127.5 parent: 2 - - uid: 15004 + - uid: 2986 components: - type: Transform pos: 5.5,-128.5 parent: 2 - - uid: 15005 + - uid: 2987 components: - type: Transform pos: 5.5,-129.5 parent: 2 - - uid: 15006 + - uid: 2988 components: - type: Transform pos: -4.5,-100.5 parent: 2 - - uid: 15007 + - uid: 2989 components: - type: Transform pos: -4.5,-101.5 parent: 2 - - uid: 15008 + - uid: 2990 components: - type: Transform pos: -4.5,-102.5 parent: 2 - - uid: 15009 + - uid: 2991 components: - type: Transform pos: 5.5,-98.5 parent: 2 - - uid: 15010 + - uid: 2992 components: - type: Transform pos: 5.5,-99.5 parent: 2 - - uid: 15011 + - uid: 2993 components: - type: Transform pos: 5.5,-100.5 parent: 2 - - uid: 15012 + - uid: 2994 components: - type: Transform pos: 5.5,-101.5 parent: 2 - - uid: 15013 + - uid: 2995 components: - type: Transform pos: 5.5,-102.5 parent: 2 - - uid: 15014 + - uid: 2996 components: - type: Transform pos: -4.5,-80.5 parent: 2 - - uid: 15015 + - uid: 2997 components: - type: Transform pos: -4.5,-79.5 parent: 2 - - uid: 15016 + - uid: 2998 components: - type: Transform pos: -4.5,-78.5 parent: 2 - - uid: 15017 + - uid: 2999 components: - type: Transform pos: -4.5,-77.5 parent: 2 - - uid: 15018 + - uid: 3000 components: - type: Transform pos: 5.5,-79.5 parent: 2 - - uid: 15019 + - uid: 3001 components: - type: Transform pos: 5.5,-78.5 parent: 2 - - uid: 15020 + - uid: 3002 components: - type: Transform pos: 5.5,-77.5 parent: 2 - - uid: 15021 + - uid: 3003 components: - type: Transform pos: 5.5,-46.5 parent: 2 - - uid: 15022 + - uid: 3004 components: - type: Transform pos: 5.5,-47.5 parent: 2 - - uid: 15023 + - uid: 3005 components: - type: Transform pos: 5.5,-48.5 parent: 2 - - uid: 15024 + - uid: 3006 components: - type: Transform pos: -4.5,-19.5 parent: 2 - - uid: 15025 + - uid: 3007 components: - type: Transform pos: -4.5,-20.5 parent: 2 - - uid: 15026 + - uid: 3008 components: - type: Transform pos: -4.5,-21.5 parent: 2 - - uid: 15027 + - uid: 3009 components: - type: Transform pos: -10.5,-135.5 parent: 2 - - uid: 15127 + - uid: 3010 components: - type: Transform pos: 5.5,-160.5 parent: 2 - - uid: 15128 + - uid: 3011 components: - type: Transform pos: 5.5,-159.5 parent: 2 - - uid: 15129 + - uid: 3012 components: - type: Transform pos: 5.5,-158.5 parent: 2 - - uid: 15130 + - uid: 3013 components: - type: Transform pos: 5.5,-157.5 parent: 2 - - uid: 15131 + - uid: 3014 components: - type: Transform pos: -4.5,-182.5 parent: 2 - - uid: 15132 + - uid: 3015 components: - type: Transform pos: -4.5,-183.5 parent: 2 - - uid: 15153 + - uid: 3016 components: - type: Transform pos: 8.5,-120.5 parent: 2 - - uid: 15154 + - uid: 3017 components: - type: Transform pos: 9.5,-120.5 parent: 2 - - uid: 15235 + - uid: 3018 components: - type: Transform pos: 5.5,-247.5 parent: 2 - - uid: 15257 + - uid: 3019 components: - type: Transform pos: 3.5,-245.5 parent: 2 - - uid: 15258 + - uid: 3020 components: - type: Transform pos: 3.5,-244.5 parent: 2 - - uid: 15259 + - uid: 3021 components: - type: Transform pos: 3.5,-246.5 parent: 2 - - uid: 15587 + - uid: 3022 components: - type: Transform pos: 5.5,-266.5 parent: 2 - - uid: 15588 + - uid: 3023 components: - type: Transform pos: 5.5,-262.5 parent: 2 - - uid: 15746 + - uid: 3024 components: - type: Transform pos: 5.5,-263.5 parent: 2 - - uid: 15747 + - uid: 3025 components: - type: Transform pos: 5.5,-264.5 parent: 2 - - uid: 16561 + - uid: 3026 components: - type: Transform pos: -16.5,-265.5 parent: 2 - - uid: 16642 + - uid: 3027 components: - type: Transform pos: -18.5,-265.5 parent: 2 - - uid: 16643 + - uid: 3028 components: - type: Transform pos: -18.5,-266.5 parent: 2 - - uid: 16644 + - uid: 3029 components: - type: Transform pos: -19.5,-265.5 parent: 2 - - uid: 16645 + - uid: 3030 components: - type: Transform pos: -20.5,-265.5 parent: 2 - - uid: 16646 + - uid: 3031 components: - type: Transform pos: -21.5,-265.5 parent: 2 - - uid: 16647 + - uid: 3032 components: - type: Transform pos: -11.5,-248.5 parent: 2 - - uid: 16648 + - uid: 3033 components: - type: Transform pos: -16.5,-262.5 parent: 2 - - uid: 16649 + - uid: 3034 components: - type: Transform pos: -17.5,-265.5 parent: 2 - - uid: 16650 + - uid: 3035 components: - type: Transform pos: -16.5,-264.5 parent: 2 - - uid: 16651 + - uid: 3036 components: - type: Transform pos: -16.5,-263.5 parent: 2 - - uid: 16652 + - uid: 3037 components: - type: Transform pos: -16.5,-261.5 parent: 2 - - uid: 16653 + - uid: 3038 components: - type: Transform pos: -16.5,-260.5 parent: 2 - - uid: 16654 + - uid: 3039 components: - type: Transform pos: -16.5,-259.5 parent: 2 - - uid: 16656 + - uid: 3040 components: - type: Transform pos: -16.5,-258.5 parent: 2 - - uid: 16657 + - uid: 3041 components: - type: Transform pos: -16.5,-257.5 parent: 2 - - uid: 16658 + - uid: 3042 components: - type: Transform pos: -16.5,-256.5 parent: 2 - - uid: 16700 + - uid: 3043 components: - type: Transform pos: -16.5,-254.5 parent: 2 - - uid: 16701 + - uid: 3044 components: - type: Transform pos: -16.5,-253.5 parent: 2 - - uid: 16702 + - uid: 3045 components: - type: Transform pos: -16.5,-252.5 parent: 2 - - uid: 16703 + - uid: 3046 components: - type: Transform pos: -18.5,-256.5 parent: 2 - - uid: 16704 + - uid: 3047 components: - type: Transform pos: -16.5,-251.5 parent: 2 - - uid: 16705 + - uid: 3048 components: - type: Transform pos: -19.5,-256.5 parent: 2 - - uid: 16709 + - uid: 3049 components: - type: Transform pos: -15.5,-248.5 parent: 2 - - uid: 16711 + - uid: 3050 components: - type: Transform pos: -13.5,-248.5 parent: 2 - - uid: 16713 + - uid: 3051 components: - type: Transform pos: -14.5,-248.5 parent: 2 - - uid: 16714 + - uid: 3052 components: - type: Transform pos: -16.5,-247.5 parent: 2 - - uid: 16715 + - uid: 3053 components: - type: Transform pos: -16.5,-246.5 parent: 2 - - uid: 16717 + - uid: 3054 components: - type: Transform pos: -16.5,-245.5 parent: 2 - - uid: 16718 + - uid: 3055 components: - type: Transform pos: -16.5,-244.5 parent: 2 - - uid: 16722 + - uid: 3056 components: - type: Transform pos: -16.5,-243.5 parent: 2 - - uid: 16723 + - uid: 3057 components: - type: Transform pos: -15.5,-243.5 parent: 2 - - uid: 16724 + - uid: 3058 components: - type: Transform pos: -14.5,-243.5 parent: 2 - - uid: 16725 + - uid: 3059 components: - type: Transform pos: -13.5,-243.5 parent: 2 - - uid: 16741 + - uid: 3060 components: - type: Transform pos: 5.5,-52.5 parent: 2 - - uid: 16742 + - uid: 3061 components: - type: Transform pos: 5.5,-51.5 parent: 2 - - uid: 16743 + - uid: 3062 components: - type: Transform pos: 5.5,-50.5 parent: 2 - - uid: 16810 + - uid: 3063 components: - type: Transform pos: 5.5,-134.5 parent: 2 - - uid: 16815 + - uid: 3064 components: - type: Transform pos: 5.5,-133.5 parent: 2 - - uid: 16816 + - uid: 3065 components: - type: Transform pos: 5.5,-132.5 parent: 2 - - uid: 16817 + - uid: 3066 components: - type: Transform pos: 5.5,-131.5 parent: 2 - - uid: 16972 + - uid: 3067 components: - type: Transform pos: -5.5,-260.5 parent: 2 - - uid: 16973 + - uid: 3068 components: - type: Transform pos: -6.5,-260.5 parent: 2 - - uid: 16974 + - uid: 3069 components: - type: Transform pos: -7.5,-260.5 parent: 2 - - uid: 16975 + - uid: 3070 components: - type: Transform pos: -8.5,-260.5 parent: 2 - - uid: 16976 + - uid: 3071 components: - type: Transform pos: -9.5,-260.5 parent: 2 - - uid: 16977 + - uid: 3072 components: - type: Transform pos: -10.5,-260.5 parent: 2 - - uid: 17040 + - uid: 3073 components: - type: Transform pos: -20.5,-256.5 parent: 2 - - uid: 17041 + - uid: 3074 components: - type: Transform pos: -21.5,-256.5 parent: 2 - - uid: 17042 + - uid: 3075 components: - type: Transform pos: -17.5,-263.5 parent: 2 - - uid: 17043 + - uid: 3076 components: - type: Transform pos: -18.5,-263.5 parent: 2 - - uid: 17044 + - uid: 3077 components: - type: Transform pos: -19.5,-263.5 parent: 2 - - uid: 17045 + - uid: 3078 components: - type: Transform pos: -20.5,-263.5 parent: 2 - - uid: 17046 + - uid: 3079 components: - type: Transform pos: -21.5,-263.5 parent: 2 - - uid: 17047 + - uid: 3080 components: - type: Transform pos: -18.5,-252.5 parent: 2 - - uid: 17048 + - uid: 3081 components: - type: Transform pos: -19.5,-252.5 parent: 2 - - uid: 17049 + - uid: 3082 components: - type: Transform pos: -20.5,-252.5 parent: 2 - - uid: 17050 + - uid: 3083 components: - type: Transform pos: -21.5,-252.5 parent: 2 - - uid: 17051 + - uid: 3084 components: - type: Transform pos: -10.5,-243.5 parent: 2 - - uid: 17052 + - uid: 3085 components: - type: Transform pos: -11.5,-243.5 parent: 2 - - uid: 17053 + - uid: 3086 components: - type: Transform pos: -10.5,-248.5 parent: 2 - - uid: 17054 + - uid: 3087 components: - type: Transform pos: -12.5,-248.5 parent: 2 - - uid: 17055 + - uid: 3088 components: - type: Transform pos: -12.5,-243.5 parent: 2 - proto: CableApcStack entities: - - uid: 41 + - uid: 934 + components: + - type: Transform + parent: 932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3089 components: - type: Transform pos: 15.343878,-245.76967 parent: 2 - - uid: 6897 + - uid: 3090 components: - type: Transform pos: 15.528771,-245.82246 parent: 2 - - uid: 9972 + - uid: 3091 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.460135,-300.75027 parent: 2 - - uid: 11674 + - uid: 3092 components: - type: Transform pos: -2.2538567,-7.497039 parent: 2 - - uid: 12413 + - uid: 3093 components: - type: Transform pos: 5.5776806,-310.53137 parent: 2 - - uid: 14770 - components: - - type: Transform - parent: 14755 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: CableHV entities: - - uid: 90 + - uid: 3094 components: - type: Transform pos: -0.5,-260.5 parent: 2 - - uid: 664 + - uid: 3095 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 773 + - uid: 3096 components: - type: Transform pos: -12.5,-251.5 parent: 2 - - uid: 845 + - uid: 3097 components: - type: Transform pos: 5.5,-346.5 parent: 2 - - uid: 917 + - uid: 3098 components: - type: Transform pos: 3.5,-346.5 parent: 2 - - uid: 1103 + - uid: 3099 components: - type: Transform pos: -12.5,-257.5 parent: 2 - - uid: 1334 + - uid: 3100 components: - type: Transform pos: -13.5,-251.5 parent: 2 - - uid: 1450 + - uid: 3101 components: - type: Transform pos: -15.5,-251.5 parent: 2 - - uid: 1451 + - uid: 3102 components: - type: Transform pos: -14.5,-251.5 parent: 2 - - uid: 1453 + - uid: 3103 components: - type: Transform pos: -11.5,-253.5 parent: 2 - - uid: 1633 + - uid: 3104 components: - type: Transform pos: -11.5,-251.5 parent: 2 - - uid: 2228 + - uid: 3105 components: - type: Transform pos: -3.5,-260.5 parent: 2 - - uid: 2255 + - uid: 3106 components: - type: Transform pos: -2.5,-260.5 parent: 2 - - uid: 2276 + - uid: 3107 components: - type: Transform pos: -1.5,-260.5 parent: 2 - - uid: 2279 + - uid: 3108 components: - type: Transform pos: -4.5,-260.5 parent: 2 - - uid: 2339 + - uid: 3109 components: - type: Transform pos: -5.5,-260.5 parent: 2 - - uid: 2340 + - uid: 3110 components: - type: Transform pos: -6.5,-260.5 parent: 2 - - uid: 2341 + - uid: 3111 components: - type: Transform pos: -7.5,-260.5 parent: 2 - - uid: 2342 + - uid: 3112 components: - type: Transform pos: -8.5,-260.5 parent: 2 - - uid: 2343 + - uid: 3113 components: - type: Transform pos: -9.5,-260.5 parent: 2 - - uid: 2344 + - uid: 3114 components: - type: Transform pos: -10.5,-260.5 parent: 2 - - uid: 2345 + - uid: 3115 components: - type: Transform pos: -13.5,-257.5 parent: 2 - - uid: 2346 + - uid: 3116 components: - type: Transform pos: -13.5,-258.5 parent: 2 - - uid: 2347 + - uid: 3117 components: - type: Transform pos: -13.5,-259.5 parent: 2 - - uid: 2348 + - uid: 3118 components: - type: Transform pos: -13.5,-260.5 parent: 2 - - uid: 2349 + - uid: 3119 components: - type: Transform pos: -12.5,-260.5 parent: 2 - - uid: 2358 + - uid: 3120 components: - type: Transform pos: -11.5,-260.5 parent: 2 - - uid: 3010 + - uid: 3121 components: - type: Transform pos: -11.5,-252.5 parent: 2 - - uid: 3087 + - uid: 3122 components: - type: Transform pos: -3.5,-112.5 parent: 2 - - uid: 4226 + - uid: 3123 components: - type: Transform pos: 5.5,-192.5 parent: 2 - - uid: 4264 + - uid: 3124 components: - type: Transform pos: -2.5,-220.5 parent: 2 - - uid: 4277 + - uid: 3125 components: - type: Transform pos: 0.5,-262.5 parent: 2 - - uid: 4335 + - uid: 3126 components: - type: Transform pos: 0.5,-77.5 parent: 2 - - uid: 4378 + - uid: 3127 components: - type: Transform pos: 0.5,-72.5 parent: 2 - - uid: 4403 + - uid: 3128 components: - type: Transform pos: 0.5,-74.5 parent: 2 - - uid: 4545 + - uid: 3129 components: - type: Transform pos: -3.5,-96.5 parent: 2 - - uid: 4546 + - uid: 3130 components: - type: Transform pos: 0.5,-71.5 parent: 2 - - uid: 4552 + - uid: 3131 components: - type: Transform pos: 0.5,-97.5 parent: 2 - - uid: 4553 + - uid: 3132 components: - type: Transform pos: 0.5,-98.5 parent: 2 - - uid: 4557 + - uid: 3133 components: - type: Transform pos: 3.5,-68.5 parent: 2 - - uid: 4571 + - uid: 3134 components: - type: Transform pos: -6.5,-173.5 parent: 2 - - uid: 4582 + - uid: 3135 components: - type: Transform pos: -3.5,-123.5 parent: 2 - - uid: 4584 + - uid: 3136 components: - type: Transform pos: -3.5,-111.5 parent: 2 - - uid: 4586 + - uid: 3137 components: - type: Transform pos: -3.5,-122.5 parent: 2 - - uid: 4588 + - uid: 3138 components: - type: Transform pos: -3.5,-124.5 parent: 2 - - uid: 4595 + - uid: 3139 components: - type: Transform pos: 7.5,-151.5 parent: 2 - - uid: 4608 + - uid: 3140 components: - type: Transform pos: 1.5,-189.5 parent: 2 - - uid: 4614 + - uid: 3141 components: - type: Transform pos: -6.5,-163.5 parent: 2 - - uid: 4617 + - uid: 3142 components: - type: Transform pos: -6.5,-164.5 parent: 2 - - uid: 4622 + - uid: 3143 components: - type: Transform pos: 0.5,-76.5 parent: 2 - - uid: 4623 + - uid: 3144 components: - type: Transform pos: 6.5,-65.5 parent: 2 - - uid: 4626 + - uid: 3145 components: - type: Transform pos: -2.5,-98.5 parent: 2 - - uid: 4642 + - uid: 3146 components: - type: Transform pos: -2.5,-163.5 parent: 2 - - uid: 4643 + - uid: 3147 components: - type: Transform pos: -2.5,-162.5 parent: 2 - - uid: 4644 + - uid: 3148 components: - type: Transform pos: -1.5,-163.5 parent: 2 - - uid: 4645 + - uid: 3149 components: - type: Transform pos: -2.5,-161.5 parent: 2 - - uid: 4646 + - uid: 3150 components: - type: Transform pos: 0.5,-156.5 parent: 2 - - uid: 4648 + - uid: 3151 components: - type: Transform pos: -5.5,-179.5 parent: 2 - - uid: 4668 + - uid: 3152 components: - type: Transform pos: -2.5,-99.5 parent: 2 - - uid: 4672 + - uid: 3153 components: - type: Transform pos: -6.5,-178.5 parent: 2 - - uid: 4673 + - uid: 3154 components: - type: Transform pos: 0.5,-127.5 parent: 2 - - uid: 4674 + - uid: 3155 components: - type: Transform pos: -3.5,-118.5 parent: 2 - - uid: 4676 + - uid: 3156 components: - type: Transform pos: 0.5,-126.5 parent: 2 - - uid: 4677 + - uid: 3157 components: - type: Transform pos: 0.5,-129.5 parent: 2 - - uid: 4678 + - uid: 3158 components: - type: Transform pos: 7.5,-153.5 parent: 2 - - uid: 4679 + - uid: 3159 components: - type: Transform pos: 0.5,-124.5 parent: 2 - - uid: 4688 + - uid: 3160 components: - type: Transform pos: 5.5,-193.5 parent: 2 - - uid: 4696 + - uid: 3161 components: - type: Transform pos: 5.5,-151.5 parent: 2 - - uid: 4697 + - uid: 3162 components: - type: Transform pos: 6.5,-151.5 parent: 2 - - uid: 4698 + - uid: 3163 components: - type: Transform pos: 5.5,-152.5 parent: 2 - - uid: 4699 + - uid: 3164 components: - type: Transform pos: -3.5,-121.5 parent: 2 - - uid: 4700 + - uid: 3165 components: - type: Transform pos: -3.5,-97.5 parent: 2 - - uid: 4701 + - uid: 3166 components: - type: Transform pos: -2.5,-97.5 parent: 2 - - uid: 4702 + - uid: 3167 components: - type: Transform pos: -1.5,-97.5 parent: 2 - - uid: 4703 + - uid: 3168 components: - type: Transform pos: -3.5,-113.5 parent: 2 - - uid: 4704 + - uid: 3169 components: - type: Transform pos: -3.5,-114.5 parent: 2 - - uid: 4705 + - uid: 3170 components: - type: Transform pos: -0.5,-97.5 parent: 2 - - uid: 4706 + - uid: 3171 components: - type: Transform pos: -3.5,-86.5 parent: 2 - - uid: 4707 + - uid: 3172 components: - type: Transform pos: -3.5,-85.5 parent: 2 - - uid: 4711 + - uid: 3173 components: - type: Transform pos: -0.5,-110.5 parent: 2 - - uid: 4712 + - uid: 3174 components: - type: Transform pos: 1.5,-109.5 parent: 2 - - uid: 4713 + - uid: 3175 components: - type: Transform pos: -3.5,-115.5 parent: 2 - - uid: 4716 + - uid: 3176 components: - type: Transform pos: 4.5,-68.5 parent: 2 - - uid: 4717 + - uid: 3177 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 4718 + - uid: 3178 components: - type: Transform pos: 0.5,-79.5 parent: 2 - - uid: 4719 + - uid: 3179 components: - type: Transform pos: 2.5,-189.5 parent: 2 - - uid: 4720 + - uid: 3180 components: - type: Transform pos: -1.5,-81.5 parent: 2 - - uid: 4721 + - uid: 3181 components: - type: Transform pos: 0.5,-69.5 parent: 2 - - uid: 4722 + - uid: 3182 components: - type: Transform pos: 6.5,-68.5 parent: 2 - - uid: 4724 + - uid: 3183 components: - type: Transform pos: 0.5,-189.5 parent: 2 - - uid: 4725 + - uid: 3184 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 4727 + - uid: 3185 components: - type: Transform pos: 4.5,-189.5 parent: 2 - - uid: 4729 + - uid: 3186 components: - type: Transform pos: 0.5,-207.5 parent: 2 - - uid: 4730 + - uid: 3187 components: - type: Transform pos: 0.5,-209.5 parent: 2 - - uid: 4732 + - uid: 3188 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 4734 + - uid: 3189 components: - type: Transform pos: 0.5,-188.5 parent: 2 - - uid: 4736 + - uid: 3190 components: - type: Transform pos: -2.5,-81.5 parent: 2 - - uid: 4737 + - uid: 3191 components: - type: Transform pos: 0.5,-154.5 parent: 2 - - uid: 4738 + - uid: 3192 components: - type: Transform pos: 0.5,-153.5 parent: 2 - - uid: 4742 + - uid: 3193 components: - type: Transform pos: 0.5,-240.5 parent: 2 - - uid: 4757 + - uid: 3194 components: - type: Transform pos: -10.5,-229.5 parent: 2 - - uid: 4758 + - uid: 3195 components: - type: Transform pos: -10.5,-228.5 parent: 2 - - uid: 4759 + - uid: 3196 components: - type: Transform pos: -10.5,-227.5 parent: 2 - - uid: 4760 + - uid: 3197 components: - type: Transform pos: -10.5,-226.5 parent: 2 - - uid: 4761 + - uid: 3198 components: - type: Transform pos: -10.5,-225.5 parent: 2 - - uid: 4762 + - uid: 3199 components: - type: Transform pos: -10.5,-224.5 parent: 2 - - uid: 4763 + - uid: 3200 components: - type: Transform pos: -10.5,-223.5 parent: 2 - - uid: 4764 + - uid: 3201 components: - type: Transform pos: -10.5,-222.5 parent: 2 - - uid: 4765 + - uid: 3202 components: - type: Transform pos: -10.5,-221.5 parent: 2 - - uid: 4766 + - uid: 3203 components: - type: Transform pos: -10.5,-220.5 parent: 2 - - uid: 4767 + - uid: 3204 components: - type: Transform pos: 0.5,-101.5 parent: 2 - - uid: 4768 + - uid: 3205 components: - type: Transform pos: -9.5,-220.5 parent: 2 - - uid: 4769 + - uid: 3206 components: - type: Transform pos: 0.5,-108.5 parent: 2 - - uid: 4770 + - uid: 3207 components: - type: Transform pos: -9.5,-219.5 parent: 2 - - uid: 4771 + - uid: 3208 components: - type: Transform pos: 0.5,-104.5 parent: 2 - - uid: 4772 + - uid: 3209 components: - type: Transform pos: -9.5,-218.5 parent: 2 - - uid: 4774 + - uid: 3210 components: - type: Transform pos: -9.5,-229.5 parent: 2 - - uid: 4775 + - uid: 3211 components: - type: Transform pos: -3.5,-120.5 parent: 2 - - uid: 4776 + - uid: 3212 components: - type: Transform pos: -9.5,-230.5 parent: 2 - - uid: 4777 + - uid: 3213 components: - type: Transform pos: -9.5,-231.5 parent: 2 - - uid: 4781 + - uid: 3214 components: - type: Transform pos: 10.5,-231.5 parent: 2 - - uid: 4782 + - uid: 3215 components: - type: Transform pos: 10.5,-230.5 parent: 2 - - uid: 4783 + - uid: 3216 components: - type: Transform pos: 10.5,-229.5 parent: 2 - - uid: 4787 + - uid: 3217 components: - type: Transform pos: 11.5,-229.5 parent: 2 - - uid: 4788 + - uid: 3218 components: - type: Transform pos: 11.5,-228.5 parent: 2 - - uid: 4789 + - uid: 3219 components: - type: Transform pos: 11.5,-227.5 parent: 2 - - uid: 4790 + - uid: 3220 components: - type: Transform pos: 11.5,-226.5 parent: 2 - - uid: 4791 + - uid: 3221 components: - type: Transform pos: 11.5,-225.5 parent: 2 - - uid: 4792 + - uid: 3222 components: - type: Transform pos: 11.5,-224.5 parent: 2 - - uid: 4793 + - uid: 3223 components: - type: Transform pos: 11.5,-223.5 parent: 2 - - uid: 4794 + - uid: 3224 components: - type: Transform pos: 11.5,-222.5 parent: 2 - - uid: 4795 + - uid: 3225 components: - type: Transform pos: 11.5,-221.5 parent: 2 - - uid: 4796 + - uid: 3226 components: - type: Transform pos: 11.5,-220.5 parent: 2 - - uid: 4798 + - uid: 3227 components: - type: Transform pos: 10.5,-220.5 parent: 2 - - uid: 4799 + - uid: 3228 components: - type: Transform pos: 10.5,-219.5 parent: 2 - - uid: 4801 + - uid: 3229 components: - type: Transform pos: 10.5,-218.5 parent: 2 - - uid: 4802 + - uid: 3230 components: - type: Transform pos: 5.5,-199.5 parent: 2 - - uid: 4803 + - uid: 3231 components: - type: Transform pos: 5.5,-201.5 parent: 2 - - uid: 4804 + - uid: 3232 components: - type: Transform pos: -3.5,-215.5 parent: 2 - - uid: 4805 + - uid: 3233 components: - type: Transform pos: -3.5,-216.5 parent: 2 - - uid: 4810 + - uid: 3234 components: - type: Transform pos: 0.5,-78.5 parent: 2 - - uid: 4811 + - uid: 3235 components: - type: Transform pos: -3.5,-214.5 parent: 2 - - uid: 4813 + - uid: 3236 components: - type: Transform pos: -4.5,-215.5 parent: 2 - - uid: 4814 + - uid: 3237 components: - type: Transform pos: 4.5,-235.5 parent: 2 - - uid: 4815 + - uid: 3238 components: - type: Transform pos: 0.5,-73.5 parent: 2 - - uid: 4816 + - uid: 3239 components: - type: Transform pos: 0.5,-187.5 parent: 2 - - uid: 4820 + - uid: 3240 components: - type: Transform pos: -3.5,-217.5 parent: 2 - - uid: 4821 + - uid: 3241 components: - type: Transform pos: -3.5,-218.5 parent: 2 - - uid: 4822 + - uid: 3242 components: - type: Transform pos: -6.5,-216.5 parent: 2 - - uid: 4823 + - uid: 3243 components: - type: Transform pos: 0.5,-100.5 parent: 2 - - uid: 4824 + - uid: 3244 components: - type: Transform pos: -6.5,-217.5 parent: 2 - - uid: 4825 + - uid: 3245 components: - type: Transform pos: -7.5,-217.5 parent: 2 - - uid: 4826 + - uid: 3246 components: - type: Transform pos: -7.5,-218.5 parent: 2 - - uid: 4827 + - uid: 3247 components: - type: Transform pos: -7.5,-219.5 parent: 2 - - uid: 4828 + - uid: 3248 components: - type: Transform pos: -7.5,-220.5 parent: 2 - - uid: 4829 + - uid: 3249 components: - type: Transform pos: -7.5,-221.5 parent: 2 - - uid: 4830 + - uid: 3250 components: - type: Transform pos: -7.5,-222.5 parent: 2 - - uid: 4831 + - uid: 3251 components: - type: Transform pos: -7.5,-223.5 parent: 2 - - uid: 4832 + - uid: 3252 components: - type: Transform pos: -7.5,-224.5 parent: 2 - - uid: 4833 + - uid: 3253 components: - type: Transform pos: -7.5,-225.5 parent: 2 - - uid: 4834 + - uid: 3254 components: - type: Transform pos: -7.5,-226.5 parent: 2 - - uid: 4835 + - uid: 3255 components: - type: Transform pos: -7.5,-227.5 parent: 2 - - uid: 4836 + - uid: 3256 components: - type: Transform pos: -7.5,-228.5 parent: 2 - - uid: 4837 + - uid: 3257 components: - type: Transform pos: -7.5,-229.5 parent: 2 - - uid: 4838 + - uid: 3258 components: - type: Transform pos: -7.5,-230.5 parent: 2 - - uid: 4839 + - uid: 3259 components: - type: Transform pos: -7.5,-231.5 parent: 2 - - uid: 4840 + - uid: 3260 components: - type: Transform pos: -7.5,-232.5 parent: 2 - - uid: 4841 + - uid: 3261 components: - type: Transform pos: -6.5,-232.5 parent: 2 - - uid: 4842 + - uid: 3262 components: - type: Transform pos: -6.5,-233.5 parent: 2 - - uid: 4843 + - uid: 3263 components: - type: Transform pos: -6.5,-226.5 parent: 2 - - uid: 4844 + - uid: 3264 components: - type: Transform pos: -8.5,-229.5 parent: 2 - - uid: 4845 + - uid: 3265 components: - type: Transform pos: -8.5,-220.5 parent: 2 - - uid: 4846 + - uid: 3266 components: - type: Transform pos: -6.5,-223.5 parent: 2 - - uid: 4852 + - uid: 3267 components: - type: Transform pos: -4.5,-234.5 parent: 2 - - uid: 4853 + - uid: 3268 components: - type: Transform pos: -3.5,-234.5 parent: 2 - - uid: 4854 + - uid: 3269 components: - type: Transform pos: -3.5,-235.5 parent: 2 - - uid: 4855 + - uid: 3270 components: - type: Transform pos: -3.5,-233.5 parent: 2 - - uid: 4856 + - uid: 3271 components: - type: Transform pos: -3.5,-232.5 parent: 2 - - uid: 4857 + - uid: 3272 components: - type: Transform pos: -3.5,-231.5 parent: 2 - - uid: 4858 + - uid: 3273 components: - type: Transform pos: 3.5,-189.5 parent: 2 - - uid: 4859 + - uid: 3274 components: - type: Transform pos: 9.5,-220.5 parent: 2 - - uid: 4860 + - uid: 3275 components: - type: Transform pos: 4.5,-234.5 parent: 2 - - uid: 4861 + - uid: 3276 components: - type: Transform pos: 5.5,-234.5 parent: 2 - - uid: 4862 + - uid: 3277 components: - type: Transform pos: 4.5,-233.5 parent: 2 - - uid: 4863 + - uid: 3278 components: - type: Transform pos: 4.5,-232.5 parent: 2 - - uid: 4864 + - uid: 3279 components: - type: Transform pos: 4.5,-231.5 parent: 2 - - uid: 4866 + - uid: 3280 components: - type: Transform pos: 7.5,-233.5 parent: 2 - - uid: 4867 + - uid: 3281 components: - type: Transform pos: 7.5,-232.5 parent: 2 - - uid: 4871 + - uid: 3282 components: - type: Transform pos: 9.5,-229.5 parent: 2 - - uid: 4874 + - uid: 3283 components: - type: Transform pos: 8.5,-232.5 parent: 2 - - uid: 4875 + - uid: 3284 components: - type: Transform pos: 8.5,-231.5 parent: 2 - - uid: 4876 + - uid: 3285 components: - type: Transform pos: 8.5,-230.5 parent: 2 - - uid: 4877 + - uid: 3286 components: - type: Transform pos: 8.5,-229.5 parent: 2 - - uid: 4878 + - uid: 3287 components: - type: Transform pos: 8.5,-228.5 parent: 2 - - uid: 4879 + - uid: 3288 components: - type: Transform pos: 8.5,-227.5 parent: 2 - - uid: 4880 + - uid: 3289 components: - type: Transform pos: 8.5,-226.5 parent: 2 - - uid: 4881 + - uid: 3290 components: - type: Transform pos: 8.5,-225.5 parent: 2 - - uid: 4882 + - uid: 3291 components: - type: Transform pos: 8.5,-224.5 parent: 2 - - uid: 4883 + - uid: 3292 components: - type: Transform pos: 8.5,-223.5 parent: 2 - - uid: 4884 + - uid: 3293 components: - type: Transform pos: 8.5,-222.5 parent: 2 - - uid: 4885 + - uid: 3294 components: - type: Transform pos: 8.5,-221.5 parent: 2 - - uid: 4886 + - uid: 3295 components: - type: Transform pos: 8.5,-220.5 parent: 2 - - uid: 4887 + - uid: 3296 components: - type: Transform pos: 8.5,-219.5 parent: 2 - - uid: 4888 + - uid: 3297 components: - type: Transform pos: 8.5,-218.5 parent: 2 - - uid: 4889 + - uid: 3298 components: - type: Transform pos: 8.5,-217.5 parent: 2 - - uid: 4891 + - uid: 3299 components: - type: Transform pos: 7.5,-217.5 parent: 2 - - uid: 4892 + - uid: 3300 components: - type: Transform pos: 7.5,-216.5 parent: 2 - - uid: 4894 + - uid: 3301 components: - type: Transform pos: 7.5,-226.5 parent: 2 - - uid: 4895 + - uid: 3302 components: - type: Transform pos: 7.5,-223.5 parent: 2 - - uid: 4906 + - uid: 3303 components: - type: Transform pos: 0.5,-130.5 parent: 2 - - uid: 4907 + - uid: 3304 components: - type: Transform pos: 0.5,-133.5 parent: 2 - - uid: 4908 + - uid: 3305 components: - type: Transform pos: 0.5,-131.5 parent: 2 - - uid: 4909 + - uid: 3306 components: - type: Transform pos: 0.5,-132.5 parent: 2 - - uid: 4910 + - uid: 3307 components: - type: Transform pos: 0.5,-134.5 parent: 2 - - uid: 4911 + - uid: 3308 components: - type: Transform pos: 0.5,-102.5 parent: 2 - - uid: 4913 + - uid: 3309 components: - type: Transform pos: 0.5,-106.5 parent: 2 - - uid: 4914 + - uid: 3310 components: - type: Transform pos: 0.5,-105.5 parent: 2 - - uid: 4915 + - uid: 3311 components: - type: Transform pos: -3.5,-116.5 parent: 2 - - uid: 4916 + - uid: 3312 components: - type: Transform pos: 2.5,-152.5 parent: 2 - - uid: 4917 + - uid: 3313 components: - type: Transform pos: 4.5,-152.5 parent: 2 - - uid: 4918 + - uid: 3314 components: - type: Transform pos: -2.5,-124.5 parent: 2 - - uid: 4919 + - uid: 3315 components: - type: Transform pos: -3.5,-89.5 parent: 2 - - uid: 4920 + - uid: 3316 components: - type: Transform pos: -3.5,-90.5 parent: 2 - - uid: 4922 + - uid: 3317 components: - type: Transform pos: -6.5,-171.5 parent: 2 - - uid: 4923 + - uid: 3318 components: - type: Transform pos: 0.5,-152.5 parent: 2 - - uid: 4925 + - uid: 3319 components: - type: Transform pos: -6.5,-176.5 parent: 2 - - uid: 4926 + - uid: 3320 components: - type: Transform pos: 0.5,-242.5 parent: 2 - - uid: 4927 + - uid: 3321 components: - type: Transform pos: 0.5,-155.5 parent: 2 - - uid: 4928 + - uid: 3322 components: - type: Transform pos: -0.5,-179.5 parent: 2 - - uid: 4929 + - uid: 3323 components: - type: Transform pos: 0.5,-208.5 parent: 2 - - uid: 4930 + - uid: 3324 components: - type: Transform pos: -3.5,-117.5 parent: 2 - - uid: 4931 + - uid: 3325 components: - type: Transform pos: -3.5,-119.5 parent: 2 - - uid: 4932 + - uid: 3326 components: - type: Transform pos: 6.5,-111.5 parent: 2 - - uid: 4933 + - uid: 3327 components: - type: Transform pos: -3.5,-95.5 parent: 2 - - uid: 4934 + - uid: 3328 components: - type: Transform pos: -2.5,-110.5 parent: 2 - - uid: 4935 + - uid: 3329 components: - type: Transform pos: -3.5,-179.5 parent: 2 - - uid: 4936 + - uid: 3330 components: - type: Transform pos: -1.5,-179.5 parent: 2 - - uid: 4937 + - uid: 3331 components: - type: Transform pos: -2.5,-179.5 parent: 2 - - uid: 4938 + - uid: 3332 components: - type: Transform pos: 0.5,-181.5 parent: 2 - - uid: 4939 + - uid: 3333 components: - type: Transform pos: 0.5,-183.5 parent: 2 - - uid: 4940 + - uid: 3334 components: - type: Transform pos: 0.5,-182.5 parent: 2 - - uid: 4944 + - uid: 3335 components: - type: Transform pos: 0.5,-163.5 parent: 2 - - uid: 4946 + - uid: 3336 components: - type: Transform pos: 0.5,-162.5 parent: 2 - - uid: 4953 + - uid: 3337 components: - type: Transform pos: 3.5,-152.5 parent: 2 - - uid: 4954 + - uid: 3338 components: - type: Transform pos: 1.5,-152.5 parent: 2 - - uid: 4955 + - uid: 3339 components: - type: Transform pos: -6.5,-174.5 parent: 2 - - uid: 4956 + - uid: 3340 components: - type: Transform pos: 0.5,-81.5 parent: 2 - - uid: 4957 + - uid: 3341 components: - type: Transform pos: 1.5,-68.5 parent: 2 - - uid: 4958 + - uid: 3342 components: - type: Transform pos: 6.5,-62.5 parent: 2 - - uid: 4959 + - uid: 3343 components: - type: Transform pos: -0.5,-81.5 parent: 2 - - uid: 4960 + - uid: 3344 components: - type: Transform pos: 5.5,-202.5 parent: 2 - - uid: 4961 + - uid: 3345 components: - type: Transform pos: 0.5,-241.5 parent: 2 - - uid: 4962 + - uid: 3346 components: - type: Transform pos: -6.5,-177.5 parent: 2 - - uid: 4963 + - uid: 3347 components: - type: Transform pos: -6.5,-172.5 parent: 2 - - uid: 4964 + - uid: 3348 components: - type: Transform pos: -6.5,-170.5 parent: 2 - - uid: 4966 + - uid: 3349 components: - type: Transform pos: -3.5,-93.5 parent: 2 - - uid: 4968 + - uid: 3350 components: - type: Transform pos: 0.5,-75.5 parent: 2 - - uid: 4969 + - uid: 3351 components: - type: Transform pos: 6.5,-66.5 parent: 2 - - uid: 4970 + - uid: 3352 components: - type: Transform pos: 0.5,-210.5 parent: 2 - - uid: 4971 + - uid: 3353 components: - type: Transform pos: 0.5,-80.5 parent: 2 - - uid: 4972 + - uid: 3354 components: - type: Transform pos: 0.5,-68.5 parent: 2 - - uid: 4974 + - uid: 3355 components: - type: Transform pos: 2.5,-68.5 parent: 2 - - uid: 4975 + - uid: 3356 components: - type: Transform pos: -6.5,-179.5 parent: 2 - - uid: 5041 + - uid: 3357 components: - type: Transform pos: -3.5,-110.5 parent: 2 - - uid: 5066 + - uid: 3358 components: - type: Transform pos: -1.5,-110.5 parent: 2 - - uid: 5067 + - uid: 3359 components: - type: Transform pos: -6.5,-175.5 parent: 2 - - uid: 5086 + - uid: 3360 components: - type: Transform pos: 2.5,-109.5 parent: 2 - - uid: 5093 + - uid: 3361 components: - type: Transform pos: -3.5,-92.5 parent: 2 - - uid: 5094 + - uid: 3362 components: - type: Transform pos: -3.5,-94.5 parent: 2 - - uid: 5095 + - uid: 3363 components: - type: Transform pos: 3.5,-110.5 parent: 2 - - uid: 5096 + - uid: 3364 components: - type: Transform pos: 4.5,-110.5 parent: 2 - - uid: 5097 + - uid: 3365 components: - type: Transform pos: 0.5,-103.5 parent: 2 - - uid: 5100 + - uid: 3366 components: - type: Transform pos: 5.5,-190.5 parent: 2 - - uid: 5102 + - uid: 3367 components: - type: Transform pos: 5.5,-191.5 parent: 2 - - uid: 5132 + - uid: 3368 components: - type: Transform pos: 5.5,-194.5 parent: 2 - - uid: 5149 + - uid: 3369 components: - type: Transform pos: 0.5,-99.5 parent: 2 - - uid: 5150 + - uid: 3370 components: - type: Transform pos: 0.5,-107.5 parent: 2 - - uid: 5151 + - uid: 3371 components: - type: Transform pos: -3.5,-81.5 parent: 2 - - uid: 5152 + - uid: 3372 components: - type: Transform pos: 5.5,-200.5 parent: 2 - - uid: 5154 + - uid: 3373 components: - type: Transform pos: -0.5,-124.5 parent: 2 - - uid: 5155 + - uid: 3374 components: - type: Transform pos: -1.5,-124.5 parent: 2 - - uid: 5157 + - uid: 3375 components: - type: Transform pos: 0.5,-161.5 parent: 2 - - uid: 5158 + - uid: 3376 components: - type: Transform pos: 4.5,-206.5 parent: 2 - - uid: 5159 + - uid: 3377 components: - type: Transform pos: 5.5,-205.5 parent: 2 - - uid: 5202 + - uid: 3378 components: - type: Transform pos: 5.5,-203.5 parent: 2 - - uid: 5203 + - uid: 3379 components: - type: Transform pos: 5.5,-204.5 parent: 2 - - uid: 5204 + - uid: 3380 components: - type: Transform pos: 5.5,-206.5 parent: 2 - - uid: 5205 + - uid: 3381 components: - type: Transform pos: 2.5,-206.5 parent: 2 - - uid: 5206 + - uid: 3382 components: - type: Transform pos: 3.5,-206.5 parent: 2 - - uid: 5207 + - uid: 3383 components: - type: Transform pos: 1.5,-206.5 parent: 2 - - uid: 5208 + - uid: 3384 components: - type: Transform pos: 0.5,-206.5 parent: 2 - - uid: 5217 + - uid: 3385 components: - type: Transform pos: 0.5,-239.5 parent: 2 - - uid: 5218 + - uid: 3386 components: - type: Transform pos: 0.5,-238.5 parent: 2 - - uid: 5219 + - uid: 3387 components: - type: Transform pos: 0.5,-237.5 parent: 2 - - uid: 5220 + - uid: 3388 components: - type: Transform pos: 0.5,-236.5 parent: 2 - - uid: 5221 + - uid: 3389 components: - type: Transform pos: 0.5,-235.5 parent: 2 - - uid: 5222 + - uid: 3390 components: - type: Transform pos: 0.5,-234.5 parent: 2 - - uid: 5223 + - uid: 3391 components: - type: Transform pos: 0.5,-233.5 parent: 2 - - uid: 5224 + - uid: 3392 components: - type: Transform pos: 0.5,-232.5 parent: 2 - - uid: 5226 + - uid: 3393 components: - type: Transform pos: 0.5,-231.5 parent: 2 - - uid: 5227 + - uid: 3394 components: - type: Transform pos: 0.5,-230.5 parent: 2 - - uid: 5228 + - uid: 3395 components: - type: Transform pos: 0.5,-229.5 parent: 2 - - uid: 5229 + - uid: 3396 components: - type: Transform pos: 0.5,-228.5 parent: 2 - - uid: 5230 + - uid: 3397 components: - type: Transform pos: 0.5,-227.5 parent: 2 - - uid: 5231 + - uid: 3398 components: - type: Transform pos: 0.5,-226.5 parent: 2 - - uid: 5232 + - uid: 3399 components: - type: Transform pos: 0.5,-225.5 parent: 2 - - uid: 5233 + - uid: 3400 components: - type: Transform pos: 0.5,-224.5 parent: 2 - - uid: 5234 + - uid: 3401 components: - type: Transform pos: 0.5,-223.5 parent: 2 - - uid: 5235 + - uid: 3402 components: - type: Transform pos: 0.5,-222.5 parent: 2 - - uid: 5236 + - uid: 3403 components: - type: Transform pos: 0.5,-221.5 parent: 2 - - uid: 5237 + - uid: 3404 components: - type: Transform pos: 0.5,-220.5 parent: 2 - - uid: 5238 + - uid: 3405 components: - type: Transform pos: 0.5,-219.5 parent: 2 - - uid: 5239 + - uid: 3406 components: - type: Transform pos: 0.5,-218.5 parent: 2 - - uid: 5240 + - uid: 3407 components: - type: Transform pos: 0.5,-217.5 parent: 2 - - uid: 5241 + - uid: 3408 components: - type: Transform pos: 0.5,-216.5 parent: 2 - - uid: 5242 + - uid: 3409 components: - type: Transform pos: 0.5,-215.5 parent: 2 - - uid: 5243 + - uid: 3410 components: - type: Transform pos: 0.5,-214.5 parent: 2 - - uid: 5244 + - uid: 3411 components: - type: Transform pos: 0.5,-213.5 parent: 2 - - uid: 5245 + - uid: 3412 components: - type: Transform pos: 0.5,-212.5 parent: 2 - - uid: 5246 + - uid: 3413 components: - type: Transform pos: 0.5,-211.5 parent: 2 - - uid: 5303 + - uid: 3414 components: - type: Transform pos: 0.5,-135.5 parent: 2 - - uid: 5328 + - uid: 3415 components: - type: Transform pos: 0.5,-186.5 parent: 2 - - uid: 5332 + - uid: 3416 components: - type: Transform pos: 5.5,-197.5 parent: 2 - - uid: 5338 + - uid: 3417 components: - type: Transform pos: 0.5,-185.5 parent: 2 - - uid: 5343 + - uid: 3418 components: - type: Transform pos: -3.5,-84.5 parent: 2 - - uid: 5344 + - uid: 3419 components: - type: Transform pos: 5.5,-198.5 parent: 2 - - uid: 5347 + - uid: 3420 components: - type: Transform pos: 0.5,-261.5 parent: 2 - - uid: 5348 + - uid: 3421 components: - type: Transform pos: 0.5,-184.5 parent: 2 - - uid: 5349 + - uid: 3422 components: - type: Transform pos: 0.5,-180.5 parent: 2 - - uid: 5350 + - uid: 3423 components: - type: Transform pos: 0.5,-179.5 parent: 2 - - uid: 5353 + - uid: 3424 components: - type: Transform pos: 7.5,-152.5 parent: 2 - - uid: 5358 + - uid: 3425 components: - type: Transform pos: 0.5,-128.5 parent: 2 - - uid: 5364 + - uid: 3426 components: - type: Transform pos: 5.5,-110.5 parent: 2 - - uid: 5365 + - uid: 3427 components: - type: Transform pos: 6.5,-110.5 parent: 2 - - uid: 5366 + - uid: 3428 components: - type: Transform pos: -3.5,-83.5 parent: 2 - - uid: 5384 + - uid: 3429 components: - type: Transform pos: -3.5,-88.5 parent: 2 - - uid: 5386 + - uid: 3430 components: - type: Transform pos: 6.5,-64.5 parent: 2 - - uid: 5388 + - uid: 3431 components: - type: Transform pos: 5.5,-196.5 parent: 2 - - uid: 5389 + - uid: 3432 components: - type: Transform pos: 0.5,-160.5 parent: 2 - - uid: 5390 + - uid: 3433 components: - type: Transform pos: 0.5,-158.5 parent: 2 - - uid: 5391 + - uid: 3434 components: - type: Transform pos: -0.5,-163.5 parent: 2 - - uid: 5392 + - uid: 3435 components: - type: Transform pos: 0.5,-159.5 parent: 2 - - uid: 5393 + - uid: 3436 components: - type: Transform pos: -4.5,-179.5 parent: 2 - - uid: 5394 + - uid: 3437 components: - type: Transform pos: 0.5,-157.5 parent: 2 - - uid: 5395 + - uid: 3438 components: - type: Transform pos: -3.5,-91.5 parent: 2 - - uid: 5396 + - uid: 3439 components: - type: Transform pos: 5.5,-195.5 parent: 2 - - uid: 5397 + - uid: 3440 components: - type: Transform pos: -3.5,-87.5 parent: 2 - - uid: 5398 + - uid: 3441 components: - type: Transform pos: 5.5,-187.5 parent: 2 - - uid: 5399 + - uid: 3442 components: - type: Transform pos: 5.5,-188.5 parent: 2 - - uid: 5406 + - uid: 3443 components: - type: Transform pos: 0.5,-110.5 parent: 2 - - uid: 5408 + - uid: 3444 components: - type: Transform pos: 3.5,-109.5 parent: 2 - - uid: 5412 + - uid: 3445 components: - type: Transform pos: 0.5,-125.5 parent: 2 - - uid: 5413 + - uid: 3446 components: - type: Transform pos: 0.5,-109.5 parent: 2 - - uid: 5414 + - uid: 3447 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 5437 + - uid: 3448 components: - type: Transform pos: -3.5,-219.5 parent: 2 - - uid: 5438 + - uid: 3449 components: - type: Transform pos: -3.5,-220.5 parent: 2 - - uid: 5439 + - uid: 3450 components: - type: Transform pos: -3.5,-221.5 parent: 2 - - uid: 5440 + - uid: 3451 components: - type: Transform pos: -3.5,-222.5 parent: 2 - - uid: 5441 + - uid: 3452 components: - type: Transform pos: -3.5,-230.5 parent: 2 - - uid: 5442 + - uid: 3453 components: - type: Transform pos: -3.5,-229.5 parent: 2 - - uid: 5443 + - uid: 3454 components: - type: Transform pos: -3.5,-228.5 parent: 2 - - uid: 5444 + - uid: 3455 components: - type: Transform pos: -3.5,-227.5 parent: 2 - - uid: 5445 + - uid: 3456 components: - type: Transform pos: 4.5,-228.5 parent: 2 - - uid: 5446 + - uid: 3457 components: - type: Transform pos: 4.5,-227.5 parent: 2 - - uid: 5447 + - uid: 3458 components: - type: Transform pos: 4.5,-229.5 parent: 2 - - uid: 5448 + - uid: 3459 components: - type: Transform pos: 4.5,-230.5 parent: 2 - - uid: 5453 + - uid: 3460 components: - type: Transform pos: 5.5,-189.5 parent: 2 - - uid: 5454 + - uid: 3461 components: - type: Transform pos: 3.5,-229.5 parent: 2 - - uid: 5455 + - uid: 3462 components: - type: Transform pos: 2.5,-229.5 parent: 2 - - uid: 5456 + - uid: 3463 components: - type: Transform pos: 1.5,-229.5 parent: 2 - - uid: 5457 + - uid: 3464 components: - type: Transform pos: -1.5,-220.5 parent: 2 - - uid: 5458 + - uid: 3465 components: - type: Transform pos: -0.5,-220.5 parent: 2 - - uid: 5469 + - uid: 3466 components: - type: Transform pos: -17.5,-247.5 parent: 2 - - uid: 5471 + - uid: 3467 components: - type: Transform pos: -17.5,-245.5 parent: 2 - - uid: 5472 + - uid: 3468 components: - type: Transform pos: -16.5,-247.5 parent: 2 - - uid: 5473 + - uid: 3469 components: - type: Transform pos: -17.5,-244.5 parent: 2 - - uid: 5475 + - uid: 3470 components: - type: Transform pos: -17.5,-246.5 parent: 2 - - uid: 5476 + - uid: 3471 components: - type: Transform pos: -15.5,-247.5 parent: 2 - - uid: 5481 + - uid: 3472 components: - type: Transform pos: 19.5,-263.5 parent: 2 - - uid: 5482 + - uid: 3473 components: - type: Transform pos: 19.5,-264.5 parent: 2 - - uid: 5483 + - uid: 3474 components: - type: Transform pos: 13.5,-248.5 parent: 2 - - uid: 5487 + - uid: 3475 components: - type: Transform pos: 15.5,-256.5 parent: 2 - - uid: 5488 + - uid: 3476 components: - type: Transform pos: 15.5,-257.5 parent: 2 - - uid: 5491 + - uid: 3477 components: - type: Transform pos: 15.5,-258.5 parent: 2 - - uid: 5493 + - uid: 3478 components: - type: Transform pos: 15.5,-260.5 parent: 2 - - uid: 5494 + - uid: 3479 components: - type: Transform pos: 15.5,-261.5 parent: 2 - - uid: 5495 + - uid: 3480 components: - type: Transform pos: 9.5,-248.5 parent: 2 - - uid: 5496 + - uid: 3481 components: - type: Transform pos: 8.5,-248.5 parent: 2 - - uid: 5498 + - uid: 3482 components: - type: Transform pos: 7.5,-248.5 parent: 2 - - uid: 5506 + - uid: 3483 components: - type: Transform pos: 6.5,-61.5 parent: 2 - - uid: 5507 + - uid: 3484 components: - type: Transform pos: 6.5,-60.5 parent: 2 - - uid: 5508 + - uid: 3485 components: - type: Transform pos: 6.5,-59.5 parent: 2 - - uid: 5509 + - uid: 3486 components: - type: Transform pos: 6.5,-58.5 parent: 2 - - uid: 5510 + - uid: 3487 components: - type: Transform pos: 6.5,-57.5 parent: 2 - - uid: 5511 + - uid: 3488 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 5512 + - uid: 3489 components: - type: Transform pos: 5.5,-56.5 parent: 2 - - uid: 5513 + - uid: 3490 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 5514 + - uid: 3491 components: - type: Transform pos: 5.5,-54.5 parent: 2 - - uid: 5515 + - uid: 3492 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 5516 + - uid: 3493 components: - type: Transform pos: 3.5,-54.5 parent: 2 - - uid: 5517 + - uid: 3494 components: - type: Transform pos: 3.5,-53.5 parent: 2 - - uid: 5518 + - uid: 3495 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 5519 + - uid: 3496 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 5520 + - uid: 3497 components: - type: Transform pos: 2.5,-57.5 parent: 2 - - uid: 5521 + - uid: 3498 components: - type: Transform pos: 1.5,-57.5 parent: 2 - - uid: 5522 + - uid: 3499 components: - type: Transform pos: 0.5,-57.5 parent: 2 - - uid: 5523 + - uid: 3500 components: - type: Transform pos: 0.5,-56.5 parent: 2 - - uid: 5524 + - uid: 3501 components: - type: Transform pos: 0.5,-55.5 parent: 2 - - uid: 5525 + - uid: 3502 components: - type: Transform pos: 0.5,-54.5 parent: 2 - - uid: 5526 + - uid: 3503 components: - type: Transform pos: 0.5,-53.5 parent: 2 - - uid: 5527 + - uid: 3504 components: - type: Transform pos: 0.5,-52.5 parent: 2 - - uid: 5528 + - uid: 3505 components: - type: Transform pos: 0.5,-51.5 parent: 2 - - uid: 5529 + - uid: 3506 components: - type: Transform pos: 0.5,-50.5 parent: 2 - - uid: 5530 + - uid: 3507 components: - type: Transform pos: 0.5,-49.5 parent: 2 - - uid: 5531 + - uid: 3508 components: - type: Transform pos: 0.5,-48.5 parent: 2 - - uid: 5532 + - uid: 3509 components: - type: Transform pos: 0.5,-47.5 parent: 2 - - uid: 5533 + - uid: 3510 components: - type: Transform pos: 0.5,-46.5 parent: 2 - - uid: 5534 + - uid: 3511 components: - type: Transform pos: 0.5,-45.5 parent: 2 - - uid: 5535 + - uid: 3512 components: - type: Transform pos: 0.5,-44.5 parent: 2 - - uid: 5536 + - uid: 3513 components: - type: Transform pos: 0.5,-43.5 parent: 2 - - uid: 5537 + - uid: 3514 components: - type: Transform pos: 0.5,-42.5 parent: 2 - - uid: 5538 + - uid: 3515 components: - type: Transform pos: 0.5,-41.5 parent: 2 - - uid: 5539 + - uid: 3516 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 5540 + - uid: 3517 components: - type: Transform pos: 0.5,-39.5 parent: 2 - - uid: 5541 + - uid: 3518 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 5542 + - uid: 3519 components: - type: Transform pos: 0.5,-37.5 parent: 2 - - uid: 5543 + - uid: 3520 components: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 5544 + - uid: 3521 components: - type: Transform pos: 0.5,-35.5 parent: 2 - - uid: 5545 + - uid: 3522 components: - type: Transform pos: 0.5,-34.5 parent: 2 - - uid: 5546 + - uid: 3523 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 5547 + - uid: 3524 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 5548 + - uid: 3525 components: - type: Transform pos: -2.5,-34.5 parent: 2 - - uid: 5549 + - uid: 3526 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 5550 + - uid: 3527 components: - type: Transform pos: -4.5,-34.5 parent: 2 - - uid: 5551 + - uid: 3528 components: - type: Transform pos: -4.5,-36.5 parent: 2 - - uid: 5552 + - uid: 3529 components: - type: Transform pos: -4.5,-35.5 parent: 2 - - uid: 5553 + - uid: 3530 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 5554 + - uid: 3531 components: - type: Transform pos: -4.5,-38.5 parent: 2 - - uid: 5555 + - uid: 3532 components: - type: Transform pos: -4.5,-39.5 parent: 2 - - uid: 5556 + - uid: 3533 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 5557 + - uid: 3534 components: - type: Transform pos: -4.5,-41.5 parent: 2 - - uid: 5558 + - uid: 3535 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 5559 + - uid: 3536 components: - type: Transform pos: -4.5,-43.5 parent: 2 - - uid: 5560 + - uid: 3537 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 5561 + - uid: 3538 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 5562 + - uid: 3539 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 5563 + - uid: 3540 components: - type: Transform pos: -2.5,-43.5 parent: 2 - - uid: 5564 + - uid: 3541 components: - type: Transform pos: 0.5,-33.5 parent: 2 - - uid: 5565 + - uid: 3542 components: - type: Transform pos: 0.5,-32.5 parent: 2 - - uid: 5566 + - uid: 3543 components: - type: Transform pos: 0.5,-31.5 parent: 2 - - uid: 5567 + - uid: 3544 components: - type: Transform pos: 0.5,-30.5 parent: 2 - - uid: 5568 + - uid: 3545 components: - type: Transform pos: 0.5,-29.5 parent: 2 - - uid: 5569 + - uid: 3546 components: - type: Transform pos: 0.5,-28.5 parent: 2 - - uid: 5570 + - uid: 3547 components: - type: Transform pos: 0.5,-27.5 parent: 2 - - uid: 5571 + - uid: 3548 components: - type: Transform pos: 0.5,-26.5 parent: 2 - - uid: 5572 + - uid: 3549 components: - type: Transform pos: 0.5,-25.5 parent: 2 - - uid: 5573 + - uid: 3550 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 5574 + - uid: 3551 components: - type: Transform pos: 0.5,-23.5 parent: 2 - - uid: 5575 + - uid: 3552 components: - type: Transform pos: 0.5,-22.5 parent: 2 - - uid: 5576 + - uid: 3553 components: - type: Transform pos: 0.5,-21.5 parent: 2 - - uid: 5577 + - uid: 3554 components: - type: Transform pos: 0.5,-20.5 parent: 2 - - uid: 5578 + - uid: 3555 components: - type: Transform pos: 0.5,-19.5 parent: 2 - - uid: 5579 + - uid: 3556 components: - type: Transform pos: 0.5,-18.5 parent: 2 - - uid: 5580 + - uid: 3557 components: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 5581 + - uid: 3558 components: - type: Transform pos: -0.5,-17.5 parent: 2 - - uid: 5582 + - uid: 3559 components: - type: Transform pos: -1.5,-17.5 parent: 2 - - uid: 5583 + - uid: 3560 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 5584 + - uid: 3561 components: - type: Transform pos: -3.5,-17.5 parent: 2 - - uid: 5585 + - uid: 3562 components: - type: Transform pos: -4.5,-17.5 parent: 2 - - uid: 5586 + - uid: 3563 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 5587 + - uid: 3564 components: - type: Transform pos: -5.5,-16.5 parent: 2 - - uid: 5588 + - uid: 3565 components: - type: Transform pos: -5.5,-15.5 parent: 2 - - uid: 5589 + - uid: 3566 components: - type: Transform pos: -5.5,-14.5 parent: 2 - - uid: 5590 + - uid: 3567 components: - type: Transform pos: -5.5,-13.5 parent: 2 - - uid: 5591 + - uid: 3568 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 5592 + - uid: 3569 components: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 5593 + - uid: 3570 components: - type: Transform pos: -5.5,-10.5 parent: 2 - - uid: 5594 + - uid: 3571 components: - type: Transform pos: -5.5,-9.5 parent: 2 - - uid: 5595 + - uid: 3572 components: - type: Transform pos: -5.5,-8.5 parent: 2 - - uid: 5596 + - uid: 3573 components: - type: Transform pos: -5.5,-7.5 parent: 2 - - uid: 5597 + - uid: 3574 components: - type: Transform pos: -5.5,-6.5 parent: 2 - - uid: 5598 + - uid: 3575 components: - type: Transform pos: -5.5,-5.5 parent: 2 - - uid: 5599 + - uid: 3576 components: - type: Transform pos: -5.5,-4.5 parent: 2 - - uid: 5600 + - uid: 3577 components: - type: Transform pos: -5.5,-3.5 parent: 2 - - uid: 5601 + - uid: 3578 components: - type: Transform pos: -5.5,-2.5 parent: 2 - - uid: 5602 + - uid: 3579 components: - type: Transform pos: -5.5,-1.5 parent: 2 - - uid: 5603 + - uid: 3580 components: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 5604 + - uid: 3581 components: - type: Transform pos: -5.5,0.5 parent: 2 - - uid: 5605 + - uid: 3582 components: - type: Transform pos: -5.5,1.5 parent: 2 - - uid: 5606 + - uid: 3583 components: - type: Transform pos: -4.5,1.5 parent: 2 - - uid: 5607 + - uid: 3584 components: - type: Transform pos: -3.5,1.5 parent: 2 - - uid: 5608 + - uid: 3585 components: - type: Transform pos: -2.5,1.5 parent: 2 - - uid: 5609 + - uid: 3586 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 5610 + - uid: 3587 components: - type: Transform pos: -0.5,1.5 parent: 2 - - uid: 5611 + - uid: 3588 components: - type: Transform pos: 0.5,1.5 parent: 2 - - uid: 5612 + - uid: 3589 components: - type: Transform pos: 1.5,1.5 parent: 2 - - uid: 5613 + - uid: 3590 components: - type: Transform pos: 1.5,0.5 parent: 2 - - uid: 5614 + - uid: 3591 components: - type: Transform pos: 1.5,-0.5 parent: 2 - - uid: 5615 + - uid: 3592 components: - type: Transform pos: 1.5,-1.5 parent: 2 - - uid: 5616 + - uid: 3593 components: - type: Transform pos: 1.5,-2.5 parent: 2 - - uid: 5617 + - uid: 3594 components: - type: Transform pos: 1.5,-3.5 parent: 2 - - uid: 5618 + - uid: 3595 components: - type: Transform pos: 1.5,-4.5 parent: 2 - - uid: 5619 + - uid: 3596 components: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 5620 + - uid: 3597 components: - type: Transform pos: 3.5,-4.5 parent: 2 - - uid: 5621 + - uid: 3598 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 5622 + - uid: 3599 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 5623 + - uid: 3600 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 5624 + - uid: 3601 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 5625 + - uid: 3602 components: - type: Transform pos: 6.5,-2.5 parent: 2 - - uid: 5626 + - uid: 3603 components: - type: Transform pos: 7.5,-2.5 parent: 2 - - uid: 5627 + - uid: 3604 components: - type: Transform pos: 8.5,-151.5 parent: 2 - - uid: 5628 + - uid: 3605 components: - type: Transform pos: 8.5,-150.5 parent: 2 - - uid: 5629 + - uid: 3606 components: - type: Transform pos: 8.5,-149.5 parent: 2 - - uid: 5630 + - uid: 3607 components: - type: Transform pos: 8.5,-148.5 parent: 2 - - uid: 5631 + - uid: 3608 components: - type: Transform pos: 8.5,-147.5 parent: 2 - - uid: 5632 + - uid: 3609 components: - type: Transform pos: 8.5,-146.5 parent: 2 - - uid: 5633 + - uid: 3610 components: - type: Transform pos: 8.5,-145.5 parent: 2 - - uid: 5634 + - uid: 3611 components: - type: Transform pos: 8.5,-144.5 parent: 2 - - uid: 5635 + - uid: 3612 components: - type: Transform pos: 8.5,-143.5 parent: 2 - - uid: 5636 + - uid: 3613 components: - type: Transform pos: 8.5,-142.5 parent: 2 - - uid: 5637 + - uid: 3614 components: - type: Transform pos: 8.5,-141.5 parent: 2 - - uid: 5638 + - uid: 3615 components: - type: Transform pos: 8.5,-140.5 parent: 2 - - uid: 5639 + - uid: 3616 components: - type: Transform pos: 8.5,-139.5 parent: 2 - - uid: 5640 + - uid: 3617 components: - type: Transform pos: 8.5,-138.5 parent: 2 - - uid: 5641 + - uid: 3618 components: - type: Transform pos: 8.5,-137.5 parent: 2 - - uid: 5642 + - uid: 3619 components: - type: Transform pos: 8.5,-136.5 parent: 2 - - uid: 5643 + - uid: 3620 components: - type: Transform pos: 7.5,-136.5 parent: 2 - - uid: 5644 + - uid: 3621 components: - type: Transform pos: 7.5,-135.5 parent: 2 - - uid: 5645 + - uid: 3622 components: - type: Transform pos: 6.5,-135.5 parent: 2 - - uid: 5646 + - uid: 3623 components: - type: Transform pos: 5.5,-135.5 parent: 2 - - uid: 5647 + - uid: 3624 components: - type: Transform pos: 4.5,-135.5 parent: 2 - - uid: 5648 + - uid: 3625 components: - type: Transform pos: 3.5,-135.5 parent: 2 - - uid: 5649 + - uid: 3626 components: - type: Transform pos: 2.5,-135.5 parent: 2 - - uid: 5650 + - uid: 3627 components: - type: Transform pos: 1.5,-135.5 parent: 2 - - uid: 5651 + - uid: 3628 components: - type: Transform pos: -6.5,-169.5 parent: 2 - - uid: 5652 + - uid: 3629 components: - type: Transform pos: -6.5,-168.5 parent: 2 - - uid: 5658 + - uid: 3630 components: - type: Transform pos: -5.5,-163.5 parent: 2 - - uid: 5659 + - uid: 3631 components: - type: Transform pos: -4.5,-163.5 parent: 2 - - uid: 5660 + - uid: 3632 components: - type: Transform pos: -3.5,-163.5 parent: 2 - - uid: 6549 + - uid: 3633 components: - type: Transform pos: 14.5,-253.5 parent: 2 - - uid: 6551 + - uid: 3634 components: - type: Transform pos: 17.5,-252.5 parent: 2 - - uid: 6679 + - uid: 3635 components: - type: Transform pos: -6.5,-167.5 parent: 2 - - uid: 6681 + - uid: 3636 components: - type: Transform pos: -6.5,-166.5 parent: 2 - - uid: 6683 + - uid: 3637 components: - type: Transform pos: -6.5,-165.5 parent: 2 - - uid: 6771 + - uid: 3638 components: - type: Transform pos: -11.5,-256.5 parent: 2 - - uid: 6774 + - uid: 3639 components: - type: Transform pos: -11.5,-257.5 parent: 2 - - uid: 6782 + - uid: 3640 components: - type: Transform pos: 13.5,-255.5 parent: 2 - - uid: 6798 + - uid: 3641 components: - type: Transform pos: -11.5,-255.5 parent: 2 - - uid: 6799 + - uid: 3642 components: - type: Transform pos: -11.5,-254.5 parent: 2 - - uid: 6827 + - uid: 3643 components: - type: Transform pos: 2.5,-251.5 parent: 2 - - uid: 6841 + - uid: 3644 components: - type: Transform pos: 0.5,-295.5 parent: 2 - - uid: 6843 + - uid: 3645 components: - type: Transform pos: 0.5,-296.5 parent: 2 - - uid: 6852 + - uid: 3646 components: - type: Transform pos: 2.5,-252.5 parent: 2 - - uid: 6869 + - uid: 3647 components: - type: Transform pos: 13.5,-251.5 parent: 2 - - uid: 6870 + - uid: 3648 components: - type: Transform pos: 13.5,-256.5 parent: 2 - - uid: 6871 + - uid: 3649 components: - type: Transform pos: 13.5,-253.5 parent: 2 - - uid: 6872 + - uid: 3650 components: - type: Transform pos: 13.5,-252.5 parent: 2 - - uid: 6873 + - uid: 3651 components: - type: Transform pos: 13.5,-254.5 parent: 2 - - uid: 7452 + - uid: 3652 components: - type: Transform pos: 20.5,-256.5 parent: 2 - - uid: 7455 + - uid: 3653 components: - type: Transform pos: 19.5,-250.5 parent: 2 - - uid: 7492 + - uid: 3654 components: - type: Transform pos: 15.5,-259.5 parent: 2 - - uid: 7543 + - uid: 3655 components: - type: Transform pos: 19.5,-253.5 parent: 2 - - uid: 7585 + - uid: 3656 components: - type: Transform pos: 19.5,-252.5 parent: 2 - - uid: 7770 + - uid: 3657 components: - type: Transform pos: 7.5,-255.5 parent: 2 - - uid: 7793 + - uid: 3658 components: - type: Transform pos: 5.5,-250.5 parent: 2 - - uid: 7794 + - uid: 3659 components: - type: Transform pos: 2.5,-247.5 parent: 2 - - uid: 7805 + - uid: 3660 components: - type: Transform pos: 0.5,-246.5 parent: 2 - - uid: 7806 + - uid: 3661 components: - type: Transform pos: 0.5,-251.5 parent: 2 - - uid: 7807 + - uid: 3662 components: - type: Transform pos: 8.5,-257.5 parent: 2 - - uid: 7810 + - uid: 3663 components: - type: Transform pos: 19.5,-247.5 parent: 2 - - uid: 7811 + - uid: 3664 components: - type: Transform pos: 0.5,-253.5 parent: 2 - - uid: 7828 + - uid: 3665 components: - type: Transform pos: 3.5,-250.5 parent: 2 - - uid: 7832 + - uid: 3666 components: - type: Transform pos: 14.5,-251.5 parent: 2 - - uid: 7833 + - uid: 3667 components: - type: Transform pos: 14.5,-252.5 parent: 2 - - uid: 7846 + - uid: 3668 components: - type: Transform pos: 14.5,-256.5 parent: 2 - - uid: 7847 + - uid: 3669 components: - type: Transform pos: 16.5,-261.5 parent: 2 - - uid: 7850 + - uid: 3670 components: - type: Transform pos: 9.5,-252.5 parent: 2 - - uid: 7851 + - uid: 3671 components: - type: Transform pos: 7.5,-250.5 parent: 2 - - uid: 7852 + - uid: 3672 components: - type: Transform pos: 11.5,-251.5 parent: 2 - - uid: 7853 + - uid: 3673 components: - type: Transform pos: 12.5,-248.5 parent: 2 - - uid: 7855 + - uid: 3674 components: - type: Transform pos: 21.5,-256.5 parent: 2 - - uid: 7862 + - uid: 3675 components: - type: Transform pos: 11.5,-248.5 parent: 2 - - uid: 7865 + - uid: 3676 components: - type: Transform pos: 10.5,-248.5 parent: 2 - - uid: 7866 + - uid: 3677 components: - type: Transform pos: 8.5,-256.5 parent: 2 - - uid: 7867 + - uid: 3678 components: - type: Transform pos: 0.5,-255.5 parent: 2 - - uid: 7888 + - uid: 3679 components: - type: Transform pos: 11.5,-250.5 parent: 2 - - uid: 7889 + - uid: 3680 components: - type: Transform pos: 10.5,-252.5 parent: 2 - - uid: 7890 + - uid: 3681 components: - type: Transform pos: 22.5,-256.5 parent: 2 - - uid: 7894 + - uid: 3682 components: - type: Transform pos: 10.5,-256.5 parent: 2 - - uid: 7908 + - uid: 3683 components: - type: Transform pos: 11.5,-252.5 parent: 2 - - uid: 7928 + - uid: 3684 components: - type: Transform pos: 0.5,-243.5 parent: 2 - - uid: 7933 + - uid: 3685 components: - type: Transform pos: 7.5,-252.5 parent: 2 - - uid: 7935 + - uid: 3686 components: - type: Transform pos: 7.5,-249.5 parent: 2 - - uid: 7941 + - uid: 3687 components: - type: Transform pos: 19.5,-246.5 parent: 2 - - uid: 7945 + - uid: 3688 components: - type: Transform pos: 0.5,-257.5 parent: 2 - - uid: 7948 + - uid: 3689 components: - type: Transform pos: 16.5,-252.5 parent: 2 - - uid: 7951 + - uid: 3690 components: - type: Transform pos: 13.5,-249.5 parent: 2 - - uid: 7953 + - uid: 3691 components: - type: Transform pos: 9.5,-256.5 parent: 2 - - uid: 7955 + - uid: 3692 components: - type: Transform pos: 7.5,-256.5 parent: 2 - - uid: 7957 + - uid: 3693 components: - type: Transform pos: 12.5,-256.5 parent: 2 - - uid: 7958 + - uid: 3694 components: - type: Transform pos: 17.5,-261.5 parent: 2 - - uid: 7959 + - uid: 3695 components: - type: Transform pos: 18.5,-263.5 parent: 2 - - uid: 7960 + - uid: 3696 components: - type: Transform pos: 18.5,-262.5 parent: 2 - - uid: 7961 + - uid: 3697 components: - type: Transform pos: 23.5,-256.5 parent: 2 - - uid: 7962 + - uid: 3698 components: - type: Transform pos: 0.5,-248.5 parent: 2 - - uid: 7963 + - uid: 3699 components: - type: Transform pos: 0.5,-250.5 parent: 2 - - uid: 7971 + - uid: 3700 components: - type: Transform pos: 0.5,-256.5 parent: 2 - - uid: 7973 + - uid: 3701 components: - type: Transform pos: 0.5,-258.5 parent: 2 - - uid: 7975 + - uid: 3702 components: - type: Transform pos: 0.5,-254.5 parent: 2 - - uid: 7976 + - uid: 3703 components: - type: Transform pos: 0.5,-252.5 parent: 2 - - uid: 7978 + - uid: 3704 components: - type: Transform pos: 2.5,-250.5 parent: 2 - - uid: 7979 + - uid: 3705 components: - type: Transform pos: 6.5,-250.5 parent: 2 - - uid: 7981 + - uid: 3706 components: - type: Transform pos: 4.5,-250.5 parent: 2 - - uid: 7982 + - uid: 3707 components: - type: Transform pos: 2.5,-249.5 parent: 2 - - uid: 7984 + - uid: 3708 components: - type: Transform pos: 2.5,-248.5 parent: 2 - - uid: 7991 + - uid: 3709 components: - type: Transform pos: 1.5,-247.5 parent: 2 - - uid: 7999 + - uid: 3710 components: - type: Transform pos: 19.5,-251.5 parent: 2 - - uid: 8007 + - uid: 3711 components: - type: Transform pos: 18.5,-261.5 parent: 2 - - uid: 8101 + - uid: 3712 components: - type: Transform pos: 19.5,-249.5 parent: 2 - - uid: 8115 + - uid: 3713 components: - type: Transform pos: 15.5,-252.5 parent: 2 - - uid: 8132 + - uid: 3714 components: - type: Transform pos: 0.5,-245.5 parent: 2 - - uid: 8145 + - uid: 3715 components: - type: Transform pos: 0.5,-247.5 parent: 2 - - uid: 8183 + - uid: 3716 components: - type: Transform pos: 0.5,-263.5 parent: 2 - - uid: 8184 + - uid: 3717 components: - type: Transform pos: 0.5,-264.5 parent: 2 - - uid: 8185 + - uid: 3718 components: - type: Transform pos: 0.5,-265.5 parent: 2 - - uid: 8186 + - uid: 3719 components: - type: Transform pos: 0.5,-266.5 parent: 2 - - uid: 8187 + - uid: 3720 components: - type: Transform pos: 0.5,-267.5 parent: 2 - - uid: 8198 + - uid: 3721 components: - type: Transform pos: 0.5,-249.5 parent: 2 - - uid: 8205 + - uid: 3722 components: - type: Transform pos: 0.5,-244.5 parent: 2 - - uid: 8230 + - uid: 3723 components: - type: Transform pos: 19.5,-254.5 parent: 2 - - uid: 8452 + - uid: 3724 components: - type: Transform pos: 19.5,-265.5 parent: 2 - - uid: 8454 + - uid: 3725 components: - type: Transform pos: 11.5,-256.5 parent: 2 - - uid: 8823 + - uid: 3726 components: - type: Transform pos: 19.5,-256.5 parent: 2 - - uid: 8838 + - uid: 3727 components: - type: Transform pos: 18.5,-252.5 parent: 2 - - uid: 8842 + - uid: 3728 components: - type: Transform pos: 7.5,-251.5 parent: 2 - - uid: 8844 + - uid: 3729 components: - type: Transform pos: 8.5,-252.5 parent: 2 - - uid: 8863 + - uid: 3730 components: - type: Transform pos: 13.5,-250.5 parent: 2 - - uid: 8936 + - uid: 3731 components: - type: Transform pos: 2.5,-256.5 parent: 2 - - uid: 8937 + - uid: 3732 components: - type: Transform pos: 1.5,-256.5 parent: 2 - - uid: 8943 + - uid: 3733 components: - type: Transform pos: 5.5,-256.5 parent: 2 - - uid: 8944 + - uid: 3734 components: - type: Transform pos: 4.5,-256.5 parent: 2 - - uid: 9098 + - uid: 3735 components: - type: Transform pos: -2.5,-275.5 parent: 2 - - uid: 9100 + - uid: 3736 components: - type: Transform pos: -0.5,-274.5 parent: 2 - - uid: 9101 + - uid: 3737 components: - type: Transform pos: -1.5,-274.5 parent: 2 - - uid: 9102 + - uid: 3738 components: - type: Transform pos: 0.5,-270.5 parent: 2 - - uid: 9103 + - uid: 3739 components: - type: Transform pos: 8.5,-286.5 parent: 2 - - uid: 9104 + - uid: 3740 components: - type: Transform pos: 0.5,-269.5 parent: 2 - - uid: 9105 + - uid: 3741 components: - type: Transform pos: 0.5,-268.5 parent: 2 - - uid: 9106 + - uid: 3742 components: - type: Transform pos: 0.5,-271.5 parent: 2 - - uid: 9107 + - uid: 3743 components: - type: Transform pos: 0.5,-272.5 parent: 2 - - uid: 9108 + - uid: 3744 components: - type: Transform pos: 0.5,-273.5 parent: 2 - - uid: 9109 + - uid: 3745 components: - type: Transform pos: 0.5,-274.5 parent: 2 - - uid: 9110 + - uid: 3746 components: - type: Transform pos: 0.5,-286.5 parent: 2 - - uid: 9111 + - uid: 3747 components: - type: Transform pos: 3.5,-287.5 parent: 2 - - uid: 9112 + - uid: 3748 components: - type: Transform pos: -2.5,-276.5 parent: 2 - - uid: 9113 + - uid: 3749 components: - type: Transform pos: -2.5,-274.5 parent: 2 - - uid: 9114 + - uid: 3750 components: - type: Transform pos: -2.5,-277.5 parent: 2 - - uid: 9115 + - uid: 3751 components: - type: Transform pos: -2.5,-278.5 parent: 2 - - uid: 9116 + - uid: 3752 components: - type: Transform pos: -2.5,-279.5 parent: 2 - - uid: 9117 + - uid: 3753 components: - type: Transform pos: -2.5,-280.5 parent: 2 - - uid: 9118 + - uid: 3754 components: - type: Transform pos: -2.5,-281.5 parent: 2 - - uid: 9119 + - uid: 3755 components: - type: Transform pos: -2.5,-282.5 parent: 2 - - uid: 9120 + - uid: 3756 components: - type: Transform pos: -2.5,-283.5 parent: 2 - - uid: 9121 + - uid: 3757 components: - type: Transform pos: -2.5,-284.5 parent: 2 - - uid: 9122 + - uid: 3758 components: - type: Transform pos: -1.5,-284.5 parent: 2 - - uid: 9123 + - uid: 3759 components: - type: Transform pos: -0.5,-284.5 parent: 2 - - uid: 9124 + - uid: 3760 components: - type: Transform pos: 0.5,-284.5 parent: 2 - - uid: 9125 + - uid: 3761 components: - type: Transform pos: 0.5,-285.5 parent: 2 - - uid: 9126 + - uid: 3762 components: - type: Transform pos: 1.5,-285.5 parent: 2 - - uid: 9127 + - uid: 3763 components: - type: Transform pos: 2.5,-285.5 parent: 2 - - uid: 9130 + - uid: 3764 components: - type: Transform pos: 2.5,-286.5 parent: 2 - - uid: 9131 + - uid: 3765 components: - type: Transform pos: 2.5,-287.5 parent: 2 - - uid: 9133 + - uid: 3766 components: - type: Transform pos: 4.5,-287.5 parent: 2 - - uid: 9134 + - uid: 3767 components: - type: Transform pos: 5.5,-287.5 parent: 2 - - uid: 9135 + - uid: 3768 components: - type: Transform pos: 6.5,-287.5 parent: 2 - - uid: 9136 + - uid: 3769 components: - type: Transform pos: 7.5,-287.5 parent: 2 - - uid: 9137 + - uid: 3770 components: - type: Transform pos: 8.5,-287.5 parent: 2 - - uid: 9138 + - uid: 3771 components: - type: Transform pos: 8.5,-285.5 parent: 2 - - uid: 9139 + - uid: 3772 components: - type: Transform pos: 8.5,-284.5 parent: 2 - - uid: 9140 + - uid: 3773 components: - type: Transform pos: 0.5,-287.5 parent: 2 - - uid: 9141 + - uid: 3774 components: - type: Transform pos: 0.5,-288.5 parent: 2 - - uid: 9142 + - uid: 3775 components: - type: Transform pos: 0.5,-289.5 parent: 2 - - uid: 9143 + - uid: 3776 components: - type: Transform pos: 0.5,-290.5 parent: 2 - - uid: 9167 + - uid: 3777 components: - type: Transform pos: 3.5,-256.5 parent: 2 - - uid: 9360 + - uid: 3778 components: - type: Transform pos: 0.5,-291.5 parent: 2 - - uid: 9361 + - uid: 3779 components: - type: Transform pos: 0.5,-292.5 parent: 2 - - uid: 9362 + - uid: 3780 components: - type: Transform pos: 0.5,-293.5 parent: 2 - - uid: 9363 + - uid: 3781 components: - type: Transform pos: 0.5,-294.5 parent: 2 - - uid: 9499 + - uid: 3782 components: - type: Transform pos: 1.5,-345.5 parent: 2 - - uid: 9559 + - uid: 3783 components: - type: Transform pos: 21.5,-308.5 parent: 2 - - uid: 9560 + - uid: 3784 components: - type: Transform pos: 20.5,-308.5 parent: 2 - - uid: 9561 + - uid: 3785 components: - type: Transform pos: 19.5,-308.5 parent: 2 - - uid: 9562 + - uid: 3786 components: - type: Transform pos: 19.5,-307.5 parent: 2 - - uid: 9563 + - uid: 3787 components: - type: Transform pos: 19.5,-306.5 parent: 2 - - uid: 9564 + - uid: 3788 components: - type: Transform pos: 20.5,-306.5 parent: 2 - - uid: 9565 + - uid: 3789 components: - type: Transform pos: 21.5,-306.5 parent: 2 - - uid: 9566 + - uid: 3790 components: - type: Transform pos: 20.5,-305.5 parent: 2 - - uid: 9567 + - uid: 3791 components: - type: Transform pos: 20.5,-309.5 parent: 2 - - uid: 9568 + - uid: 3792 components: - type: Transform pos: 20.5,-310.5 parent: 2 - - uid: 9569 + - uid: 3793 components: - type: Transform pos: 21.5,-310.5 parent: 2 - - uid: 9570 + - uid: 3794 components: - type: Transform pos: 22.5,-310.5 parent: 2 - - uid: 9571 + - uid: 3795 components: - type: Transform pos: 24.5,-310.5 parent: 2 - - uid: 9572 + - uid: 3796 components: - type: Transform pos: 23.5,-310.5 parent: 2 - - uid: 9573 + - uid: 3797 components: - type: Transform pos: 24.5,-309.5 parent: 2 - - uid: 9574 + - uid: 3798 components: - type: Transform pos: 24.5,-308.5 parent: 2 - - uid: 9575 + - uid: 3799 components: - type: Transform pos: 20.5,-304.5 parent: 2 - - uid: 9577 + - uid: 3800 components: - type: Transform pos: 21.5,-304.5 parent: 2 - - uid: 9578 + - uid: 3801 components: - type: Transform pos: 22.5,-304.5 parent: 2 - - uid: 9579 + - uid: 3802 components: - type: Transform pos: 23.5,-304.5 parent: 2 - - uid: 9580 + - uid: 3803 components: - type: Transform pos: 24.5,-304.5 parent: 2 - - uid: 9581 + - uid: 3804 components: - type: Transform pos: 24.5,-305.5 parent: 2 - - uid: 9582 + - uid: 3805 components: - type: Transform pos: 24.5,-306.5 parent: 2 - - uid: 9583 + - uid: 3806 components: - type: Transform pos: 23.5,-306.5 parent: 2 - - uid: 9584 + - uid: 3807 components: - type: Transform pos: 25.5,-308.5 parent: 2 - - uid: 9585 + - uid: 3808 components: - type: Transform pos: 25.5,-307.5 parent: 2 - - uid: 9586 + - uid: 3809 components: - type: Transform pos: 25.5,-306.5 parent: 2 - - uid: 9587 + - uid: 3810 components: - type: Transform pos: 23.5,-308.5 parent: 2 - - uid: 9870 + - uid: 3811 components: - type: Transform pos: 0.5,-259.5 parent: 2 - - uid: 9917 + - uid: 3812 components: - type: Transform pos: 6.5,-319.5 parent: 2 - - uid: 10161 + - uid: 3813 components: - type: Transform pos: 0.5,-260.5 parent: 2 - - uid: 10172 + - uid: 3814 components: - type: Transform pos: 0.5,-297.5 parent: 2 - - uid: 10173 + - uid: 3815 components: - type: Transform pos: -0.5,-297.5 parent: 2 - - uid: 10174 + - uid: 3816 components: - type: Transform pos: -1.5,-297.5 parent: 2 - - uid: 10175 + - uid: 3817 components: - type: Transform pos: -2.5,-297.5 parent: 2 - - uid: 10176 + - uid: 3818 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10177 + - uid: 3819 components: - type: Transform pos: -4.5,-297.5 parent: 2 - - uid: 10178 + - uid: 3820 components: - type: Transform pos: -5.5,-297.5 parent: 2 - - uid: 10179 + - uid: 3821 components: - type: Transform pos: -6.5,-297.5 parent: 2 - - uid: 10180 + - uid: 3822 components: - type: Transform pos: -7.5,-297.5 parent: 2 - - uid: 10181 + - uid: 3823 components: - type: Transform pos: -8.5,-297.5 parent: 2 - - uid: 10182 + - uid: 3824 components: - type: Transform pos: 1.5,-297.5 parent: 2 - - uid: 10183 + - uid: 3825 components: - type: Transform pos: 2.5,-297.5 parent: 2 - - uid: 10184 + - uid: 3826 components: - type: Transform pos: 3.5,-297.5 parent: 2 - - uid: 10185 + - uid: 3827 components: - type: Transform pos: 4.5,-297.5 parent: 2 - - uid: 10186 + - uid: 3828 components: - type: Transform pos: 5.5,-297.5 parent: 2 - - uid: 10187 + - uid: 3829 components: - type: Transform pos: 6.5,-297.5 parent: 2 - - uid: 10188 + - uid: 3830 components: - type: Transform pos: 7.5,-297.5 parent: 2 - - uid: 10189 + - uid: 3831 components: - type: Transform pos: 8.5,-297.5 parent: 2 - - uid: 10190 + - uid: 3832 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 10191 + - uid: 3833 components: - type: Transform pos: 9.5,-298.5 parent: 2 - - uid: 10192 + - uid: 3834 components: - type: Transform pos: 9.5,-299.5 parent: 2 - - uid: 10193 + - uid: 3835 components: - type: Transform pos: 9.5,-300.5 parent: 2 - - uid: 10194 + - uid: 3836 components: - type: Transform pos: 9.5,-301.5 parent: 2 - - uid: 10195 + - uid: 3837 components: - type: Transform pos: 9.5,-302.5 parent: 2 - - uid: 10196 + - uid: 3838 components: - type: Transform pos: 9.5,-303.5 parent: 2 - - uid: 10197 + - uid: 3839 components: - type: Transform pos: 9.5,-304.5 parent: 2 - - uid: 10198 + - uid: 3840 components: - type: Transform pos: 9.5,-305.5 parent: 2 - - uid: 10199 + - uid: 3841 components: - type: Transform pos: 9.5,-306.5 parent: 2 - - uid: 10200 + - uid: 3842 components: - type: Transform pos: 9.5,-307.5 parent: 2 - - uid: 10201 + - uid: 3843 components: - type: Transform pos: 9.5,-308.5 parent: 2 - - uid: 10202 + - uid: 3844 components: - type: Transform pos: 9.5,-309.5 parent: 2 - - uid: 10203 + - uid: 3845 components: - type: Transform pos: 9.5,-310.5 parent: 2 - - uid: 10204 + - uid: 3846 components: - type: Transform pos: 9.5,-311.5 parent: 2 - - uid: 10205 + - uid: 3847 components: - type: Transform pos: 9.5,-312.5 parent: 2 - - uid: 10206 + - uid: 3848 components: - type: Transform pos: 10.5,-312.5 parent: 2 - - uid: 10207 + - uid: 3849 components: - type: Transform pos: 10.5,-313.5 parent: 2 - - uid: 10208 + - uid: 3850 components: - type: Transform pos: 10.5,-314.5 parent: 2 - - uid: 10209 + - uid: 3851 components: - type: Transform pos: 10.5,-315.5 parent: 2 - - uid: 10210 + - uid: 3852 components: - type: Transform pos: 10.5,-316.5 parent: 2 - - uid: 10211 + - uid: 3853 components: - type: Transform pos: 10.5,-317.5 parent: 2 - - uid: 10212 + - uid: 3854 components: - type: Transform pos: 10.5,-318.5 parent: 2 - - uid: 10213 + - uid: 3855 components: - type: Transform pos: 9.5,-318.5 parent: 2 - - uid: 10214 + - uid: 3856 components: - type: Transform pos: 8.5,-318.5 parent: 2 - - uid: 10215 + - uid: 3857 components: - type: Transform pos: 7.5,-318.5 parent: 2 - - uid: 10216 + - uid: 3858 components: - type: Transform pos: 6.5,-318.5 parent: 2 - - uid: 10218 + - uid: 3859 components: - type: Transform pos: 5.5,-319.5 parent: 2 - - uid: 10219 + - uid: 3860 components: - type: Transform pos: 4.5,-319.5 parent: 2 - - uid: 10220 + - uid: 3861 components: - type: Transform pos: 3.5,-319.5 parent: 2 - - uid: 10221 + - uid: 3862 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - uid: 10222 + - uid: 3863 components: - type: Transform pos: 1.5,-319.5 parent: 2 - - uid: 10223 + - uid: 3864 components: - type: Transform pos: 0.5,-319.5 parent: 2 - - uid: 10224 + - uid: 3865 components: - type: Transform pos: 0.5,-320.5 parent: 2 - - uid: 10225 + - uid: 3866 components: - type: Transform pos: 0.5,-321.5 parent: 2 - - uid: 10226 + - uid: 3867 components: - type: Transform pos: 0.5,-322.5 parent: 2 - - uid: 10610 + - uid: 3868 components: - type: Transform pos: 0.5,-323.5 parent: 2 - - uid: 10611 + - uid: 3869 components: - type: Transform pos: 0.5,-324.5 parent: 2 - - uid: 10612 + - uid: 3870 components: - type: Transform pos: 0.5,-325.5 parent: 2 - - uid: 10613 + - uid: 3871 components: - type: Transform pos: 0.5,-326.5 parent: 2 - - uid: 10614 + - uid: 3872 components: - type: Transform pos: 0.5,-327.5 parent: 2 - - uid: 10615 + - uid: 3873 components: - type: Transform pos: 0.5,-328.5 parent: 2 - - uid: 10674 + - uid: 3874 components: - type: Transform pos: 3.5,-345.5 parent: 2 - - uid: 10801 + - uid: 3875 components: - type: Transform pos: 0.5,-334.5 parent: 2 - - uid: 10804 + - uid: 3876 components: - type: Transform pos: 0.5,-332.5 parent: 2 - - uid: 10806 + - uid: 3877 components: - type: Transform pos: 0.5,-330.5 parent: 2 - - uid: 10807 + - uid: 3878 components: - type: Transform pos: 0.5,-329.5 parent: 2 - - uid: 10809 + - uid: 3879 components: - type: Transform pos: 0.5,-331.5 parent: 2 - - uid: 10810 + - uid: 3880 components: - type: Transform pos: 0.5,-333.5 parent: 2 - - uid: 10835 + - uid: 3881 components: - type: Transform pos: 0.5,-335.5 parent: 2 - - uid: 10836 + - uid: 3882 components: - type: Transform pos: 0.5,-336.5 parent: 2 - - uid: 10837 + - uid: 3883 components: - type: Transform pos: 0.5,-337.5 parent: 2 - - uid: 10838 + - uid: 3884 components: - type: Transform pos: 0.5,-338.5 parent: 2 - - uid: 10839 + - uid: 3885 components: - type: Transform pos: 0.5,-339.5 parent: 2 - - uid: 10840 + - uid: 3886 components: - type: Transform pos: 0.5,-340.5 parent: 2 - - uid: 10844 + - uid: 3887 components: - type: Transform pos: 0.5,-341.5 parent: 2 - - uid: 10866 + - uid: 3888 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 10962 + - uid: 3889 components: - type: Transform pos: 2.5,-345.5 parent: 2 - - uid: 11125 + - uid: 3890 components: - type: Transform pos: 0.5,-342.5 parent: 2 - - uid: 11126 + - uid: 3891 components: - type: Transform pos: 0.5,-343.5 parent: 2 - - uid: 11127 + - uid: 3892 components: - type: Transform pos: 0.5,-344.5 parent: 2 - - uid: 11128 + - uid: 3893 components: - type: Transform pos: 0.5,-345.5 parent: 2 - - uid: 11129 + - uid: 3894 components: - type: Transform pos: 0.5,-346.5 parent: 2 - - uid: 11130 + - uid: 3895 components: - type: Transform pos: 0.5,-347.5 parent: 2 - - uid: 11131 + - uid: 3896 components: - type: Transform pos: 0.5,-348.5 parent: 2 - - uid: 11132 + - uid: 3897 components: - type: Transform pos: 0.5,-349.5 parent: 2 - - uid: 11133 + - uid: 3898 components: - type: Transform pos: 0.5,-350.5 parent: 2 - - uid: 11134 + - uid: 3899 components: - type: Transform pos: 0.5,-351.5 parent: 2 - - uid: 11135 + - uid: 3900 components: - type: Transform pos: 0.5,-352.5 parent: 2 - - uid: 11136 + - uid: 3901 components: - type: Transform pos: 0.5,-353.5 parent: 2 - - uid: 11137 + - uid: 3902 components: - type: Transform pos: 0.5,-354.5 parent: 2 - - uid: 11138 + - uid: 3903 components: - type: Transform pos: 0.5,-355.5 parent: 2 - - uid: 11139 + - uid: 3904 components: - type: Transform pos: 0.5,-356.5 parent: 2 - - uid: 11264 + - uid: 3905 components: - type: Transform pos: 0.5,-357.5 parent: 2 - - uid: 11265 + - uid: 3906 components: - type: Transform pos: 0.5,-358.5 parent: 2 - - uid: 11266 + - uid: 3907 components: - type: Transform pos: 0.5,-359.5 parent: 2 - - uid: 11269 + - uid: 3908 components: - type: Transform pos: 2.5,-360.5 parent: 2 - - uid: 11270 + - uid: 3909 components: - type: Transform pos: 3.5,-360.5 parent: 2 - - uid: 11271 + - uid: 3910 components: - type: Transform pos: 4.5,-360.5 parent: 2 - - uid: 11272 + - uid: 3911 components: - type: Transform pos: 5.5,-360.5 parent: 2 - - uid: 11273 + - uid: 3912 components: - type: Transform pos: 6.5,-360.5 parent: 2 - - uid: 11274 + - uid: 3913 components: - type: Transform pos: 6.5,-361.5 parent: 2 - - uid: 11411 + - uid: 3914 components: - type: Transform pos: 2.5,-359.5 parent: 2 - - uid: 11412 + - uid: 3915 components: - type: Transform pos: 1.5,-359.5 parent: 2 - - uid: 11844 + - uid: 3916 components: - type: Transform pos: 0.5,-381.5 parent: 2 - - uid: 11845 + - uid: 3917 components: - type: Transform pos: 4.5,-361.5 parent: 2 - - uid: 11846 + - uid: 3918 components: - type: Transform pos: 4.5,-362.5 parent: 2 - - uid: 11847 + - uid: 3919 components: - type: Transform pos: 4.5,-363.5 parent: 2 - - uid: 11848 + - uid: 3920 components: - type: Transform pos: 4.5,-364.5 parent: 2 - - uid: 11849 + - uid: 3921 components: - type: Transform pos: 4.5,-365.5 parent: 2 - - uid: 11850 + - uid: 3922 components: - type: Transform pos: 4.5,-366.5 parent: 2 - - uid: 11851 + - uid: 3923 components: - type: Transform pos: 4.5,-367.5 parent: 2 - - uid: 11852 + - uid: 3924 components: - type: Transform pos: 4.5,-368.5 parent: 2 - - uid: 11853 + - uid: 3925 components: - type: Transform pos: 4.5,-369.5 parent: 2 - - uid: 11854 + - uid: 3926 components: - type: Transform pos: 4.5,-370.5 parent: 2 - - uid: 11855 + - uid: 3927 components: - type: Transform pos: 4.5,-371.5 parent: 2 - - uid: 11856 + - uid: 3928 components: - type: Transform pos: 4.5,-372.5 parent: 2 - - uid: 11857 + - uid: 3929 components: - type: Transform pos: 4.5,-373.5 parent: 2 - - uid: 11858 + - uid: 3930 components: - type: Transform pos: 3.5,-373.5 parent: 2 - - uid: 11859 + - uid: 3931 components: - type: Transform pos: 2.5,-373.5 parent: 2 - - uid: 11860 + - uid: 3932 components: - type: Transform pos: 1.5,-373.5 parent: 2 - - uid: 11861 + - uid: 3933 components: - type: Transform pos: 0.5,-373.5 parent: 2 - - uid: 11862 + - uid: 3934 components: - type: Transform pos: 0.5,-374.5 parent: 2 - - uid: 11863 + - uid: 3935 components: - type: Transform pos: 0.5,-375.5 parent: 2 - - uid: 11864 + - uid: 3936 components: - type: Transform pos: 0.5,-378.5 parent: 2 - - uid: 11865 + - uid: 3937 components: - type: Transform pos: 0.5,-379.5 parent: 2 - - uid: 11866 + - uid: 3938 components: - type: Transform pos: 0.5,-382.5 parent: 2 - - uid: 11917 + - uid: 3939 components: - type: Transform pos: 0.5,-383.5 parent: 2 - - uid: 11999 + - uid: 3940 components: - type: Transform pos: 6.5,-386.5 parent: 2 - - uid: 12004 + - uid: 3941 components: - type: Transform pos: 6.5,-384.5 parent: 2 - - uid: 12015 + - uid: 3942 components: - type: Transform pos: 2.5,-384.5 parent: 2 - - uid: 12018 + - uid: 3943 components: - type: Transform pos: 3.5,-384.5 parent: 2 - - uid: 12019 + - uid: 3944 components: - type: Transform pos: 0.5,-384.5 parent: 2 - - uid: 12022 + - uid: 3945 components: - type: Transform pos: 6.5,-385.5 parent: 2 - - uid: 13988 + - uid: 3946 components: - type: Transform pos: 7.5,-253.5 parent: 2 - - uid: 13999 + - uid: 3947 components: - type: Transform pos: 6.5,-256.5 parent: 2 - - uid: 14002 + - uid: 3948 components: - type: Transform pos: 7.5,-254.5 parent: 2 - - uid: 14007 + - uid: 3949 components: - type: Transform pos: 19.5,-248.5 parent: 2 - - uid: 14013 + - uid: 3950 components: - type: Transform pos: 19.5,-255.5 parent: 2 - - uid: 16695 + - uid: 3951 components: - type: Transform pos: -15.5,-250.5 parent: 2 - - uid: 16696 + - uid: 3952 components: - type: Transform pos: -15.5,-249.5 parent: 2 - - uid: 16918 + - uid: 3953 components: - type: Transform pos: -15.5,-248.5 parent: 2 - - uid: 16938 + - uid: 3954 components: - type: Transform pos: -0.5,-248.5 parent: 2 - proto: CableHVStack entities: - - uid: 42 + - uid: 3955 components: - type: Transform pos: 15.409912,-245.26797 parent: 2 - - uid: 896 + - uid: 3956 components: - type: Transform pos: 15.568392,-245.34718 parent: 2 - - uid: 11672 + - uid: 3957 components: - type: Transform pos: -2.0963848,-7.519528 parent: 2 - - uid: 16801 + - uid: 3959 components: - type: Transform - parent: 16798 + parent: 3958 - type: Physics canCollide: False - type: InsideEntityStorage - proto: CableMV entities: - - uid: 81 + - uid: 3962 components: - type: Transform pos: -0.5,-10.5 parent: 2 - - uid: 191 + - uid: 3963 components: - type: Transform pos: 5.5,-112.5 parent: 2 - - uid: 479 + - uid: 3964 components: - type: Transform pos: 2.5,-5.5 parent: 2 - - uid: 572 + - uid: 3965 components: - type: Transform pos: 0.5,-345.5 parent: 2 - - uid: 582 + - uid: 3966 components: - type: Transform pos: 1.5,-5.5 parent: 2 - - uid: 587 + - uid: 3967 components: - type: Transform pos: 2.5,-345.5 parent: 2 - - uid: 916 + - uid: 3968 components: - type: Transform pos: 7.5,-335.5 parent: 2 - - uid: 1119 + - uid: 3969 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 1127 + - uid: 3970 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 1144 + - uid: 3971 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 1250 + - uid: 3972 components: - type: Transform pos: 4.5,-340.5 parent: 2 - - uid: 1462 + - uid: 3973 components: - type: Transform pos: -1.5,-247.5 parent: 2 - - uid: 1497 + - uid: 3974 components: - type: Transform pos: 1.5,-360.5 parent: 2 - - uid: 1675 + - uid: 3975 components: - type: Transform pos: -12.5,-252.5 parent: 2 - - uid: 1676 + - uid: 3976 components: - type: Transform pos: -11.5,-252.5 parent: 2 - - uid: 2001 + - uid: 3977 components: - type: Transform pos: -1.5,-10.5 parent: 2 - - uid: 2062 + - uid: 3978 components: - type: Transform pos: -0.5,-56.5 parent: 2 - - uid: 2068 + - uid: 3979 components: - type: Transform pos: -2.5,-71.5 parent: 2 - - uid: 2069 + - uid: 3980 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 2070 + - uid: 3981 components: - type: Transform pos: 6.5,-65.5 parent: 2 - - uid: 2071 + - uid: 3982 components: - type: Transform pos: 6.5,-64.5 parent: 2 - - uid: 2097 + - uid: 3983 components: - type: Transform pos: 3.5,-53.5 parent: 2 - - uid: 2191 + - uid: 3984 components: - type: Transform pos: 3.5,-54.5 parent: 2 - - uid: 2305 + - uid: 3985 components: - type: Transform pos: -14.5,-253.5 parent: 2 - - uid: 2477 + - uid: 3986 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 2847 + - uid: 3987 components: - type: Transform pos: -14.5,-251.5 parent: 2 - - uid: 2848 + - uid: 3988 components: - type: Transform pos: -15.5,-251.5 parent: 2 - - uid: 2851 + - uid: 3989 components: - type: Transform pos: -16.5,-248.5 parent: 2 - - uid: 3172 + - uid: 3990 components: - type: Transform pos: -0.5,-109.5 parent: 2 - - uid: 3173 + - uid: 3991 components: - type: Transform pos: 0.5,-109.5 parent: 2 - - uid: 3218 + - uid: 3992 components: - type: Transform pos: 5.5,-113.5 parent: 2 - - uid: 3242 + - uid: 3993 components: - type: Transform pos: -1.5,-109.5 parent: 2 - - uid: 3245 + - uid: 3994 components: - type: Transform pos: 1.5,-109.5 parent: 2 - - uid: 3248 + - uid: 3995 components: - type: Transform pos: 2.5,-109.5 parent: 2 - - uid: 3557 + - uid: 3996 components: - type: Transform pos: -5.5,-336.5 parent: 2 - - uid: 3576 + - uid: 3997 components: - type: Transform pos: 7.5,-338.5 parent: 2 - - uid: 3678 + - uid: 3998 components: - type: Transform pos: 11.5,-250.5 parent: 2 - - uid: 3701 + - uid: 3999 components: - type: Transform pos: 0.5,-230.5 parent: 2 - - uid: 3838 + - uid: 4000 components: - type: Transform pos: 15.5,-137.5 parent: 2 - - uid: 3839 + - uid: 4001 components: - type: Transform pos: 15.5,-136.5 parent: 2 - - uid: 3879 + - uid: 4002 components: - type: Transform pos: 7.5,-342.5 parent: 2 - - uid: 4046 + - uid: 4003 components: - type: Transform pos: -7.5,-302.5 parent: 2 - - uid: 4163 + - uid: 4004 components: - type: Transform pos: 0.5,-341.5 parent: 2 - - uid: 4235 + - uid: 4005 components: - type: Transform pos: 20.5,-264.5 parent: 2 - - uid: 4345 + - uid: 4006 components: - type: Transform pos: -2.5,-109.5 parent: 2 - - uid: 4346 + - uid: 4007 components: - type: Transform pos: -2.5,-108.5 parent: 2 - - uid: 4349 + - uid: 4008 components: - type: Transform pos: 3.5,-109.5 parent: 2 - - uid: 4354 + - uid: 4009 components: - type: Transform pos: -2.5,-43.5 parent: 2 - - uid: 4555 + - uid: 4010 components: - type: Transform pos: 19.5,-265.5 parent: 2 - - uid: 4681 + - uid: 4011 components: - type: Transform pos: 7.5,-2.5 parent: 2 - - uid: 4784 + - uid: 4012 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 4898 + - uid: 4013 components: - type: Transform pos: 2.5,-220.5 parent: 2 - - uid: 5002 + - uid: 4014 components: - type: Transform pos: 4.5,-252.5 parent: 2 - - uid: 5003 + - uid: 4015 components: - type: Transform pos: 3.5,-252.5 parent: 2 - - uid: 5004 + - uid: 4016 components: - type: Transform pos: 3.5,-253.5 parent: 2 - - uid: 5005 + - uid: 4017 components: - type: Transform pos: 3.5,-254.5 parent: 2 - - uid: 5354 + - uid: 4018 components: - type: Transform pos: 6.5,-2.5 parent: 2 - - uid: 5387 + - uid: 4019 components: - type: Transform pos: 19.5,-264.5 parent: 2 - - uid: 5490 + - uid: 4020 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 5492 + - uid: 4021 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 5657 + - uid: 4022 components: - type: Transform pos: 7.5,-250.5 parent: 2 - - uid: 5663 + - uid: 4023 components: - type: Transform pos: 3.5,-4.5 parent: 2 - - uid: 5664 + - uid: 4024 components: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 5665 + - uid: 4025 components: - type: Transform pos: 2.5,-3.5 parent: 2 - - uid: 5666 + - uid: 4026 components: - type: Transform pos: 2.5,-2.5 parent: 2 - - uid: 5667 + - uid: 4027 components: - type: Transform pos: 1.5,-2.5 parent: 2 - - uid: 5668 + - uid: 4028 components: - type: Transform pos: 2.5,-1.5 parent: 2 - - uid: 5669 + - uid: 4029 components: - type: Transform pos: 3.5,-1.5 parent: 2 - - uid: 5670 + - uid: 4030 components: - type: Transform pos: 0.5,-2.5 parent: 2 - - uid: 5671 + - uid: 4031 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 5672 + - uid: 4032 components: - type: Transform pos: -1.5,-2.5 parent: 2 - - uid: 5673 + - uid: 4033 components: - type: Transform pos: -2.5,-2.5 parent: 2 - - uid: 5674 + - uid: 4034 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 5675 + - uid: 4035 components: - type: Transform pos: -2.5,-4.5 parent: 2 - - uid: 5678 + - uid: 4036 components: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 5679 + - uid: 4037 components: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 5680 + - uid: 4038 components: - type: Transform pos: 1.5,-6.5 parent: 2 - - uid: 5681 + - uid: 4039 components: - type: Transform pos: -1.5,-6.5 parent: 2 - - uid: 5682 + - uid: 4040 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 5683 + - uid: 4041 components: - type: Transform pos: -3.5,-6.5 parent: 2 - - uid: 5684 + - uid: 4042 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 5686 + - uid: 4043 components: - type: Transform pos: 1.5,-7.5 parent: 2 - - uid: 5687 + - uid: 4044 components: - type: Transform pos: 1.5,-8.5 parent: 2 - - uid: 5688 + - uid: 4045 components: - type: Transform pos: 1.5,-9.5 parent: 2 - - uid: 5689 + - uid: 4046 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - uid: 5690 + - uid: 4047 components: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 5691 + - uid: 4048 components: - type: Transform pos: -2.5,-10.5 parent: 2 - - uid: 5692 + - uid: 4049 components: - type: Transform pos: -2.5,-11.5 parent: 2 - - uid: 5693 + - uid: 4050 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 5741 + - uid: 4051 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 5784 + - uid: 4052 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 5785 + - uid: 4053 components: - type: Transform pos: 0.5,-35.5 parent: 2 - - uid: 5786 + - uid: 4054 components: - type: Transform pos: -4.5,-43.5 parent: 2 - - uid: 5787 + - uid: 4055 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 5788 + - uid: 4056 components: - type: Transform pos: -4.5,-41.5 parent: 2 - - uid: 5789 + - uid: 4057 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 5790 + - uid: 4058 components: - type: Transform pos: -4.5,-39.5 parent: 2 - - uid: 5791 + - uid: 4059 components: - type: Transform pos: -4.5,-38.5 parent: 2 - - uid: 5792 + - uid: 4060 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 5793 + - uid: 4061 components: - type: Transform pos: -4.5,-36.5 parent: 2 - - uid: 5794 + - uid: 4062 components: - type: Transform pos: -4.5,-35.5 parent: 2 - - uid: 5795 + - uid: 4063 components: - type: Transform pos: -4.5,-34.5 parent: 2 - - uid: 5796 + - uid: 4064 components: - type: Transform pos: -2.5,-34.5 parent: 2 - - uid: 5797 + - uid: 4065 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 5798 + - uid: 4066 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 5799 + - uid: 4067 components: - type: Transform pos: 0.5,-34.5 parent: 2 - - uid: 5800 + - uid: 4068 components: - type: Transform pos: 0.5,-33.5 parent: 2 - - uid: 5801 + - uid: 4069 components: - type: Transform pos: 0.5,-32.5 parent: 2 - - uid: 5802 + - uid: 4070 components: - type: Transform pos: 0.5,-31.5 parent: 2 - - uid: 5803 + - uid: 4071 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 5804 + - uid: 4072 components: - type: Transform pos: 2.5,-31.5 parent: 2 - - uid: 5806 + - uid: 4073 components: - type: Transform pos: 3.5,-31.5 parent: 2 - - uid: 5807 + - uid: 4074 components: - type: Transform pos: 3.5,-30.5 parent: 2 - - uid: 5808 + - uid: 4075 components: - type: Transform pos: 4.5,-30.5 parent: 2 - - uid: 5809 + - uid: 4076 components: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 5810 + - uid: 4077 components: - type: Transform pos: 0.5,-37.5 parent: 2 - - uid: 5811 + - uid: 4078 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 5812 + - uid: 4079 components: - type: Transform pos: 0.5,-39.5 parent: 2 - - uid: 5813 + - uid: 4080 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 5814 + - uid: 4081 components: - type: Transform pos: 0.5,-41.5 parent: 2 - - uid: 5815 + - uid: 4082 components: - type: Transform pos: 0.5,-42.5 parent: 2 - - uid: 5816 + - uid: 4083 components: - type: Transform pos: -0.5,-42.5 parent: 2 - - uid: 5817 + - uid: 4084 components: - type: Transform pos: -1.5,-42.5 parent: 2 - - uid: 5960 + - uid: 4085 components: - type: Transform pos: 11.5,-251.5 parent: 2 - - uid: 5972 + - uid: 4086 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 5973 + - uid: 4087 components: - type: Transform pos: 5.5,-54.5 parent: 2 - - uid: 5974 + - uid: 4088 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 5975 + - uid: 4089 components: - type: Transform pos: 5.5,-56.5 parent: 2 - - uid: 5976 + - uid: 4090 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 5977 + - uid: 4091 components: - type: Transform pos: 6.5,-57.5 parent: 2 - - uid: 5978 + - uid: 4092 components: - type: Transform pos: 6.5,-58.5 parent: 2 - - uid: 5979 + - uid: 4093 components: - type: Transform pos: 6.5,-59.5 parent: 2 - - uid: 5980 + - uid: 4094 components: - type: Transform pos: 6.5,-60.5 parent: 2 - - uid: 5981 + - uid: 4095 components: - type: Transform pos: 6.5,-61.5 parent: 2 - - uid: 5982 + - uid: 4096 components: - type: Transform pos: 6.5,-62.5 parent: 2 - - uid: 5983 + - uid: 4097 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 5984 + - uid: 4098 components: - type: Transform pos: 5.5,-63.5 parent: 2 - - uid: 5985 + - uid: 4099 components: - type: Transform pos: 4.5,-63.5 parent: 2 - - uid: 5986 + - uid: 4100 components: - type: Transform pos: 3.5,-63.5 parent: 2 - - uid: 5987 + - uid: 4101 components: - type: Transform pos: 2.5,-63.5 parent: 2 - - uid: 5988 + - uid: 4102 components: - type: Transform pos: 6.5,-66.5 parent: 2 - - uid: 5989 + - uid: 4103 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 5990 + - uid: 4104 components: - type: Transform pos: 6.5,-68.5 parent: 2 - - uid: 5992 + - uid: 4105 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 5993 + - uid: 4106 components: - type: Transform pos: 4.5,-68.5 parent: 2 - - uid: 5994 + - uid: 4107 components: - type: Transform pos: 3.5,-68.5 parent: 2 - - uid: 5995 + - uid: 4108 components: - type: Transform pos: 2.5,-68.5 parent: 2 - - uid: 5996 + - uid: 4109 components: - type: Transform pos: 1.5,-68.5 parent: 2 - - uid: 5997 + - uid: 4110 components: - type: Transform pos: 0.5,-68.5 parent: 2 - - uid: 5998 + - uid: 4111 components: - type: Transform pos: -0.5,-68.5 parent: 2 - - uid: 5999 + - uid: 4112 components: - type: Transform pos: -1.5,-68.5 parent: 2 - - uid: 6000 + - uid: 4113 components: - type: Transform pos: -2.5,-68.5 parent: 2 - - uid: 6001 + - uid: 4114 components: - type: Transform pos: -3.5,-68.5 parent: 2 - - uid: 6002 + - uid: 4115 components: - type: Transform pos: -4.5,-68.5 parent: 2 - - uid: 6004 + - uid: 4116 components: - type: Transform pos: -4.5,-69.5 parent: 2 - - uid: 6005 + - uid: 4117 components: - type: Transform pos: -4.5,-70.5 parent: 2 - - uid: 6006 + - uid: 4118 components: - type: Transform pos: -4.5,-71.5 parent: 2 - - uid: 6007 + - uid: 4119 components: - type: Transform pos: -3.5,-71.5 parent: 2 - - uid: 6008 + - uid: 4120 components: - type: Transform pos: -1.5,-71.5 parent: 2 - - uid: 6009 + - uid: 4121 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 6010 + - uid: 4122 components: - type: Transform pos: 2.5,-57.5 parent: 2 - - uid: 6011 + - uid: 4123 components: - type: Transform pos: 1.5,-57.5 parent: 2 - - uid: 6012 + - uid: 4124 components: - type: Transform pos: 0.5,-57.5 parent: 2 - - uid: 6013 + - uid: 4125 components: - type: Transform pos: -0.5,-57.5 parent: 2 - - uid: 6014 + - uid: 4126 components: - type: Transform pos: -1.5,-56.5 parent: 2 - - uid: 6130 + - uid: 4127 components: - type: Transform pos: -2.5,-99.5 parent: 2 - - uid: 6131 + - uid: 4128 components: - type: Transform pos: -2.5,-98.5 parent: 2 - - uid: 6132 + - uid: 4129 components: - type: Transform pos: -2.5,-97.5 parent: 2 - - uid: 6133 + - uid: 4130 components: - type: Transform pos: -3.5,-97.5 parent: 2 - - uid: 6134 + - uid: 4131 components: - type: Transform pos: -1.5,-97.5 parent: 2 - - uid: 6135 + - uid: 4132 components: - type: Transform pos: -0.5,-97.5 parent: 2 - - uid: 6136 + - uid: 4133 components: - type: Transform pos: 0.5,-97.5 parent: 2 - - uid: 6137 + - uid: 4134 components: - type: Transform pos: 1.5,-97.5 parent: 2 - - uid: 6138 + - uid: 4135 components: - type: Transform pos: 2.5,-97.5 parent: 2 - - uid: 6139 + - uid: 4136 components: - type: Transform pos: 3.5,-97.5 parent: 2 - - uid: 6140 + - uid: 4137 components: - type: Transform pos: 4.5,-97.5 parent: 2 - - uid: 6141 + - uid: 4138 components: - type: Transform pos: 5.5,-97.5 parent: 2 - - uid: 6142 + - uid: 4139 components: - type: Transform pos: 6.5,-97.5 parent: 2 - - uid: 6143 + - uid: 4140 components: - type: Transform pos: 7.5,-97.5 parent: 2 - - uid: 6144 + - uid: 4141 components: - type: Transform pos: -3.5,-96.5 parent: 2 - - uid: 6145 + - uid: 4142 components: - type: Transform pos: -3.5,-95.5 parent: 2 - - uid: 6146 + - uid: 4143 components: - type: Transform pos: -3.5,-94.5 parent: 2 - - uid: 6147 + - uid: 4144 components: - type: Transform pos: -3.5,-93.5 parent: 2 - - uid: 6148 + - uid: 4145 components: - type: Transform pos: -3.5,-92.5 parent: 2 - - uid: 6149 + - uid: 4146 components: - type: Transform pos: -3.5,-91.5 parent: 2 - - uid: 6150 + - uid: 4147 components: - type: Transform pos: -3.5,-90.5 parent: 2 - - uid: 6151 + - uid: 4148 components: - type: Transform pos: -3.5,-89.5 parent: 2 - - uid: 6152 + - uid: 4149 components: - type: Transform pos: -3.5,-88.5 parent: 2 - - uid: 6153 + - uid: 4150 components: - type: Transform pos: -3.5,-87.5 parent: 2 - - uid: 6154 + - uid: 4151 components: - type: Transform pos: -3.5,-86.5 parent: 2 - - uid: 6155 + - uid: 4152 components: - type: Transform pos: -3.5,-85.5 parent: 2 - - uid: 6156 + - uid: 4153 components: - type: Transform pos: -3.5,-84.5 parent: 2 - - uid: 6157 + - uid: 4154 components: - type: Transform pos: -3.5,-83.5 parent: 2 - - uid: 6158 + - uid: 4155 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 6159 + - uid: 4156 components: - type: Transform pos: -3.5,-81.5 parent: 2 - - uid: 6160 + - uid: 4157 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 6186 + - uid: 4158 components: - type: Transform pos: 11.5,-252.5 parent: 2 - - uid: 6285 + - uid: 4159 components: - type: Transform pos: 7.5,-249.5 parent: 2 - - uid: 6287 + - uid: 4160 components: - type: Transform pos: 7.5,-252.5 parent: 2 - - uid: 6288 + - uid: 4161 components: - type: Transform pos: 6.5,-111.5 parent: 2 - - uid: 6289 + - uid: 4162 components: - type: Transform pos: 6.5,-110.5 parent: 2 - - uid: 6290 + - uid: 4163 components: - type: Transform pos: 5.5,-110.5 parent: 2 - - uid: 6291 + - uid: 4164 components: - type: Transform pos: 4.5,-110.5 parent: 2 - - uid: 6292 + - uid: 4165 components: - type: Transform pos: 3.5,-110.5 parent: 2 - - uid: 6293 + - uid: 4166 components: - type: Transform pos: 3.5,-111.5 parent: 2 - - uid: 6294 + - uid: 4167 components: - type: Transform pos: 3.5,-112.5 parent: 2 - - uid: 6295 + - uid: 4168 components: - type: Transform pos: 3.5,-113.5 parent: 2 - - uid: 6296 + - uid: 4169 components: - type: Transform pos: 3.5,-114.5 parent: 2 - - uid: 6297 + - uid: 4170 components: - type: Transform pos: 3.5,-115.5 parent: 2 - - uid: 6298 + - uid: 4171 components: - type: Transform pos: 3.5,-116.5 parent: 2 - - uid: 6299 + - uid: 4172 components: - type: Transform pos: 2.5,-116.5 parent: 2 - - uid: 6300 + - uid: 4173 components: - type: Transform pos: 1.5,-116.5 parent: 2 - - uid: 6301 + - uid: 4174 components: - type: Transform pos: 1.5,-115.5 parent: 2 - - uid: 6305 + - uid: 4175 components: - type: Transform pos: 5.5,-114.5 parent: 2 - - uid: 6446 + - uid: 4176 components: - type: Transform pos: 7.5,-153.5 parent: 2 - - uid: 6447 + - uid: 4177 components: - type: Transform pos: 7.5,-152.5 parent: 2 - - uid: 6448 + - uid: 4178 components: - type: Transform pos: 7.5,-151.5 parent: 2 - - uid: 6449 + - uid: 4179 components: - type: Transform pos: 8.5,-151.5 parent: 2 - - uid: 6450 + - uid: 4180 components: - type: Transform pos: 8.5,-150.5 parent: 2 - - uid: 6451 + - uid: 4181 components: - type: Transform pos: 8.5,-149.5 parent: 2 - - uid: 6452 + - uid: 4182 components: - type: Transform pos: 8.5,-148.5 parent: 2 - - uid: 6453 + - uid: 4183 components: - type: Transform pos: 8.5,-147.5 parent: 2 - - uid: 6454 + - uid: 4184 components: - type: Transform pos: 8.5,-146.5 parent: 2 - - uid: 6455 + - uid: 4185 components: - type: Transform pos: 8.5,-145.5 parent: 2 - - uid: 6456 + - uid: 4186 components: - type: Transform pos: 8.5,-144.5 parent: 2 - - uid: 6457 + - uid: 4187 components: - type: Transform pos: 8.5,-143.5 parent: 2 - - uid: 6458 + - uid: 4188 components: - type: Transform pos: 8.5,-142.5 parent: 2 - - uid: 6459 + - uid: 4189 components: - type: Transform pos: 8.5,-141.5 parent: 2 - - uid: 6460 + - uid: 4190 components: - type: Transform pos: 8.5,-140.5 parent: 2 - - uid: 6461 + - uid: 4191 components: - type: Transform pos: 8.5,-139.5 parent: 2 - - uid: 6462 + - uid: 4192 components: - type: Transform pos: 8.5,-138.5 parent: 2 - - uid: 6463 + - uid: 4193 components: - type: Transform pos: 7.5,-138.5 parent: 2 - - uid: 6464 + - uid: 4194 components: - type: Transform pos: 6.5,-138.5 parent: 2 - - uid: 6465 + - uid: 4195 components: - type: Transform pos: 6.5,-137.5 parent: 2 - - uid: 6466 + - uid: 4196 components: - type: Transform pos: 8.5,-137.5 parent: 2 - - uid: 6467 + - uid: 4197 components: - type: Transform pos: 8.5,-136.5 parent: 2 - - uid: 6468 + - uid: 4198 components: - type: Transform pos: 7.5,-136.5 parent: 2 - - uid: 6469 + - uid: 4199 components: - type: Transform pos: 7.5,-135.5 parent: 2 - - uid: 6470 + - uid: 4200 components: - type: Transform pos: 6.5,-135.5 parent: 2 - - uid: 6471 + - uid: 4201 components: - type: Transform pos: 5.5,-135.5 parent: 2 - - uid: 6472 + - uid: 4202 components: - type: Transform pos: 4.5,-135.5 parent: 2 - - uid: 6473 + - uid: 4203 components: - type: Transform pos: 3.5,-135.5 parent: 2 - - uid: 6474 + - uid: 4204 components: - type: Transform pos: 2.5,-135.5 parent: 2 - - uid: 6475 + - uid: 4205 components: - type: Transform pos: 1.5,-135.5 parent: 2 - - uid: 6476 + - uid: 4206 components: - type: Transform pos: 0.5,-135.5 parent: 2 - - uid: 6477 + - uid: 4207 components: - type: Transform pos: 0.5,-136.5 parent: 2 - - uid: 6478 + - uid: 4208 components: - type: Transform pos: 0.5,-137.5 parent: 2 - - uid: 6479 + - uid: 4209 components: - type: Transform pos: 0.5,-138.5 parent: 2 - - uid: 6480 + - uid: 4210 components: - type: Transform pos: 0.5,-139.5 parent: 2 - - uid: 6481 + - uid: 4211 components: - type: Transform pos: 0.5,-140.5 parent: 2 - - uid: 6482 + - uid: 4212 components: - type: Transform pos: -0.5,-140.5 parent: 2 - - uid: 6483 + - uid: 4213 components: - type: Transform pos: -1.5,-140.5 parent: 2 - - uid: 6484 + - uid: 4214 components: - type: Transform pos: -2.5,-140.5 parent: 2 - - uid: 6485 + - uid: 4215 components: - type: Transform pos: -3.5,-140.5 parent: 2 - - uid: 6486 + - uid: 4216 components: - type: Transform pos: -4.5,-140.5 parent: 2 - - uid: 6487 + - uid: 4217 components: - type: Transform pos: -4.5,-139.5 parent: 2 - - uid: 6488 + - uid: 4218 components: - type: Transform pos: -4.5,-138.5 parent: 2 - - uid: 6489 + - uid: 4219 components: - type: Transform pos: -4.5,-137.5 parent: 2 - - uid: 6490 + - uid: 4220 components: - type: Transform pos: -4.5,-136.5 parent: 2 - - uid: 6491 + - uid: 4221 components: - type: Transform pos: -4.5,-135.5 parent: 2 - - uid: 6492 + - uid: 4222 components: - type: Transform pos: -3.5,-135.5 parent: 2 - - uid: 6493 + - uid: 4223 components: - type: Transform pos: -3.5,-134.5 parent: 2 - - uid: 6511 + - uid: 4224 components: - type: Transform pos: 7.5,-251.5 parent: 2 - - uid: 6552 + - uid: 4225 components: - type: Transform pos: 7.5,-248.5 parent: 2 - - uid: 6553 + - uid: 4226 components: - type: Transform pos: 8.5,-248.5 parent: 2 - - uid: 6628 + - uid: 4227 components: - type: Transform pos: 9.5,-252.5 parent: 2 - - uid: 6629 + - uid: 4228 components: - type: Transform pos: 8.5,-252.5 parent: 2 - - uid: 6632 + - uid: 4229 components: - type: Transform pos: 10.5,-252.5 parent: 2 - - uid: 6651 + - uid: 4230 components: - type: Transform pos: -15.5,-249.5 parent: 2 - - uid: 6670 + - uid: 4231 components: - type: Transform pos: -15.5,-250.5 parent: 2 - - uid: 6737 + - uid: 4232 components: - type: Transform pos: 9.5,-248.5 parent: 2 - - uid: 6754 + - uid: 4233 components: - type: Transform pos: 14.5,-248.5 parent: 2 - - uid: 6755 + - uid: 4234 components: - type: Transform pos: 11.5,-248.5 parent: 2 - - uid: 6756 + - uid: 4235 components: - type: Transform pos: 12.5,-248.5 parent: 2 - - uid: 6757 + - uid: 4236 components: - type: Transform pos: 13.5,-248.5 parent: 2 - - uid: 6758 + - uid: 4237 components: - type: Transform pos: 15.5,-249.5 parent: 2 - - uid: 6761 + - uid: 4238 components: - type: Transform pos: 10.5,-248.5 parent: 2 - - uid: 6762 + - uid: 4239 components: - type: Transform pos: 14.5,-249.5 parent: 2 - - uid: 6764 + - uid: 4240 components: - type: Transform pos: 6.5,-252.5 parent: 2 - - uid: 6920 + - uid: 4241 components: - type: Transform pos: -2.5,-161.5 parent: 2 - - uid: 6921 + - uid: 4242 components: - type: Transform pos: -2.5,-162.5 parent: 2 - - uid: 6922 + - uid: 4243 components: - type: Transform pos: -2.5,-163.5 parent: 2 - - uid: 6923 + - uid: 4244 components: - type: Transform pos: -1.5,-163.5 parent: 2 - - uid: 6924 + - uid: 4245 components: - type: Transform pos: -0.5,-163.5 parent: 2 - - uid: 6925 + - uid: 4246 components: - type: Transform pos: 0.5,-163.5 parent: 2 - - uid: 6926 + - uid: 4247 components: - type: Transform pos: 1.5,-163.5 parent: 2 - - uid: 6927 + - uid: 4248 components: - type: Transform pos: 1.5,-164.5 parent: 2 - - uid: 6928 + - uid: 4249 components: - type: Transform pos: 2.5,-164.5 parent: 2 - - uid: 6929 + - uid: 4250 components: - type: Transform pos: 1.5,-165.5 parent: 2 - - uid: 6930 + - uid: 4251 components: - type: Transform pos: 1.5,-166.5 parent: 2 - - uid: 6931 + - uid: 4252 components: - type: Transform pos: 1.5,-167.5 parent: 2 - - uid: 6932 + - uid: 4253 components: - type: Transform pos: 1.5,-168.5 parent: 2 - - uid: 6933 + - uid: 4254 components: - type: Transform pos: 1.5,-169.5 parent: 2 - - uid: 6934 + - uid: 4255 components: - type: Transform pos: 1.5,-170.5 parent: 2 - - uid: 6935 + - uid: 4256 components: - type: Transform pos: 1.5,-171.5 parent: 2 - - uid: 6936 + - uid: 4257 components: - type: Transform pos: 1.5,-172.5 parent: 2 - - uid: 6937 + - uid: 4258 components: - type: Transform pos: 1.5,-173.5 parent: 2 - - uid: 6938 + - uid: 4259 components: - type: Transform pos: 1.5,-174.5 parent: 2 - - uid: 6939 + - uid: 4260 components: - type: Transform pos: 1.5,-175.5 parent: 2 - - uid: 6940 + - uid: 4261 components: - type: Transform pos: 1.5,-176.5 parent: 2 - - uid: 6941 + - uid: 4262 components: - type: Transform pos: 0.5,-176.5 parent: 2 - - uid: 6942 + - uid: 4263 components: - type: Transform pos: -0.5,-176.5 parent: 2 - - uid: 7064 + - uid: 4264 components: - type: Transform pos: 5.5,-187.5 parent: 2 - - uid: 7065 + - uid: 4265 components: - type: Transform pos: 5.5,-188.5 parent: 2 - - uid: 7066 + - uid: 4266 components: - type: Transform pos: 4.5,-188.5 parent: 2 - - uid: 7067 + - uid: 4267 components: - type: Transform pos: 5.5,-189.5 parent: 2 - - uid: 7068 + - uid: 4268 components: - type: Transform pos: 5.5,-190.5 parent: 2 - - uid: 7069 + - uid: 4269 components: - type: Transform pos: 5.5,-191.5 parent: 2 - - uid: 7070 + - uid: 4270 components: - type: Transform pos: 5.5,-192.5 parent: 2 - - uid: 7071 + - uid: 4271 components: - type: Transform pos: 5.5,-193.5 parent: 2 - - uid: 7072 + - uid: 4272 components: - type: Transform pos: 5.5,-194.5 parent: 2 - - uid: 7073 + - uid: 4273 components: - type: Transform pos: 5.5,-195.5 parent: 2 - - uid: 7074 + - uid: 4274 components: - type: Transform pos: 5.5,-196.5 parent: 2 - - uid: 7075 + - uid: 4275 components: - type: Transform pos: 5.5,-197.5 parent: 2 - - uid: 7076 + - uid: 4276 components: - type: Transform pos: 5.5,-198.5 parent: 2 - - uid: 7077 + - uid: 4277 components: - type: Transform pos: 4.5,-198.5 parent: 2 - - uid: 7078 + - uid: 4278 components: - type: Transform pos: 3.5,-198.5 parent: 2 - - uid: 7079 + - uid: 4279 components: - type: Transform pos: 2.5,-198.5 parent: 2 - - uid: 7080 + - uid: 4280 components: - type: Transform pos: 1.5,-198.5 parent: 2 - - uid: 7081 + - uid: 4281 components: - type: Transform pos: 0.5,-198.5 parent: 2 - - uid: 7082 + - uid: 4282 components: - type: Transform pos: -0.5,-198.5 parent: 2 - - uid: 7083 + - uid: 4283 components: - type: Transform pos: -1.5,-198.5 parent: 2 - - uid: 7084 + - uid: 4284 components: - type: Transform pos: -2.5,-198.5 parent: 2 - - uid: 7085 + - uid: 4285 components: - type: Transform pos: -2.5,-199.5 parent: 2 - - uid: 7086 + - uid: 4286 components: - type: Transform pos: -2.5,-200.5 parent: 2 - - uid: 7087 + - uid: 4287 components: - type: Transform pos: -2.5,-201.5 parent: 2 - - uid: 7088 + - uid: 4288 components: - type: Transform pos: -2.5,-202.5 parent: 2 - - uid: 7089 + - uid: 4289 components: - type: Transform pos: -2.5,-203.5 parent: 2 - - uid: 7090 + - uid: 4290 components: - type: Transform pos: -3.5,-203.5 parent: 2 - - uid: 7243 + - uid: 4291 components: - type: Transform pos: -15.5,-248.5 parent: 2 - - uid: 7262 + - uid: 4292 components: - type: Transform pos: 7.5,-337.5 parent: 2 - - uid: 7263 + - uid: 4293 components: - type: Transform pos: 7.5,-340.5 parent: 2 - - uid: 7481 + - uid: 4294 components: - type: Transform pos: -2.5,-247.5 parent: 2 - - uid: 7575 + - uid: 4295 components: - type: Transform pos: 2.5,-229.5 parent: 2 - - uid: 7576 + - uid: 4296 components: - type: Transform pos: 1.5,-229.5 parent: 2 - - uid: 7577 + - uid: 4297 components: - type: Transform pos: 0.5,-229.5 parent: 2 - - uid: 7584 + - uid: 4298 components: - type: Transform pos: -0.5,-230.5 parent: 2 - - uid: 7586 + - uid: 4299 components: - type: Transform pos: -1.5,-230.5 parent: 2 - - uid: 7587 + - uid: 4300 components: - type: Transform pos: -2.5,-230.5 parent: 2 - - uid: 7589 + - uid: 4301 components: - type: Transform pos: -2.5,-229.5 parent: 2 - - uid: 7590 + - uid: 4302 components: - type: Transform pos: -2.5,-228.5 parent: 2 - - uid: 7608 + - uid: 4303 components: - type: Transform pos: 0.5,-228.5 parent: 2 - - uid: 7609 + - uid: 4304 components: - type: Transform pos: 0.5,-227.5 parent: 2 - - uid: 7610 + - uid: 4305 components: - type: Transform pos: 0.5,-226.5 parent: 2 - - uid: 7611 + - uid: 4306 components: - type: Transform pos: 0.5,-225.5 parent: 2 - - uid: 7612 + - uid: 4307 components: - type: Transform pos: 0.5,-224.5 parent: 2 - - uid: 7613 + - uid: 4308 components: - type: Transform pos: 0.5,-223.5 parent: 2 - - uid: 7614 + - uid: 4309 components: - type: Transform pos: 0.5,-222.5 parent: 2 - - uid: 7615 + - uid: 4310 components: - type: Transform pos: 0.5,-221.5 parent: 2 - - uid: 7616 + - uid: 4311 components: - type: Transform pos: 0.5,-220.5 parent: 2 - - uid: 7617 + - uid: 4312 components: - type: Transform pos: 0.5,-219.5 parent: 2 - - uid: 7618 + - uid: 4313 components: - type: Transform pos: 1.5,-219.5 parent: 2 - - uid: 7619 + - uid: 4314 components: - type: Transform pos: 2.5,-219.5 parent: 2 - - uid: 7880 + - uid: 4315 components: - type: Transform pos: 1.5,-247.5 parent: 2 - - uid: 7965 + - uid: 4316 components: - type: Transform pos: 6.5,-250.5 parent: 2 - - uid: 7966 + - uid: 4317 components: - type: Transform pos: 4.5,-250.5 parent: 2 - - uid: 7968 + - uid: 4318 components: - type: Transform pos: 2.5,-247.5 parent: 2 - - uid: 7969 + - uid: 4319 components: - type: Transform pos: 5.5,-250.5 parent: 2 - - uid: 7970 + - uid: 4320 components: - type: Transform pos: 2.5,-248.5 parent: 2 - - uid: 8102 + - uid: 4321 components: - type: Transform pos: 3.5,-250.5 parent: 2 - - uid: 8114 + - uid: 4322 components: - type: Transform pos: 5.5,-252.5 parent: 2 - - uid: 8140 + - uid: 4323 components: - type: Transform pos: 0.5,-247.5 parent: 2 - - uid: 8179 + - uid: 4324 components: - type: Transform pos: 2.5,-250.5 parent: 2 - - uid: 8203 + - uid: 4325 components: - type: Transform pos: 2.5,-249.5 parent: 2 - - uid: 8316 + - uid: 4326 components: - type: Transform pos: 15.5,-138.5 parent: 2 - - uid: 8317 + - uid: 4327 components: - type: Transform pos: 16.5,-138.5 parent: 2 - - uid: 8318 + - uid: 4328 components: - type: Transform pos: 17.5,-138.5 parent: 2 - - uid: 8319 + - uid: 4329 components: - type: Transform pos: 17.5,-137.5 parent: 2 - - uid: 8321 + - uid: 4330 components: - type: Transform pos: 15.5,-139.5 parent: 2 - - uid: 8322 + - uid: 4331 components: - type: Transform pos: 15.5,-140.5 parent: 2 - - uid: 8324 + - uid: 4332 components: - type: Transform pos: 15.5,-142.5 parent: 2 - - uid: 8325 + - uid: 4333 components: - type: Transform pos: 15.5,-143.5 parent: 2 - - uid: 8326 + - uid: 4334 components: - type: Transform pos: 15.5,-144.5 parent: 2 - - uid: 8327 + - uid: 4335 components: - type: Transform pos: 15.5,-145.5 parent: 2 - - uid: 8328 + - uid: 4336 components: - type: Transform pos: 15.5,-147.5 parent: 2 - - uid: 8329 + - uid: 4337 components: - type: Transform pos: 15.5,-148.5 parent: 2 - - uid: 8330 + - uid: 4338 components: - type: Transform pos: 15.5,-149.5 parent: 2 - - uid: 8331 + - uid: 4339 components: - type: Transform pos: 15.5,-150.5 parent: 2 - - uid: 8332 + - uid: 4340 components: - type: Transform pos: 15.5,-151.5 parent: 2 - - uid: 8333 + - uid: 4341 components: - type: Transform pos: 15.5,-153.5 parent: 2 - - uid: 8334 + - uid: 4342 components: - type: Transform pos: 15.5,-154.5 parent: 2 - - uid: 8335 + - uid: 4343 components: - type: Transform pos: 15.5,-155.5 parent: 2 - - uid: 8336 + - uid: 4344 components: - type: Transform pos: 15.5,-156.5 parent: 2 - - uid: 8337 + - uid: 4345 components: - type: Transform pos: 15.5,-157.5 parent: 2 - - uid: 8338 + - uid: 4346 components: - type: Transform pos: 15.5,-158.5 parent: 2 - - uid: 8339 + - uid: 4347 components: - type: Transform pos: 15.5,-159.5 parent: 2 - - uid: 8340 + - uid: 4348 components: - type: Transform pos: 15.5,-160.5 parent: 2 - - uid: 8341 + - uid: 4349 components: - type: Transform pos: 15.5,-162.5 parent: 2 - - uid: 8342 + - uid: 4350 components: - type: Transform pos: 15.5,-163.5 parent: 2 - - uid: 8343 + - uid: 4351 components: - type: Transform pos: 15.5,-164.5 parent: 2 - - uid: 8344 + - uid: 4352 components: - type: Transform pos: 15.5,-165.5 parent: 2 - - uid: 8501 + - uid: 4353 components: - type: Transform pos: -0.5,-247.5 parent: 2 - - uid: 8795 + - uid: 4354 components: - type: Transform pos: -3.5,-247.5 parent: 2 - - uid: 9144 + - uid: 4355 components: - type: Transform pos: 8.5,-284.5 parent: 2 - - uid: 9145 + - uid: 4356 components: - type: Transform pos: 8.5,-285.5 parent: 2 - - uid: 9146 + - uid: 4357 components: - type: Transform pos: 8.5,-286.5 parent: 2 - - uid: 9147 + - uid: 4358 components: - type: Transform pos: 8.5,-287.5 parent: 2 - - uid: 9148 + - uid: 4359 components: - type: Transform pos: 7.5,-287.5 parent: 2 - - uid: 9149 + - uid: 4360 components: - type: Transform pos: 6.5,-287.5 parent: 2 - - uid: 9150 + - uid: 4361 components: - type: Transform pos: 5.5,-287.5 parent: 2 - - uid: 9151 + - uid: 4362 components: - type: Transform pos: 4.5,-287.5 parent: 2 - - uid: 9152 + - uid: 4363 components: - type: Transform pos: 3.5,-287.5 parent: 2 - - uid: 9153 + - uid: 4364 components: - type: Transform pos: 2.5,-287.5 parent: 2 - - uid: 9154 + - uid: 4365 components: - type: Transform pos: 2.5,-286.5 parent: 2 - - uid: 9155 + - uid: 4366 components: - type: Transform pos: 2.5,-285.5 parent: 2 - - uid: 9156 + - uid: 4367 components: - type: Transform pos: 2.5,-284.5 parent: 2 - - uid: 9157 + - uid: 4368 components: - type: Transform pos: 2.5,-283.5 parent: 2 - - uid: 9158 + - uid: 4369 components: - type: Transform pos: 2.5,-282.5 parent: 2 - - uid: 9159 + - uid: 4370 components: - type: Transform pos: 2.5,-281.5 parent: 2 - - uid: 9160 + - uid: 4371 components: - type: Transform pos: 3.5,-281.5 parent: 2 - - uid: 9161 + - uid: 4372 components: - type: Transform pos: 4.5,-281.5 parent: 2 - - uid: 9162 + - uid: 4373 components: - type: Transform pos: 5.5,-281.5 parent: 2 - - uid: 9163 + - uid: 4374 components: - type: Transform pos: 1.5,-285.5 parent: 2 - - uid: 9168 + - uid: 4375 components: - type: Transform pos: 5.5,-283.5 parent: 2 - - uid: 9169 + - uid: 4376 components: - type: Transform pos: 5.5,-282.5 parent: 2 - - uid: 9175 + - uid: 4377 components: - type: Transform pos: 5.5,-280.5 parent: 2 - - uid: 9176 + - uid: 4378 components: - type: Transform pos: 5.5,-279.5 parent: 2 - - uid: 9177 + - uid: 4379 components: - type: Transform pos: 5.5,-278.5 parent: 2 - - uid: 9178 + - uid: 4380 components: - type: Transform pos: 5.5,-277.5 parent: 2 - - uid: 9179 + - uid: 4381 components: - type: Transform pos: 5.5,-276.5 parent: 2 - - uid: 9180 + - uid: 4382 components: - type: Transform pos: 5.5,-275.5 parent: 2 - - uid: 9181 + - uid: 4383 components: - type: Transform pos: 5.5,-274.5 parent: 2 - - uid: 9182 + - uid: 4384 components: - type: Transform pos: 5.5,-273.5 parent: 2 - - uid: 9183 + - uid: 4385 components: - type: Transform pos: 5.5,-272.5 parent: 2 - - uid: 9184 + - uid: 4386 components: - type: Transform pos: 6.5,-272.5 parent: 2 - - uid: 9186 + - uid: 4387 components: - type: Transform pos: 7.5,-272.5 parent: 2 - - uid: 9188 + - uid: 4388 components: - type: Transform pos: 0.5,-285.5 parent: 2 - - uid: 9189 + - uid: 4389 components: - type: Transform pos: -0.5,-285.5 parent: 2 - - uid: 9190 + - uid: 4390 components: - type: Transform pos: -1.5,-285.5 parent: 2 - - uid: 9191 + - uid: 4391 components: - type: Transform pos: -1.5,-284.5 parent: 2 - - uid: 9192 + - uid: 4392 components: - type: Transform pos: -2.5,-284.5 parent: 2 - - uid: 9193 + - uid: 4393 components: - type: Transform pos: -2.5,-283.5 parent: 2 - - uid: 9194 + - uid: 4394 components: - type: Transform pos: -2.5,-282.5 parent: 2 - - uid: 9195 + - uid: 4395 components: - type: Transform pos: -2.5,-281.5 parent: 2 - - uid: 9196 + - uid: 4396 components: - type: Transform pos: -2.5,-280.5 parent: 2 - - uid: 9197 + - uid: 4397 components: - type: Transform pos: -2.5,-279.5 parent: 2 - - uid: 9198 + - uid: 4398 components: - type: Transform pos: -3.5,-279.5 parent: 2 - - uid: 9199 + - uid: 4399 components: - type: Transform pos: -4.5,-279.5 parent: 2 - - uid: 9200 + - uid: 4400 components: - type: Transform pos: -5.5,-279.5 parent: 2 - - uid: 9201 + - uid: 4401 components: - type: Transform pos: -5.5,-278.5 parent: 2 - - uid: 9202 + - uid: 4402 components: - type: Transform pos: -5.5,-277.5 parent: 2 - - uid: 9203 + - uid: 4403 components: - type: Transform pos: -5.5,-276.5 parent: 2 - - uid: 9204 + - uid: 4404 components: - type: Transform pos: -5.5,-275.5 parent: 2 - - uid: 9205 + - uid: 4405 components: - type: Transform pos: -5.5,-274.5 parent: 2 - - uid: 9206 + - uid: 4406 components: - type: Transform pos: -5.5,-273.5 parent: 2 - - uid: 9207 + - uid: 4407 components: - type: Transform pos: -5.5,-272.5 parent: 2 - - uid: 9208 + - uid: 4408 components: - type: Transform pos: -5.5,-271.5 parent: 2 - - uid: 9210 + - uid: 4409 components: - type: Transform pos: -4.5,-271.5 parent: 2 - - uid: 9211 + - uid: 4410 components: - type: Transform pos: -3.5,-271.5 parent: 2 - - uid: 9212 + - uid: 4411 components: - type: Transform pos: -2.5,-271.5 parent: 2 - - uid: 9213 + - uid: 4412 components: - type: Transform pos: -1.5,-271.5 parent: 2 - - uid: 9214 + - uid: 4413 components: - type: Transform pos: -1.5,-272.5 parent: 2 - - uid: 9502 + - uid: 4414 components: - type: Transform pos: 3.5,-340.5 parent: 2 - - uid: 9588 + - uid: 4415 components: - type: Transform pos: 23.5,-306.5 parent: 2 - - uid: 9589 + - uid: 4416 components: - type: Transform pos: 19.5,-305.5 parent: 2 - - uid: 9590 + - uid: 4417 components: - type: Transform pos: 24.5,-306.5 parent: 2 - - uid: 9591 + - uid: 4418 components: - type: Transform pos: 25.5,-306.5 parent: 2 - - uid: 9592 + - uid: 4419 components: - type: Transform pos: 25.5,-307.5 parent: 2 - - uid: 9593 + - uid: 4420 components: - type: Transform pos: 25.5,-308.5 parent: 2 - - uid: 9594 + - uid: 4421 components: - type: Transform pos: 24.5,-308.5 parent: 2 - - uid: 9595 + - uid: 4422 components: - type: Transform pos: 23.5,-308.5 parent: 2 - - uid: 9596 + - uid: 4423 components: - type: Transform pos: 20.5,-304.5 parent: 2 - - uid: 9597 + - uid: 4424 components: - type: Transform pos: 24.5,-309.5 parent: 2 - - uid: 9598 + - uid: 4425 components: - type: Transform pos: 24.5,-310.5 parent: 2 - - uid: 9599 + - uid: 4426 components: - type: Transform pos: 24.5,-304.5 parent: 2 - - uid: 9600 + - uid: 4427 components: - type: Transform pos: 23.5,-310.5 parent: 2 - - uid: 9601 + - uid: 4428 components: - type: Transform pos: 22.5,-310.5 parent: 2 - - uid: 9602 + - uid: 4429 components: - type: Transform pos: 21.5,-310.5 parent: 2 - - uid: 9603 + - uid: 4430 components: - type: Transform pos: 20.5,-310.5 parent: 2 - - uid: 9604 + - uid: 4431 components: - type: Transform pos: 20.5,-309.5 parent: 2 - - uid: 9605 + - uid: 4432 components: - type: Transform pos: 21.5,-304.5 parent: 2 - - uid: 9606 + - uid: 4433 components: - type: Transform pos: 22.5,-304.5 parent: 2 - - uid: 9607 + - uid: 4434 components: - type: Transform pos: 24.5,-305.5 parent: 2 - - uid: 9608 + - uid: 4435 components: - type: Transform pos: 19.5,-308.5 parent: 2 - - uid: 9609 + - uid: 4436 components: - type: Transform pos: 19.5,-307.5 parent: 2 - - uid: 9610 + - uid: 4437 components: - type: Transform pos: 20.5,-307.5 parent: 2 - - uid: 9611 + - uid: 4438 components: - type: Transform pos: 23.5,-304.5 parent: 2 - - uid: 9612 + - uid: 4439 components: - type: Transform pos: 19.5,-309.5 parent: 2 - - uid: 9614 + - uid: 4440 components: - type: Transform pos: 20.5,-305.5 parent: 2 - - uid: 9615 + - uid: 4441 components: - type: Transform pos: 19.5,-306.5 parent: 2 - - uid: 10217 + - uid: 4442 components: - type: Transform pos: 6.5,-319.5 parent: 2 - - uid: 10227 + - uid: 4443 components: - type: Transform pos: 1.5,-297.5 parent: 2 - - uid: 10228 + - uid: 4444 components: - type: Transform pos: -8.5,-297.5 parent: 2 - - uid: 10229 + - uid: 4445 components: - type: Transform pos: -7.5,-297.5 parent: 2 - - uid: 10230 + - uid: 4446 components: - type: Transform pos: -6.5,-297.5 parent: 2 - - uid: 10231 + - uid: 4447 components: - type: Transform pos: -5.5,-297.5 parent: 2 - - uid: 10232 + - uid: 4448 components: - type: Transform pos: -4.5,-297.5 parent: 2 - - uid: 10233 + - uid: 4449 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10234 + - uid: 4450 components: - type: Transform pos: -2.5,-297.5 parent: 2 - - uid: 10235 + - uid: 4451 components: - type: Transform pos: -1.5,-297.5 parent: 2 - - uid: 10236 + - uid: 4452 components: - type: Transform pos: -0.5,-297.5 parent: 2 - - uid: 10237 + - uid: 4453 components: - type: Transform pos: 0.5,-297.5 parent: 2 - - uid: 10238 + - uid: 4454 components: - type: Transform pos: 2.5,-297.5 parent: 2 - - uid: 10239 + - uid: 4455 components: - type: Transform pos: 3.5,-297.5 parent: 2 - - uid: 10240 + - uid: 4456 components: - type: Transform pos: 4.5,-297.5 parent: 2 - - uid: 10241 + - uid: 4457 components: - type: Transform pos: 5.5,-297.5 parent: 2 - - uid: 10242 + - uid: 4458 components: - type: Transform pos: 6.5,-297.5 parent: 2 - - uid: 10243 + - uid: 4459 components: - type: Transform pos: 7.5,-297.5 parent: 2 - - uid: 10244 + - uid: 4460 components: - type: Transform pos: 8.5,-297.5 parent: 2 - - uid: 10245 + - uid: 4461 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 10246 + - uid: 4462 components: - type: Transform pos: 9.5,-298.5 parent: 2 - - uid: 10247 + - uid: 4463 components: - type: Transform pos: 9.5,-299.5 parent: 2 - - uid: 10248 + - uid: 4464 components: - type: Transform pos: 9.5,-300.5 parent: 2 - - uid: 10249 + - uid: 4465 components: - type: Transform pos: 9.5,-301.5 parent: 2 - - uid: 10250 + - uid: 4466 components: - type: Transform pos: 9.5,-302.5 parent: 2 - - uid: 10251 + - uid: 4467 components: - type: Transform pos: 9.5,-303.5 parent: 2 - - uid: 10252 + - uid: 4468 components: - type: Transform pos: 9.5,-304.5 parent: 2 - - uid: 10253 + - uid: 4469 components: - type: Transform pos: 9.5,-305.5 parent: 2 - - uid: 10254 + - uid: 4470 components: - type: Transform pos: 9.5,-306.5 parent: 2 - - uid: 10255 + - uid: 4471 components: - type: Transform pos: 9.5,-307.5 parent: 2 - - uid: 10256 + - uid: 4472 components: - type: Transform pos: 8.5,-307.5 parent: 2 - - uid: 10257 + - uid: 4473 components: - type: Transform pos: 7.5,-307.5 parent: 2 - - uid: 10258 + - uid: 4474 components: - type: Transform pos: 6.5,-307.5 parent: 2 - - uid: 10259 + - uid: 4475 components: - type: Transform pos: 6.5,-306.5 parent: 2 - - uid: 10260 + - uid: 4476 components: - type: Transform pos: 6.5,-305.5 parent: 2 - - uid: 10261 + - uid: 4477 components: - type: Transform pos: 6.5,-304.5 parent: 2 - - uid: 10262 + - uid: 4478 components: - type: Transform pos: 6.5,-303.5 parent: 2 - - uid: 10263 + - uid: 4479 components: - type: Transform pos: 6.5,-302.5 parent: 2 - - uid: 10264 + - uid: 4480 components: - type: Transform pos: 6.5,-301.5 parent: 2 - - uid: 10265 + - uid: 4481 components: - type: Transform pos: 5.5,-301.5 parent: 2 - - uid: 10266 + - uid: 4482 components: - type: Transform pos: 4.5,-301.5 parent: 2 - - uid: 10267 + - uid: 4483 components: - type: Transform pos: 3.5,-301.5 parent: 2 - - uid: 10268 + - uid: 4484 components: - type: Transform pos: 2.5,-301.5 parent: 2 - - uid: 10269 + - uid: 4485 components: - type: Transform pos: 6.5,-308.5 parent: 2 - - uid: 10270 + - uid: 4486 components: - type: Transform pos: 6.5,-309.5 parent: 2 - - uid: 10271 + - uid: 4487 components: - type: Transform pos: 6.5,-310.5 parent: 2 - - uid: 10272 + - uid: 4488 components: - type: Transform pos: 6.5,-311.5 parent: 2 - - uid: 10273 + - uid: 4489 components: - type: Transform pos: 6.5,-312.5 parent: 2 - - uid: 10274 + - uid: 4490 components: - type: Transform pos: 6.5,-313.5 parent: 2 - - uid: 10275 + - uid: 4491 components: - type: Transform pos: 6.5,-314.5 parent: 2 - - uid: 10279 + - uid: 4492 components: - type: Transform pos: 9.5,-308.5 parent: 2 - - uid: 10280 + - uid: 4493 components: - type: Transform pos: 9.5,-309.5 parent: 2 - - uid: 10281 + - uid: 4494 components: - type: Transform pos: 9.5,-310.5 parent: 2 - - uid: 10282 + - uid: 4495 components: - type: Transform pos: 9.5,-311.5 parent: 2 - - uid: 10283 + - uid: 4496 components: - type: Transform pos: 9.5,-312.5 parent: 2 - - uid: 10284 + - uid: 4497 components: - type: Transform pos: 10.5,-312.5 parent: 2 - - uid: 10285 + - uid: 4498 components: - type: Transform pos: 10.5,-313.5 parent: 2 - - uid: 10286 + - uid: 4499 components: - type: Transform pos: 10.5,-314.5 parent: 2 - - uid: 10287 + - uid: 4500 components: - type: Transform pos: 10.5,-315.5 parent: 2 - - uid: 10288 + - uid: 4501 components: - type: Transform pos: 10.5,-316.5 parent: 2 - - uid: 10289 + - uid: 4502 components: - type: Transform pos: 10.5,-317.5 parent: 2 - - uid: 10290 + - uid: 4503 components: - type: Transform pos: 10.5,-318.5 parent: 2 - - uid: 10291 + - uid: 4504 components: - type: Transform pos: 9.5,-318.5 parent: 2 - - uid: 10292 + - uid: 4505 components: - type: Transform pos: 8.5,-318.5 parent: 2 - - uid: 10293 + - uid: 4506 components: - type: Transform pos: 7.5,-318.5 parent: 2 - - uid: 10294 + - uid: 4507 components: - type: Transform pos: 6.5,-318.5 parent: 2 - - uid: 10295 + - uid: 4508 components: - type: Transform pos: 5.5,-317.5 parent: 2 - - uid: 10296 + - uid: 4509 components: - type: Transform pos: 5.5,-319.5 parent: 2 - - uid: 10297 + - uid: 4510 components: - type: Transform pos: 4.5,-319.5 parent: 2 - - uid: 10298 + - uid: 4511 components: - type: Transform pos: 3.5,-319.5 parent: 2 - - uid: 10299 + - uid: 4512 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - uid: 10300 - components: - - type: Transform - pos: 1.5,-319.5 - parent: 2 - - uid: 10301 + - uid: 4513 components: - type: Transform pos: 0.5,-319.5 parent: 2 - - uid: 10302 + - uid: 4514 components: - type: Transform pos: 0.5,-318.5 parent: 2 - - uid: 10303 + - uid: 4515 components: - type: Transform pos: 0.5,-317.5 parent: 2 - - uid: 10304 + - uid: 4516 components: - type: Transform pos: -0.5,-317.5 parent: 2 - - uid: 10305 + - uid: 4517 components: - type: Transform pos: -1.5,-317.5 parent: 2 - - uid: 10306 + - uid: 4518 components: - type: Transform pos: -2.5,-317.5 parent: 2 - - uid: 10307 + - uid: 4519 components: - type: Transform pos: -3.5,-317.5 parent: 2 - - uid: 10308 + - uid: 4520 components: - type: Transform pos: -3.5,-318.5 parent: 2 - - uid: 10309 + - uid: 4521 components: - type: Transform pos: -3.5,-319.5 parent: 2 - - uid: 10310 + - uid: 4522 components: - type: Transform pos: -3.5,-320.5 parent: 2 - - uid: 10311 + - uid: 4523 components: - type: Transform pos: 0.5,-298.5 parent: 2 - - uid: 10312 + - uid: 4524 components: - type: Transform pos: 0.5,-299.5 parent: 2 - - uid: 10313 + - uid: 4525 components: - type: Transform pos: 0.5,-300.5 parent: 2 - - uid: 10314 + - uid: 4526 components: - type: Transform pos: 0.5,-301.5 parent: 2 - - uid: 10315 + - uid: 4527 components: - type: Transform pos: 0.5,-302.5 parent: 2 - - uid: 10316 + - uid: 4528 components: - type: Transform pos: 0.5,-303.5 parent: 2 - - uid: 10317 + - uid: 4529 components: - type: Transform pos: 0.5,-304.5 parent: 2 - - uid: 10318 + - uid: 4530 components: - type: Transform pos: 0.5,-305.5 parent: 2 - - uid: 10319 + - uid: 4531 components: - type: Transform pos: 0.5,-306.5 parent: 2 - - uid: 10320 + - uid: 4532 components: - type: Transform pos: 0.5,-307.5 parent: 2 - - uid: 10321 + - uid: 4533 components: - type: Transform pos: 0.5,-308.5 parent: 2 - - uid: 10322 + - uid: 4534 components: - type: Transform pos: -0.5,-308.5 parent: 2 - - uid: 10323 + - uid: 4535 components: - type: Transform pos: -1.5,-308.5 parent: 2 - - uid: 10324 + - uid: 4536 components: - type: Transform pos: -2.5,-308.5 parent: 2 - - uid: 10325 + - uid: 4537 components: - type: Transform pos: -3.5,-308.5 parent: 2 - - uid: 10332 + - uid: 4538 components: - type: Transform pos: 5.5,-314.5 parent: 2 - - uid: 10336 + - uid: 4539 components: - type: Transform pos: 5.5,-315.5 parent: 2 - - uid: 10337 + - uid: 4540 components: - type: Transform pos: 5.5,-316.5 parent: 2 - - uid: 10339 + - uid: 4541 components: - type: Transform pos: -3.5,-303.5 parent: 2 - - uid: 10340 + - uid: 4542 components: - type: Transform pos: -4.5,-303.5 parent: 2 - - uid: 10341 + - uid: 4543 components: - type: Transform pos: -5.5,-303.5 parent: 2 - - uid: 10342 + - uid: 4544 components: - type: Transform pos: -6.5,-303.5 parent: 2 - - uid: 10343 + - uid: 4545 components: - type: Transform pos: -7.5,-303.5 parent: 2 - - uid: 10348 + - uid: 4546 components: - type: Transform pos: -3.5,-307.5 parent: 2 - - uid: 10349 + - uid: 4547 components: - type: Transform pos: -3.5,-306.5 parent: 2 - - uid: 10350 + - uid: 4548 components: - type: Transform pos: -3.5,-305.5 parent: 2 - - uid: 10351 + - uid: 4549 components: - type: Transform pos: -3.5,-304.5 parent: 2 - - uid: 10634 + - uid: 4550 components: - type: Transform pos: -6.5,-335.5 parent: 2 - - uid: 10657 + - uid: 4551 components: - type: Transform pos: 7.5,-336.5 parent: 2 - - uid: 10673 + - uid: 4552 components: - type: Transform pos: 5.5,-346.5 parent: 2 - - uid: 10763 + - uid: 4553 components: - type: Transform pos: 0.5,-344.5 parent: 2 - - uid: 10853 + - uid: 4554 components: - type: Transform pos: 7.5,-344.5 parent: 2 - - uid: 10856 + - uid: 4555 components: - type: Transform pos: 2.5,-340.5 parent: 2 - - uid: 10857 + - uid: 4556 components: - type: Transform pos: 1.5,-340.5 parent: 2 - - uid: 10858 + - uid: 4557 components: - type: Transform pos: 0.5,-340.5 parent: 2 - - uid: 10859 + - uid: 4558 components: - type: Transform pos: -0.5,-340.5 parent: 2 - - uid: 10865 + - uid: 4559 components: - type: Transform pos: 0.5,-342.5 parent: 2 - - uid: 10871 + - uid: 4560 components: - type: Transform pos: -5.5,-335.5 parent: 2 - - uid: 10876 + - uid: 4561 components: - type: Transform pos: 4.5,-345.5 parent: 2 - - uid: 10877 + - uid: 4562 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 10878 + - uid: 4563 components: - type: Transform pos: 4.5,-347.5 parent: 2 - - uid: 10879 + - uid: 4564 components: - type: Transform pos: 0.5,-330.5 parent: 2 - - uid: 10880 + - uid: 4565 components: - type: Transform pos: 0.5,-331.5 parent: 2 - - uid: 10881 + - uid: 4566 components: - type: Transform pos: 0.5,-332.5 parent: 2 - - uid: 10882 + - uid: 4567 components: - type: Transform pos: 0.5,-333.5 parent: 2 - - uid: 10883 + - uid: 4568 components: - type: Transform pos: 0.5,-334.5 parent: 2 - - uid: 10884 + - uid: 4569 components: - type: Transform pos: 0.5,-335.5 parent: 2 - - uid: 10885 + - uid: 4570 components: - type: Transform pos: 0.5,-336.5 parent: 2 - - uid: 10886 + - uid: 4571 components: - type: Transform pos: 0.5,-337.5 parent: 2 - - uid: 10887 + - uid: 4572 components: - type: Transform pos: 0.5,-338.5 parent: 2 - - uid: 10888 + - uid: 4573 components: - type: Transform pos: 0.5,-339.5 parent: 2 - - uid: 10889 + - uid: 4574 components: - type: Transform pos: 1.5,-330.5 parent: 2 - - uid: 10890 + - uid: 4575 components: - type: Transform pos: 2.5,-330.5 parent: 2 - - uid: 10891 + - uid: 4576 components: - type: Transform pos: 3.5,-330.5 parent: 2 - - uid: 10892 + - uid: 4577 components: - type: Transform pos: 4.5,-330.5 parent: 2 - - uid: 10893 + - uid: 4578 components: - type: Transform pos: 5.5,-330.5 parent: 2 - - uid: 10894 + - uid: 4579 components: - type: Transform pos: 5.5,-329.5 parent: 2 - - uid: 10895 + - uid: 4580 components: - type: Transform pos: 6.5,-329.5 parent: 2 - - uid: 10896 + - uid: 4581 components: - type: Transform pos: 6.5,-328.5 parent: 2 - - uid: 10897 + - uid: 4582 components: - type: Transform pos: -1.5,-340.5 parent: 2 - - uid: 10898 + - uid: 4583 components: - type: Transform pos: -2.5,-340.5 parent: 2 - - uid: 10899 + - uid: 4584 components: - type: Transform pos: -3.5,-340.5 parent: 2 - - uid: 10900 + - uid: 4585 components: - type: Transform pos: -4.5,-340.5 parent: 2 - - uid: 10901 + - uid: 4586 components: - type: Transform pos: -4.5,-341.5 parent: 2 - - uid: 10902 + - uid: 4587 components: - type: Transform pos: -4.5,-342.5 parent: 2 - - uid: 10903 + - uid: 4588 components: - type: Transform pos: -4.5,-343.5 parent: 2 - - uid: 10904 + - uid: 4589 components: - type: Transform pos: -4.5,-344.5 parent: 2 - - uid: 10905 + - uid: 4590 components: - type: Transform pos: -4.5,-345.5 parent: 2 - - uid: 10906 + - uid: 4591 components: - type: Transform pos: -4.5,-346.5 parent: 2 - - uid: 10907 + - uid: 4592 components: - type: Transform pos: -3.5,-346.5 parent: 2 - - uid: 10908 + - uid: 4593 components: - type: Transform pos: -3.5,-347.5 parent: 2 - - uid: 10909 + - uid: 4594 components: - type: Transform pos: -4.5,-339.5 parent: 2 - - uid: 10910 + - uid: 4595 components: - type: Transform pos: -4.5,-338.5 parent: 2 - - uid: 10911 + - uid: 4596 components: - type: Transform pos: -4.5,-337.5 parent: 2 - - uid: 10912 + - uid: 4597 components: - type: Transform pos: -4.5,-336.5 parent: 2 - - uid: 10916 + - uid: 4598 components: - type: Transform pos: 1.5,-345.5 parent: 2 - - uid: 10968 + - uid: 4599 components: - type: Transform pos: 7.5,-343.5 parent: 2 - - uid: 11541 + - uid: 4600 components: - type: Transform pos: 6.5,-361.5 parent: 2 - - uid: 11542 + - uid: 4601 components: - type: Transform pos: 6.5,-360.5 parent: 2 - - uid: 11543 + - uid: 4602 components: - type: Transform pos: 5.5,-360.5 parent: 2 - - uid: 11544 + - uid: 4603 components: - type: Transform pos: 4.5,-360.5 parent: 2 - - uid: 11545 + - uid: 4604 components: - type: Transform pos: 3.5,-360.5 parent: 2 - - uid: 11546 + - uid: 4605 components: - type: Transform pos: 2.5,-360.5 parent: 2 - - uid: 11552 + - uid: 4606 components: - type: Transform pos: 1.5,-361.5 parent: 2 - - uid: 11920 + - uid: 4607 components: - type: Transform pos: 2.5,-389.5 parent: 2 - - uid: 11923 + - uid: 4608 components: - type: Transform pos: 1.5,-389.5 parent: 2 - - uid: 11932 + - uid: 4609 components: - type: Transform pos: 0.5,-387.5 parent: 2 - - uid: 11934 + - uid: 4610 components: - type: Transform pos: 0.5,-388.5 parent: 2 - - uid: 11935 + - uid: 4611 components: - type: Transform pos: 0.5,-389.5 parent: 2 - - uid: 11964 + - uid: 4612 components: - type: Transform pos: 7.5,-334.5 parent: 2 - - uid: 11969 + - uid: 4613 components: - type: Transform pos: 0.5,-343.5 parent: 2 - - uid: 12996 + - uid: 4614 components: - type: Transform pos: 7.5,-341.5 parent: 2 - - uid: 13398 + - uid: 4615 + components: + - type: Transform + pos: 1.5,-319.5 + parent: 2 + - uid: 4616 components: - type: Transform pos: -7.5,-335.5 parent: 2 - - uid: 13400 + - uid: 4617 components: - type: Transform pos: 5.5,-340.5 parent: 2 - - uid: 13403 + - uid: 4618 components: - type: Transform pos: 6.5,-340.5 parent: 2 - - uid: 13467 + - uid: 4619 components: - type: Transform pos: 6.5,-114.5 parent: 2 - - uid: 13514 + - uid: 4620 components: - type: Transform pos: 7.5,-114.5 parent: 2 - - uid: 13515 + - uid: 4621 components: - type: Transform pos: 8.5,-114.5 parent: 2 - - uid: 13516 + - uid: 4622 components: - type: Transform pos: 8.5,-115.5 parent: 2 - - uid: 13517 + - uid: 4623 components: - type: Transform pos: 8.5,-116.5 parent: 2 - - uid: 14482 + - uid: 4624 components: - type: Transform pos: 5.5,-96.5 parent: 2 - - uid: 14483 + - uid: 4625 components: - type: Transform pos: 5.5,-95.5 parent: 2 - - uid: 14484 + - uid: 4626 components: - type: Transform pos: 5.5,-94.5 parent: 2 - - uid: 14485 + - uid: 4627 components: - type: Transform pos: 5.5,-93.5 parent: 2 - - uid: 14486 + - uid: 4628 components: - type: Transform pos: 5.5,-92.5 parent: 2 - - uid: 14487 + - uid: 4629 components: - type: Transform pos: 5.5,-91.5 parent: 2 - - uid: 14488 + - uid: 4630 components: - type: Transform pos: 5.5,-90.5 parent: 2 - - uid: 14489 + - uid: 4631 components: - type: Transform pos: 5.5,-89.5 parent: 2 - - uid: 14490 + - uid: 4632 components: - type: Transform pos: 5.5,-88.5 parent: 2 - - uid: 14491 + - uid: 4633 components: - type: Transform pos: 5.5,-87.5 parent: 2 - - uid: 14492 + - uid: 4634 components: - type: Transform pos: 5.5,-86.5 parent: 2 - - uid: 14493 + - uid: 4635 components: - type: Transform pos: 5.5,-85.5 parent: 2 - - uid: 14494 + - uid: 4636 components: - type: Transform pos: 5.5,-84.5 parent: 2 - - uid: 14495 + - uid: 4637 components: - type: Transform pos: 5.5,-83.5 parent: 2 - - uid: 14496 + - uid: 4638 components: - type: Transform pos: 5.5,-82.5 parent: 2 - - uid: 14497 + - uid: 4639 components: - type: Transform pos: 5.5,-81.5 parent: 2 - - uid: 14498 + - uid: 4640 components: - type: Transform pos: 6.5,-81.5 parent: 2 - - uid: 14499 + - uid: 4641 components: - type: Transform pos: 7.5,-81.5 parent: 2 - - uid: 14500 + - uid: 4642 components: - type: Transform pos: 8.5,-81.5 parent: 2 - - uid: 14501 + - uid: 4643 components: - type: Transform pos: 9.5,-81.5 parent: 2 - - uid: 14502 + - uid: 4644 components: - type: Transform pos: 10.5,-81.5 parent: 2 - - uid: 14503 + - uid: 4645 components: - type: Transform pos: 11.5,-81.5 parent: 2 - - uid: 14504 + - uid: 4646 components: - type: Transform pos: 12.5,-81.5 parent: 2 - - uid: 14505 + - uid: 4647 components: - type: Transform pos: 13.5,-81.5 parent: 2 - - uid: 14506 + - uid: 4648 components: - type: Transform pos: 14.5,-81.5 parent: 2 - - uid: 14507 + - uid: 4649 components: - type: Transform pos: 15.5,-81.5 parent: 2 - - uid: 14508 + - uid: 4650 components: - type: Transform pos: 15.5,-82.5 parent: 2 - - uid: 14509 + - uid: 4651 components: - type: Transform pos: 15.5,-83.5 parent: 2 - - uid: 14510 + - uid: 4652 components: - type: Transform pos: 15.5,-84.5 parent: 2 - - uid: 14511 + - uid: 4653 components: - type: Transform pos: 16.5,-84.5 parent: 2 - - uid: 14512 + - uid: 4654 components: - type: Transform pos: 17.5,-84.5 parent: 2 - - uid: 14513 + - uid: 4655 components: - type: Transform pos: 18.5,-84.5 parent: 2 - - uid: 14603 + - uid: 4656 components: - type: Transform pos: 3.5,-345.5 parent: 2 - - uid: 15133 + - uid: 4657 components: - type: Transform pos: 8.5,-117.5 parent: 2 - - uid: 15137 + - uid: 4658 components: - type: Transform pos: 8.5,-118.5 parent: 2 - - uid: 15139 + - uid: 4659 components: - type: Transform pos: 8.5,-119.5 parent: 2 - - uid: 15140 + - uid: 4660 components: - type: Transform pos: 8.5,-120.5 parent: 2 - - uid: 15141 + - uid: 4661 components: - type: Transform pos: 7.5,-120.5 parent: 2 - - uid: 15142 + - uid: 4662 components: - type: Transform pos: 6.5,-120.5 parent: 2 - - uid: 15143 + - uid: 4663 components: - type: Transform pos: 5.5,-120.5 parent: 2 - - uid: 15144 + - uid: 4664 components: - type: Transform pos: 3.5,-117.5 parent: 2 - - uid: 15145 + - uid: 4665 components: - type: Transform pos: 4.5,-117.5 parent: 2 - - uid: 15146 + - uid: 4666 components: - type: Transform pos: 5.5,-117.5 parent: 2 - - uid: 15147 + - uid: 4667 components: - type: Transform pos: 5.5,-118.5 parent: 2 - - uid: 15148 + - uid: 4668 components: - type: Transform pos: 5.5,-119.5 parent: 2 - - uid: 15298 + - uid: 4669 components: - type: Transform pos: 7.5,-339.5 parent: 2 - - uid: 16538 + - uid: 4670 components: - type: Transform pos: -13.5,-251.5 parent: 2 - - uid: 16659 + - uid: 4671 components: - type: Transform pos: -13.5,-250.5 parent: 2 - - uid: 16661 + - uid: 4672 components: - type: Transform pos: -18.5,-266.5 parent: 2 - - uid: 16662 + - uid: 4673 components: - type: Transform pos: -18.5,-265.5 parent: 2 - - uid: 16663 + - uid: 4674 components: - type: Transform pos: -18.5,-264.5 parent: 2 - - uid: 16664 + - uid: 4675 components: - type: Transform pos: -18.5,-263.5 parent: 2 - - uid: 16665 + - uid: 4676 components: - type: Transform pos: -18.5,-262.5 parent: 2 - - uid: 16666 + - uid: 4677 components: - type: Transform pos: -18.5,-261.5 parent: 2 - - uid: 16667 + - uid: 4678 components: - type: Transform pos: -18.5,-260.5 parent: 2 - - uid: 16668 + - uid: 4679 components: - type: Transform pos: -18.5,-259.5 parent: 2 - - uid: 16669 + - uid: 4680 components: - type: Transform pos: -18.5,-258.5 parent: 2 - - uid: 16670 + - uid: 4681 components: - type: Transform pos: -18.5,-257.5 parent: 2 - - uid: 16671 + - uid: 4682 components: - type: Transform pos: -18.5,-256.5 parent: 2 - - uid: 16672 + - uid: 4683 components: - type: Transform pos: -18.5,-255.5 parent: 2 - - uid: 16673 + - uid: 4684 components: - type: Transform pos: -18.5,-254.5 parent: 2 - - uid: 16674 + - uid: 4685 components: - type: Transform pos: -17.5,-254.5 parent: 2 - - uid: 16675 + - uid: 4686 components: - type: Transform pos: -16.5,-254.5 parent: 2 - - uid: 16676 + - uid: 4687 components: - type: Transform pos: -15.5,-254.5 parent: 2 - - uid: 16677 + - uid: 4688 components: - type: Transform pos: -14.5,-254.5 parent: 2 - - uid: 16688 + - uid: 4689 components: - type: Transform pos: -13.5,-253.5 parent: 2 - - uid: 16691 + - uid: 4690 components: - type: Transform pos: -13.5,-252.5 parent: 2 - proto: CableMVStack entities: - - uid: 6898 + - uid: 4691 components: - type: Transform pos: 15.528771,-245.63763 parent: 2 - - uid: 6900 + - uid: 4692 components: - type: Transform pos: 15.357085,-245.58482 parent: 2 - - uid: 11673 + - uid: 4693 components: - type: Transform pos: -2.1301281,-7.3508615 parent: 2 - - uid: 16814 + - uid: 4695 components: - type: Transform - parent: 16811 + parent: 4694 - type: Physics canCollide: False - type: InsideEntityStorage - proto: CableTerminal entities: - - uid: 713 + - uid: 4698 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-251.5 parent: 2 - - uid: 5435 + - uid: 4699 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-229.5 parent: 2 - - uid: 5436 + - uid: 4700 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-220.5 parent: 2 - - uid: 6203 + - uid: 4701 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-251.5 parent: 2 - - uid: 6205 + - uid: 4702 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-252.5 parent: 2 - - uid: 6231 + - uid: 4703 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-253.5 parent: 2 - - uid: 9468 + - uid: 4704 components: - type: Transform pos: 3.5,-345.5 parent: 2 - proto: CandleBlackInfinite entities: - - uid: 606 + - uid: 4705 components: - type: Transform pos: -2.3014371,-58.2566 parent: 2 - - uid: 631 + - uid: 4706 components: - type: Transform pos: -6.6172776,-58.79888 parent: 2 - - uid: 3029 + - uid: 4707 components: - type: Transform pos: -6.420355,-62.382744 parent: 2 - - uid: 4186 + - uid: 4708 components: - type: Transform pos: -3.5704029,-67.32645 parent: 2 - proto: CandleBlackSmallInfinite entities: - - uid: 613 + - uid: 4709 components: - type: Transform pos: -6.6172776,-59.064507 parent: 2 - - uid: 653 + - uid: 4710 components: - type: Transform pos: -6.3516526,-58.86138 parent: 2 - - uid: 661 + - uid: 4711 components: - type: Transform pos: -6.6172776,-67.4827 parent: 2 - - uid: 2254 + - uid: 4712 components: - type: Transform pos: 1.7255144,-66.4996 parent: 2 - - uid: 3022 + - uid: 4713 components: - type: Transform pos: -6.639105,-62.570244 parent: 2 - - uid: 3202 + - uid: 4714 components: - type: Transform pos: -3.7858121,-58.522224 parent: 2 - - uid: 4183 + - uid: 4715 components: - type: Transform pos: -6.3829026,-67.3577 parent: 2 - - uid: 4185 + - uid: 4716 components: - type: Transform pos: -2.320403,-67.43582 parent: 2 - proto: CandyBucket entities: - - uid: 2369 + - uid: 4717 components: - type: Transform pos: 5.735499,-30.78203 parent: 2 - proto: CannabisSeeds entities: - - uid: 1079 + - uid: 4718 components: - type: Transform pos: -7.3107276,-91.34308 parent: 2 - proto: CapacitorStockPart entities: - - uid: 12432 + - uid: 4719 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5550447,-304.56104 parent: 2 - - uid: 12434 + - uid: 4720 components: - type: Transform pos: -6.343737,-304.3674 parent: 2 - - uid: 12435 + - uid: 4721 components: - type: Transform rot: 3.141592653589793 rad @@ -31551,279 +31299,279 @@ entities: parent: 2 - proto: CaptainIDCard entities: - - uid: 316 + - uid: 4722 components: - type: Transform pos: -0.49034405,-11.254525 parent: 2 - proto: CarbonDioxideCanister entities: - - uid: 6719 + - uid: 4723 components: - type: Transform pos: -21.5,-253.5 parent: 2 - - uid: 7195 + - uid: 4724 components: - type: Transform pos: -21.5,-241.5 parent: 2 - - uid: 9993 + - uid: 4725 components: - type: Transform pos: -4.5,-312.5 parent: 2 - - uid: 11221 + - uid: 4726 components: - type: Transform pos: 4.5,-355.5 parent: 2 - proto: Carpet entities: - - uid: 1888 + - uid: 4727 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-111.5 parent: 2 - - uid: 1889 + - uid: 4728 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-112.5 parent: 2 - - uid: 1890 + - uid: 4729 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-113.5 parent: 2 - - uid: 1891 + - uid: 4730 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-114.5 parent: 2 - - uid: 1892 + - uid: 4731 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-115.5 parent: 2 - - uid: 1893 + - uid: 4732 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-116.5 parent: 2 - - uid: 1894 + - uid: 4733 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-117.5 parent: 2 - - uid: 1895 + - uid: 4734 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-118.5 parent: 2 - - uid: 1896 + - uid: 4735 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-119.5 parent: 2 - - uid: 1897 + - uid: 4736 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-120.5 parent: 2 - - uid: 1898 + - uid: 4737 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-121.5 parent: 2 - - uid: 1899 + - uid: 4738 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-122.5 parent: 2 - - uid: 1900 + - uid: 4739 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-123.5 parent: 2 - - uid: 1901 + - uid: 4740 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-124.5 parent: 2 - - uid: 1902 + - uid: 4741 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-125.5 parent: 2 - - uid: 1903 + - uid: 4742 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-111.5 parent: 2 - - uid: 1904 + - uid: 4743 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-112.5 parent: 2 - - uid: 1905 + - uid: 4744 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-113.5 parent: 2 - - uid: 1906 + - uid: 4745 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-114.5 parent: 2 - - uid: 1907 + - uid: 4746 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-115.5 parent: 2 - - uid: 1908 + - uid: 4747 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-116.5 parent: 2 - - uid: 1909 + - uid: 4748 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-117.5 parent: 2 - - uid: 1910 + - uid: 4749 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-118.5 parent: 2 - - uid: 1911 + - uid: 4750 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-119.5 parent: 2 - - uid: 1912 + - uid: 4751 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-120.5 parent: 2 - - uid: 1913 + - uid: 4752 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-121.5 parent: 2 - - uid: 1914 + - uid: 4753 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-122.5 parent: 2 - - uid: 1915 + - uid: 4754 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-123.5 parent: 2 - - uid: 1916 + - uid: 4755 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-124.5 parent: 2 - - uid: 1948 + - uid: 4756 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-110.5 parent: 2 - - uid: 1949 + - uid: 4757 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-109.5 parent: 2 - - uid: 1950 + - uid: 4758 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-109.5 parent: 2 - - uid: 1951 + - uid: 4759 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-110.5 parent: 2 - - uid: 2169 + - uid: 4760 components: - type: Transform pos: -2.5,-110.5 parent: 2 - - uid: 2209 + - uid: 4761 components: - type: Transform pos: -2.5,-109.5 parent: 2 - - uid: 2425 + - uid: 4762 components: - type: Transform pos: -3.5,-125.5 parent: 2 - - uid: 2426 + - uid: 4763 components: - type: Transform pos: 5.5,-124.5 parent: 2 - - uid: 2427 + - uid: 4764 components: - type: Transform pos: 4.5,-124.5 parent: 2 - - uid: 2428 + - uid: 4765 components: - type: Transform pos: 5.5,-123.5 parent: 2 - - uid: 2429 + - uid: 4766 components: - type: Transform pos: 5.5,-123.5 parent: 2 - - uid: 2430 + - uid: 4767 components: - type: Transform pos: 4.5,-123.5 parent: 2 - - uid: 2431 + - uid: 4768 components: - type: Transform pos: -3.5,-125.5 parent: 2 - - uid: 7550 + - uid: 4769 components: - type: Transform rot: 3.141592653589793 rad @@ -31831,339 +31579,329 @@ entities: parent: 2 - proto: CarpetBlack entities: - - uid: 161 + - uid: 4770 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-12.5 parent: 2 - - uid: 193 + - uid: 4771 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-12.5 parent: 2 - - uid: 196 + - uid: 4772 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-10.5 parent: 2 - - uid: 200 + - uid: 4773 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-11.5 parent: 2 - - uid: 211 + - uid: 4774 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-11.5 parent: 2 - - uid: 214 + - uid: 4775 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-12.5 parent: 2 - - uid: 980 + - uid: 4776 components: - type: Transform pos: -5.5,-72.5 parent: 2 - - uid: 1017 + - uid: 4777 components: - type: Transform pos: -5.5,-73.5 parent: 2 - - uid: 1555 + - uid: 4778 components: - type: Transform pos: -0.5,-71.5 parent: 2 - - uid: 1556 + - uid: 4779 components: - type: Transform pos: -0.5,-70.5 parent: 2 - - uid: 1557 + - uid: 4780 components: - type: Transform pos: 0.5,-71.5 parent: 2 - - uid: 1558 + - uid: 4781 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 1559 + - uid: 4782 components: - type: Transform pos: 1.5,-71.5 parent: 2 - - uid: 1560 + - uid: 4783 components: - type: Transform pos: 1.5,-70.5 parent: 2 - - uid: 1564 + - uid: 4784 components: - type: Transform pos: 1.5,-55.5 parent: 2 - - uid: 1565 + - uid: 4785 components: - type: Transform pos: 1.5,-54.5 parent: 2 - - uid: 1566 + - uid: 4786 components: - type: Transform pos: 0.5,-55.5 parent: 2 - - uid: 1567 + - uid: 4787 components: - type: Transform pos: 0.5,-54.5 parent: 2 - - uid: 1568 + - uid: 4788 components: - type: Transform pos: -0.5,-55.5 parent: 2 - - uid: 1569 + - uid: 4789 components: - type: Transform pos: -0.5,-54.5 parent: 2 - - uid: 2730 + - uid: 4790 components: - type: Transform pos: 4.5,-11.5 parent: 2 - - uid: 3704 + - uid: 4791 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-10.5 parent: 2 - - uid: 5839 + - uid: 4792 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 11173 + - uid: 4793 components: - type: Transform pos: -2.5,-344.5 parent: 2 - - uid: 11174 + - uid: 4794 components: - type: Transform pos: -2.5,-345.5 parent: 2 - - uid: 11175 + - uid: 4795 components: - type: Transform pos: -3.5,-344.5 parent: 2 - - uid: 11176 + - uid: 4796 components: - type: Transform pos: -3.5,-345.5 parent: 2 - - uid: 11177 - components: - - type: Transform - pos: -4.5,-344.5 - parent: 2 - - uid: 11178 - components: - - type: Transform - pos: -4.5,-345.5 - parent: 2 - - uid: 14343 + - uid: 4797 components: - type: Transform pos: 14.5,-70.5 parent: 2 - - uid: 14360 + - uid: 4798 components: - type: Transform pos: 14.5,-68.5 parent: 2 - - uid: 14362 + - uid: 4799 components: - type: Transform pos: 13.5,-70.5 parent: 2 - - uid: 14364 + - uid: 4800 components: - type: Transform pos: 13.5,-69.5 parent: 2 - - uid: 14370 + - uid: 4801 components: - type: Transform pos: 15.5,-68.5 parent: 2 - - uid: 14377 + - uid: 4802 components: - type: Transform pos: 13.5,-68.5 parent: 2 - - uid: 14383 + - uid: 4803 components: - type: Transform pos: 14.5,-69.5 parent: 2 - - uid: 14390 + - uid: 4804 components: - type: Transform pos: 15.5,-69.5 parent: 2 - - uid: 14391 + - uid: 4805 components: - type: Transform pos: 15.5,-70.5 parent: 2 - - uid: 14392 + - uid: 4806 components: - type: Transform pos: 16.5,-68.5 parent: 2 - - uid: 14393 + - uid: 4807 components: - type: Transform pos: 16.5,-69.5 parent: 2 - - uid: 14394 + - uid: 4808 components: - type: Transform pos: 16.5,-70.5 parent: 2 - - uid: 14395 + - uid: 4809 components: - type: Transform pos: 17.5,-68.5 parent: 2 - - uid: 14396 + - uid: 4810 components: - type: Transform pos: 17.5,-69.5 parent: 2 - - uid: 14397 + - uid: 4811 components: - type: Transform pos: 17.5,-70.5 parent: 2 - - uid: 14398 + - uid: 4812 components: - type: Transform pos: 13.5,-72.5 parent: 2 - - uid: 14399 + - uid: 4813 components: - type: Transform pos: 13.5,-73.5 parent: 2 - - uid: 14400 + - uid: 4814 components: - type: Transform pos: 13.5,-74.5 parent: 2 - - uid: 14401 + - uid: 4815 components: - type: Transform pos: 14.5,-72.5 parent: 2 - - uid: 14402 + - uid: 4816 components: - type: Transform pos: 14.5,-73.5 parent: 2 - - uid: 14403 + - uid: 4817 components: - type: Transform pos: 14.5,-74.5 parent: 2 - - uid: 14404 + - uid: 4818 components: - type: Transform pos: 15.5,-72.5 parent: 2 - - uid: 14405 + - uid: 4819 components: - type: Transform pos: 15.5,-73.5 parent: 2 - - uid: 14406 + - uid: 4820 components: - type: Transform pos: 15.5,-74.5 parent: 2 - - uid: 14407 + - uid: 4821 components: - type: Transform pos: 16.5,-72.5 parent: 2 - - uid: 14408 + - uid: 4822 components: - type: Transform pos: 16.5,-73.5 parent: 2 - - uid: 14409 + - uid: 4823 components: - type: Transform pos: 16.5,-74.5 parent: 2 - - uid: 14410 + - uid: 4824 components: - type: Transform pos: 17.5,-72.5 parent: 2 - - uid: 14411 + - uid: 4825 components: - type: Transform pos: 17.5,-73.5 parent: 2 - - uid: 14412 + - uid: 4826 components: - type: Transform pos: 17.5,-74.5 parent: 2 - - uid: 14790 + - uid: 4827 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-73.5 parent: 2 - - uid: 14791 + - uid: 4828 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-72.5 parent: 2 - - uid: 14792 + - uid: 4829 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-72.5 parent: 2 - - uid: 14793 + - uid: 4830 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-73.5 parent: 2 - - uid: 14794 + - uid: 4831 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-73.5 parent: 2 - - uid: 14795 + - uid: 4832 components: - type: Transform rot: 1.5707963267948966 rad @@ -32171,128 +31909,128 @@ entities: parent: 2 - proto: CarpetBlue entities: - - uid: 194 + - uid: 4833 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-11.5 parent: 2 - - uid: 285 + - uid: 4834 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-14.5 parent: 2 - - uid: 286 + - uid: 4835 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 2 - - uid: 287 + - uid: 4836 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-13.5 parent: 2 - - uid: 288 + - uid: 4837 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-13.5 parent: 2 - - uid: 290 + - uid: 4838 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-14.5 parent: 2 - - uid: 292 + - uid: 4839 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-10.5 parent: 2 - - uid: 305 + - uid: 4840 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 2 - - uid: 306 + - uid: 4841 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-11.5 parent: 2 - - uid: 307 + - uid: 4842 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 2 - - uid: 1264 + - uid: 4843 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 2 - - uid: 2260 + - uid: 4844 components: - type: Transform pos: -1.5,-117.5 parent: 2 - - uid: 2262 + - uid: 4845 components: - type: Transform pos: -1.5,-116.5 parent: 2 - - uid: 2263 + - uid: 4846 components: - type: Transform pos: -0.5,-117.5 parent: 2 - - uid: 2264 + - uid: 4847 components: - type: Transform pos: -0.5,-116.5 parent: 2 - - uid: 2265 + - uid: 4848 components: - type: Transform pos: 0.5,-117.5 parent: 2 - - uid: 2266 + - uid: 4849 components: - type: Transform pos: 0.5,-116.5 parent: 2 - - uid: 12166 + - uid: 4850 components: - type: Transform pos: -1.5,-11.5 parent: 2 - proto: CarpetOrange entities: - - uid: 9099 + - uid: 4851 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-284.5 parent: 2 - - uid: 9128 + - uid: 4852 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-285.5 parent: 2 - - uid: 9129 + - uid: 4853 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-285.5 parent: 2 - - uid: 9132 + - uid: 4854 components: - type: Transform rot: -1.5707963267948966 rad @@ -32300,2050 +32038,2017 @@ entities: parent: 2 - proto: CarpetPurple entities: - - uid: 2762 + - uid: 4855 components: - type: Transform pos: -4.5,-144.5 parent: 2 - - uid: 2763 + - uid: 4856 components: - type: Transform pos: -3.5,-144.5 parent: 2 - - uid: 2764 + - uid: 4857 components: - type: Transform pos: -3.5,-145.5 parent: 2 - - uid: 2765 + - uid: 4858 components: - type: Transform pos: -3.5,-146.5 parent: 2 - - uid: 2766 + - uid: 4859 components: - type: Transform pos: -4.5,-146.5 parent: 2 - - uid: 2767 + - uid: 4860 components: - type: Transform pos: -4.5,-147.5 parent: 2 - - uid: 2768 + - uid: 4861 components: - type: Transform pos: -4.5,-148.5 parent: 2 - - uid: 2769 + - uid: 4862 components: - type: Transform pos: -3.5,-148.5 parent: 2 - - uid: 2770 + - uid: 4863 components: - type: Transform pos: -4.5,-143.5 parent: 2 - - uid: 2771 + - uid: 4864 components: - type: Transform pos: -4.5,-142.5 parent: 2 - - uid: 2772 + - uid: 4865 components: - type: Transform pos: -3.5,-142.5 parent: 2 - - uid: 12040 + - uid: 4866 components: - type: Transform pos: -9.5,-302.5 parent: 2 - - uid: 12041 + - uid: 4867 components: - type: Transform pos: -9.5,-303.5 parent: 2 - - uid: 12042 + - uid: 4868 components: - type: Transform pos: -9.5,-304.5 parent: 2 - - uid: 12043 + - uid: 4869 components: - type: Transform pos: -8.5,-302.5 parent: 2 - - uid: 12044 + - uid: 4870 components: - type: Transform pos: -8.5,-303.5 parent: 2 - - uid: 12045 + - uid: 4871 components: - type: Transform pos: -8.5,-304.5 parent: 2 - proto: CarvedPumpkin entities: - - uid: 2651 + - uid: 4872 components: - type: Transform pos: 5.409307,-30.231054 parent: 2 - proto: Catwalk entities: - - uid: 10 + - uid: 4873 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-252.5 parent: 2 - - uid: 51 + - uid: 4874 components: - type: Transform pos: 3.5,-345.5 parent: 2 - - uid: 150 + - uid: 4875 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 369 + - uid: 4876 components: - type: Transform pos: 5.5,0.5 parent: 2 - - uid: 379 + - uid: 4877 components: - type: Transform pos: 5.5,-1.5 parent: 2 - - uid: 380 + - uid: 4878 components: - type: Transform pos: 5.5,1.5 parent: 2 - - uid: 407 + - uid: 4879 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 408 + - uid: 4880 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 410 + - uid: 4881 components: - type: Transform pos: -6.5,-16.5 parent: 2 - - uid: 411 + - uid: 4882 components: - type: Transform pos: -5.5,-13.5 parent: 2 - - uid: 412 + - uid: 4883 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 413 + - uid: 4884 components: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 414 + - uid: 4885 components: - type: Transform pos: -5.5,-7.5 parent: 2 - - uid: 415 + - uid: 4886 components: - type: Transform pos: -5.5,-2.5 parent: 2 - - uid: 416 + - uid: 4887 components: - type: Transform pos: -5.5,-1.5 parent: 2 - - uid: 417 + - uid: 4888 components: - type: Transform pos: -4.5,1.5 parent: 2 - - uid: 418 + - uid: 4889 components: - type: Transform pos: -3.5,1.5 parent: 2 - - uid: 463 + - uid: 4890 components: - type: Transform pos: -5.5,-36.5 parent: 2 - - uid: 774 + - uid: 4891 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-221.5 parent: 2 - - uid: 777 + - uid: 4892 components: - type: Transform pos: -2.5,-34.5 parent: 2 - - uid: 778 + - uid: 4893 components: - type: Transform pos: -4.5,-35.5 parent: 2 - - uid: 779 + - uid: 4894 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 780 + - uid: 4895 components: - type: Transform pos: -4.5,-38.5 parent: 2 - - uid: 781 + - uid: 4896 components: - type: Transform pos: -4.5,-39.5 parent: 2 - - uid: 782 + - uid: 4897 components: - type: Transform pos: -5.5,-43.5 parent: 2 - - uid: 783 + - uid: 4898 components: - type: Transform pos: -4.5,-43.5 parent: 2 - - uid: 784 + - uid: 4899 components: - type: Transform pos: -4.5,-41.5 parent: 2 - - uid: 799 + - uid: 4900 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 803 + - uid: 4901 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 808 + - uid: 4902 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-233.5 parent: 2 - - uid: 889 + - uid: 4903 components: - type: Transform pos: -7.5,-94.5 parent: 2 - - uid: 935 + - uid: 4904 components: - type: Transform pos: 6.5,-32.5 parent: 2 - - uid: 1091 + - uid: 4905 components: - type: Transform pos: 2.5,-35.5 parent: 2 - - uid: 1092 + - uid: 4906 components: - type: Transform pos: 3.5,-34.5 parent: 2 - - uid: 1094 + - uid: 4907 components: - type: Transform pos: 6.5,-33.5 parent: 2 - - uid: 1096 + - uid: 4908 components: - type: Transform pos: 6.5,-31.5 parent: 2 - - uid: 1097 + - uid: 4909 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 1098 + - uid: 4910 components: - type: Transform pos: 7.5,-29.5 parent: 2 - - uid: 1099 + - uid: 4911 components: - type: Transform pos: 6.5,-29.5 parent: 2 - - uid: 1100 + - uid: 4912 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - uid: 1101 + - uid: 4913 components: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 1142 + - uid: 4914 components: - type: Transform pos: 5.5,-18.5 parent: 2 - - uid: 1177 + - uid: 4915 components: - type: Transform pos: 5.5,-54.5 parent: 2 - - uid: 1248 + - uid: 4916 components: - type: Transform pos: 6.5,-34.5 parent: 2 - - uid: 1259 + - uid: 4917 components: - type: Transform pos: -6.5,-36.5 parent: 2 - - uid: 1423 + - uid: 4918 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 1437 + - uid: 4919 components: - type: Transform pos: 6.5,-58.5 parent: 2 - - uid: 1438 + - uid: 4920 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 1439 - components: - - type: Transform - pos: 5.5,-56.5 - parent: 2 - - uid: 1441 + - uid: 4921 components: - type: Transform pos: 6.5,-60.5 parent: 2 - - uid: 1442 + - uid: 4922 components: - type: Transform pos: 6.5,-61.5 parent: 2 - - uid: 1443 + - uid: 4923 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 1444 + - uid: 4924 components: - type: Transform pos: 6.5,-64.5 parent: 2 - - uid: 1445 + - uid: 4925 components: - type: Transform pos: 5.5,-71.5 parent: 2 - - uid: 1446 + - uid: 4926 components: - type: Transform pos: 6.5,-71.5 parent: 2 - - uid: 1447 + - uid: 4927 components: - type: Transform pos: 6.5,-70.5 parent: 2 - - uid: 1448 + - uid: 4928 components: - type: Transform pos: 6.5,-69.5 parent: 2 - - uid: 1449 + - uid: 4929 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 1456 + - uid: 4930 components: - type: Transform pos: 4.5,-68.5 parent: 2 - - uid: 1457 + - uid: 4931 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 1619 + - uid: 4932 components: - type: Transform pos: -8.5,-95.5 parent: 2 - - uid: 1620 + - uid: 4933 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-95.5 parent: 2 - - uid: 1621 + - uid: 4934 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-96.5 parent: 2 - - uid: 1622 + - uid: 4935 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-97.5 parent: 2 - - uid: 1623 + - uid: 4936 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-98.5 parent: 2 - - uid: 1625 + - uid: 4937 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-96.5 parent: 2 - - uid: 1755 + - uid: 4938 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-252.5 parent: 2 - - uid: 1757 + - uid: 4939 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-35.5 parent: 2 - - uid: 2020 + - uid: 4940 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-83.5 parent: 2 - - uid: 2021 + - uid: 4941 components: - type: Transform pos: 5.5,-108.5 parent: 2 - - uid: 2022 + - uid: 4942 components: - type: Transform pos: 4.5,-108.5 parent: 2 - - uid: 2023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-81.5 - parent: 2 - - uid: 2024 + - uid: 4943 components: - type: Transform pos: 3.5,-108.5 parent: 2 - - uid: 2026 + - uid: 4944 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-84.5 parent: 2 - - uid: 2432 + - uid: 4945 components: - type: Transform pos: 3.5,-111.5 parent: 2 - - uid: 2433 + - uid: 4946 components: - type: Transform pos: 3.5,-112.5 parent: 2 - - uid: 2434 + - uid: 4947 components: - type: Transform pos: 3.5,-113.5 parent: 2 - - uid: 2798 + - uid: 4948 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-135.5 parent: 2 - - uid: 2799 + - uid: 4949 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-135.5 parent: 2 - - uid: 2800 + - uid: 4950 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-135.5 parent: 2 - - uid: 2801 + - uid: 4951 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-136.5 parent: 2 - - uid: 2802 + - uid: 4952 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-136.5 parent: 2 - - uid: 2803 + - uid: 4953 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-138.5 parent: 2 - - uid: 2804 + - uid: 4954 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-139.5 parent: 2 - - uid: 2805 + - uid: 4955 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-140.5 parent: 2 - - uid: 2806 + - uid: 4956 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-143.5 parent: 2 - - uid: 2807 + - uid: 4957 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-144.5 parent: 2 - - uid: 2808 + - uid: 4958 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-145.5 parent: 2 - - uid: 2809 + - uid: 4959 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-150.5 parent: 2 - - uid: 2810 + - uid: 4960 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-151.5 parent: 2 - - uid: 2811 + - uid: 4961 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-151.5 parent: 2 - - uid: 2812 + - uid: 4962 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-151.5 parent: 2 - - uid: 3196 + - uid: 4963 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-299.5 parent: 2 - - uid: 3263 + - uid: 4964 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-217.5 parent: 2 - - uid: 3271 + - uid: 4965 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-223.5 parent: 2 - - uid: 3272 + - uid: 4966 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-222.5 parent: 2 - - uid: 3274 + - uid: 4967 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-221.5 parent: 2 - - uid: 3354 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-220.5 - parent: 2 - - uid: 3484 + - uid: 4968 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-163.5 parent: 2 - - uid: 3485 + - uid: 4969 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-163.5 parent: 2 - - uid: 3486 + - uid: 4970 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-163.5 parent: 2 - - uid: 3490 + - uid: 4971 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-169.5 parent: 2 - - uid: 3491 + - uid: 4972 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-170.5 parent: 2 - - uid: 3492 + - uid: 4973 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-171.5 parent: 2 - - uid: 3493 + - uid: 4974 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-173.5 parent: 2 - - uid: 3494 + - uid: 4975 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-174.5 parent: 2 - - uid: 3495 + - uid: 4976 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-176.5 parent: 2 - - uid: 3496 + - uid: 4977 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-177.5 parent: 2 - - uid: 3497 + - uid: 4978 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-179.5 parent: 2 - - uid: 3498 + - uid: 4979 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-179.5 parent: 2 - - uid: 3499 + - uid: 4980 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-179.5 parent: 2 - - uid: 3501 + - uid: 4981 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-180.5 parent: 2 - - uid: 3502 + - uid: 4982 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-179.5 parent: 2 - - uid: 3556 + - uid: 4983 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 3605 + - uid: 4984 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-251.5 parent: 2 - - uid: 3714 + - uid: 4985 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-162.5 parent: 2 - - uid: 3715 + - uid: 4986 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-162.5 parent: 2 - - uid: 3716 + - uid: 4987 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-162.5 parent: 2 - - uid: 4041 + - uid: 4988 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-263.5 parent: 2 - - uid: 4212 + - uid: 4989 components: - type: Transform pos: 26.5,-259.5 parent: 2 - - uid: 4244 + - uid: 4990 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-234.5 parent: 2 - - uid: 4276 + - uid: 4991 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-233.5 parent: 2 - - uid: 4284 + - uid: 4992 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-234.5 parent: 2 - - uid: 4292 + - uid: 4993 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-218.5 parent: 2 - - uid: 4293 + - uid: 4994 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-219.5 parent: 2 - - uid: 4344 + - uid: 4995 components: - type: Transform pos: -8.5,-97.5 parent: 2 - - uid: 4356 + - uid: 4996 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-220.5 parent: 2 - - uid: 4361 + - uid: 4997 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-225.5 parent: 2 - - uid: 4371 + - uid: 4998 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-226.5 parent: 2 - - uid: 4385 + - uid: 4999 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-222.5 parent: 2 - - uid: 4394 + - uid: 5000 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-223.5 parent: 2 - - uid: 4401 + - uid: 5001 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-224.5 parent: 2 - - uid: 4410 + - uid: 5002 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-224.5 parent: 2 - - uid: 4434 + - uid: 5003 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-227.5 parent: 2 - - uid: 4435 + - uid: 5004 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-227.5 parent: 2 - - uid: 4436 + - uid: 5005 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-226.5 parent: 2 - - uid: 4437 + - uid: 5006 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-225.5 parent: 2 - - uid: 4438 + - uid: 5007 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-224.5 parent: 2 - - uid: 4441 + - uid: 5008 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-219.5 parent: 2 - - uid: 4442 + - uid: 5009 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-218.5 parent: 2 - - uid: 4443 + - uid: 5010 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-217.5 parent: 2 - - uid: 4444 + - uid: 5011 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-225.5 parent: 2 - - uid: 4445 + - uid: 5012 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-226.5 parent: 2 - - uid: 4446 + - uid: 5013 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-227.5 parent: 2 - - uid: 4447 + - uid: 5014 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-228.5 parent: 2 - - uid: 4448 + - uid: 5015 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-229.5 parent: 2 - - uid: 4449 + - uid: 5016 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-230.5 parent: 2 - - uid: 4450 + - uid: 5017 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-231.5 parent: 2 - - uid: 4451 + - uid: 5018 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-232.5 parent: 2 - - uid: 4452 + - uid: 5019 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-226.5 parent: 2 - - uid: 4453 + - uid: 5020 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-226.5 parent: 2 - - uid: 4455 + - uid: 5021 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-229.5 parent: 2 - - uid: 4456 + - uid: 5022 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-229.5 parent: 2 - - uid: 4457 + - uid: 5023 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-229.5 parent: 2 - - uid: 4458 + - uid: 5024 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-228.5 parent: 2 - - uid: 4459 + - uid: 5025 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-227.5 parent: 2 - - uid: 4460 + - uid: 5026 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-226.5 parent: 2 - - uid: 4461 + - uid: 5027 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-225.5 parent: 2 - - uid: 4462 + - uid: 5028 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-224.5 parent: 2 - - uid: 4463 + - uid: 5029 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-223.5 parent: 2 - - uid: 4464 + - uid: 5030 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-222.5 parent: 2 - - uid: 4465 + - uid: 5031 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-221.5 parent: 2 - - uid: 4466 + - uid: 5032 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-220.5 parent: 2 - - uid: 4467 + - uid: 5033 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-220.5 parent: 2 - - uid: 4468 + - uid: 5034 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-220.5 parent: 2 - - uid: 4470 + - uid: 5035 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-229.5 parent: 2 - - uid: 4471 + - uid: 5036 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-229.5 parent: 2 - - uid: 4472 + - uid: 5037 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-229.5 parent: 2 - - uid: 4473 + - uid: 5038 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-229.5 parent: 2 - - uid: 4474 + - uid: 5039 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-228.5 parent: 2 - - uid: 4475 + - uid: 5040 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-227.5 parent: 2 - - uid: 4476 + - uid: 5041 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-226.5 parent: 2 - - uid: 4477 + - uid: 5042 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-225.5 parent: 2 - - uid: 4478 + - uid: 5043 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-224.5 parent: 2 - - uid: 4479 + - uid: 5044 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-223.5 parent: 2 - - uid: 4480 + - uid: 5045 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-222.5 parent: 2 - - uid: 4481 + - uid: 5046 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-221.5 parent: 2 - - uid: 4482 + - uid: 5047 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-220.5 parent: 2 - - uid: 4483 + - uid: 5048 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-220.5 parent: 2 - - uid: 4484 + - uid: 5049 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-220.5 parent: 2 - - uid: 4485 + - uid: 5050 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-220.5 parent: 2 - - uid: 4486 + - uid: 5051 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-221.5 parent: 2 - - uid: 4487 + - uid: 5052 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-222.5 parent: 2 - - uid: 4488 + - uid: 5053 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-223.5 parent: 2 - - uid: 4489 + - uid: 5054 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-224.5 parent: 2 - - uid: 4490 + - uid: 5055 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-225.5 parent: 2 - - uid: 4491 + - uid: 5056 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-226.5 parent: 2 - - uid: 4492 + - uid: 5057 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-227.5 parent: 2 - - uid: 4493 + - uid: 5058 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-228.5 parent: 2 - - uid: 4495 + - uid: 5059 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-230.5 parent: 2 - - uid: 4496 + - uid: 5060 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-231.5 parent: 2 - - uid: 4497 + - uid: 5061 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-232.5 parent: 2 - - uid: 4498 + - uid: 5062 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-219.5 parent: 2 - - uid: 4499 + - uid: 5063 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-218.5 parent: 2 - - uid: 4500 + - uid: 5064 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-217.5 parent: 2 - - uid: 4501 + - uid: 5065 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-223.5 parent: 2 - - uid: 4502 + - uid: 5066 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-223.5 parent: 2 - - uid: 4503 + - uid: 5067 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-226.5 parent: 2 - - uid: 4504 + - uid: 5068 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-226.5 parent: 2 - - uid: 4521 + - uid: 5069 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-225.5 parent: 2 - - uid: 4522 + - uid: 5070 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-226.5 parent: 2 - - uid: 4523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-227.5 - parent: 2 - - uid: 4524 + - uid: 5071 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-230.5 parent: 2 - - uid: 4525 + - uid: 5072 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-231.5 parent: 2 - - uid: 4865 + - uid: 5073 components: - type: Transform pos: 28.5,-258.5 parent: 2 - - uid: 5021 + - uid: 5074 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-253.5 parent: 2 - - uid: 6573 + - uid: 5075 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-253.5 parent: 2 - - uid: 6636 + - uid: 5076 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-287.5 parent: 2 - - uid: 6657 + - uid: 5077 components: - type: Transform pos: 27.5,-258.5 parent: 2 - - uid: 6686 + - uid: 5078 components: - type: Transform pos: 24.5,-257.5 parent: 2 - - uid: 6688 + - uid: 5079 components: - type: Transform pos: 30.5,-260.5 parent: 2 - - uid: 6690 + - uid: 5080 components: - type: Transform pos: 31.5,-255.5 parent: 2 - - uid: 6691 + - uid: 5081 components: - type: Transform pos: 23.5,-256.5 parent: 2 - - uid: 6692 + - uid: 5082 components: - type: Transform pos: 24.5,-255.5 parent: 2 - - uid: 6697 + - uid: 5083 components: - type: Transform pos: 23.5,-262.5 parent: 2 - - uid: 6699 + - uid: 5084 components: - type: Transform pos: 23.5,-263.5 parent: 2 - - uid: 6720 + - uid: 5085 components: - type: Transform pos: 28.5,-259.5 parent: 2 - - uid: 6721 + - uid: 5086 components: - type: Transform pos: 28.5,-260.5 parent: 2 - - uid: 6723 + - uid: 5087 components: - type: Transform pos: 26.5,-257.5 parent: 2 - - uid: 6725 + - uid: 5088 components: - type: Transform pos: 28.5,-257.5 parent: 2 - - uid: 6731 + - uid: 5089 components: - type: Transform pos: 26.5,-262.5 parent: 2 - - uid: 6751 + - uid: 5090 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-250.5 parent: 2 - - uid: 6752 + - uid: 5091 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-252.5 parent: 2 - - uid: 6753 + - uid: 5092 components: - type: Transform pos: 26.5,-260.5 parent: 2 - - uid: 6760 + - uid: 5093 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-251.5 parent: 2 - - uid: 6765 + - uid: 5094 components: - type: Transform pos: 3.5,-117.5 parent: 2 - - uid: 6775 + - uid: 5095 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-254.5 parent: 2 - - uid: 6783 + - uid: 5096 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-251.5 parent: 2 - - uid: 6785 + - uid: 5097 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-251.5 parent: 2 - - uid: 6786 + - uid: 5098 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-253.5 parent: 2 - - uid: 6834 + - uid: 5099 components: - type: Transform pos: 26.5,-256.5 parent: 2 - - uid: 6863 + - uid: 5100 components: - type: Transform pos: 30.5,-256.5 parent: 2 - - uid: 6865 + - uid: 5101 components: - type: Transform pos: 24.5,-256.5 parent: 2 - - uid: 6866 + - uid: 5102 components: - type: Transform pos: 24.5,-262.5 parent: 2 - - uid: 6867 + - uid: 5103 components: - type: Transform pos: 24.5,-263.5 parent: 2 - - uid: 6868 + - uid: 5104 components: - type: Transform pos: 23.5,-255.5 parent: 2 - - uid: 7532 + - uid: 5105 components: - type: Transform pos: 28.5,-262.5 parent: 2 - - uid: 7538 + - uid: 5106 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-251.5 parent: 2 - - uid: 7569 + - uid: 5107 components: - type: Transform pos: 28.5,-256.5 parent: 2 - - uid: 7780 + - uid: 5108 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-265.5 parent: 2 - - uid: 7790 + - uid: 5109 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-252.5 parent: 2 - - uid: 7893 + - uid: 5110 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-252.5 parent: 2 - - uid: 8017 + - uid: 5111 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-253.5 parent: 2 - - uid: 8048 + - uid: 5112 components: - type: Transform pos: 27.5,-260.5 parent: 2 - - uid: 8049 + - uid: 5113 components: - type: Transform pos: 30.5,-258.5 parent: 2 - - uid: 8051 + - uid: 5114 components: - type: Transform pos: 28.5,-261.5 parent: 2 - - uid: 8092 + - uid: 5115 components: - type: Transform pos: 30.5,-257.5 parent: 2 - - uid: 8093 + - uid: 5116 components: - type: Transform pos: 30.5,-259.5 parent: 2 - - uid: 8094 + - uid: 5117 components: - type: Transform pos: 26.5,-261.5 parent: 2 - - uid: 8191 + - uid: 5118 components: - type: Transform pos: 30.5,-255.5 parent: 2 - - uid: 8192 + - uid: 5119 components: - type: Transform pos: 24.5,-260.5 parent: 2 - - uid: 8208 + - uid: 5120 components: - type: Transform pos: 31.5,-256.5 parent: 2 - - uid: 8211 + - uid: 5121 components: - type: Transform pos: 24.5,-261.5 parent: 2 - - uid: 8473 + - uid: 5122 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-264.5 parent: 2 - - uid: 8496 + - uid: 5123 components: - type: Transform pos: 3.5,-116.5 parent: 2 - - uid: 8527 + - uid: 5124 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-288.5 parent: 2 - - uid: 8662 + - uid: 5125 components: - type: Transform pos: 26.5,-258.5 parent: 2 - - uid: 8694 + - uid: 5126 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-286.5 parent: 2 - - uid: 8798 + - uid: 5127 components: - type: Transform pos: 24.5,-258.5 parent: 2 - - uid: 9029 + - uid: 5128 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-287.5 parent: 2 - - uid: 9033 + - uid: 5129 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-287.5 parent: 2 - - uid: 9034 + - uid: 5130 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-287.5 parent: 2 - - uid: 9036 + - uid: 5131 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-287.5 parent: 2 - - uid: 9045 + - uid: 5132 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-286.5 parent: 2 - - uid: 9047 + - uid: 5133 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-285.5 parent: 2 - - uid: 9543 + - uid: 5134 components: - type: Transform pos: 7.5,-17.5 parent: 2 - - uid: 9791 + - uid: 5135 components: - type: Transform pos: 7.5,-16.5 parent: 2 - - uid: 9857 + - uid: 5136 components: - type: Transform pos: 24.5,-259.5 parent: 2 - - uid: 10025 + - uid: 5137 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-314.5 parent: 2 - - uid: 10542 + - uid: 5138 components: - type: Transform pos: -2.5,-297.5 parent: 2 - - uid: 10544 + - uid: 5139 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10545 + - uid: 5140 components: - type: Transform pos: -4.5,-297.5 parent: 2 - - uid: 10546 + - uid: 5141 components: - type: Transform pos: 3.5,-297.5 parent: 2 - - uid: 10547 + - uid: 5142 components: - type: Transform pos: 4.5,-297.5 parent: 2 - - uid: 10548 + - uid: 5143 components: - type: Transform pos: 5.5,-297.5 parent: 2 - - uid: 10549 + - uid: 5144 components: - type: Transform pos: 5.5,-296.5 parent: 2 - - uid: 10550 + - uid: 5145 components: - type: Transform pos: 8.5,-297.5 parent: 2 - - uid: 10551 + - uid: 5146 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 10552 + - uid: 5147 components: - type: Transform pos: 9.5,-298.5 parent: 2 - - uid: 10554 + - uid: 5148 components: - type: Transform pos: 9.5,-301.5 parent: 2 - - uid: 10555 + - uid: 5149 components: - type: Transform pos: 9.5,-302.5 parent: 2 - - uid: 10556 + - uid: 5150 components: - type: Transform pos: 9.5,-303.5 parent: 2 - - uid: 10557 + - uid: 5151 components: - type: Transform pos: 9.5,-310.5 parent: 2 - - uid: 10558 + - uid: 5152 components: - type: Transform pos: 9.5,-311.5 parent: 2 - - uid: 10559 + - uid: 5153 components: - type: Transform pos: 9.5,-312.5 parent: 2 - - uid: 10560 + - uid: 5154 components: - type: Transform pos: 10.5,-314.5 parent: 2 - - uid: 10561 + - uid: 5155 components: - type: Transform pos: 10.5,-315.5 parent: 2 - - uid: 10562 + - uid: 5156 components: - type: Transform pos: 10.5,-318.5 parent: 2 - - uid: 10563 + - uid: 5157 components: - type: Transform pos: 9.5,-318.5 parent: 2 - - uid: 10564 + - uid: 5158 components: - type: Transform pos: 8.5,-318.5 parent: 2 - - uid: 10565 + - uid: 5159 components: - type: Transform pos: 5.5,-319.5 parent: 2 - - uid: 10566 + - uid: 5160 components: - type: Transform pos: 4.5,-319.5 parent: 2 - - uid: 10567 + - uid: 5161 components: - type: Transform pos: 3.5,-319.5 parent: 2 - - uid: 10644 + - uid: 5162 components: - type: Transform pos: 6.5,-18.5 parent: 2 - - uid: 10655 + - uid: 5163 components: - type: Transform pos: 7.5,-18.5 parent: 2 - - uid: 10683 + - uid: 5164 components: - type: Transform pos: 5.5,-345.5 parent: 2 - - uid: 12649 + - uid: 5165 components: - type: Transform pos: 4.5,-117.5 parent: 2 - - uid: 12900 + - uid: 5166 components: - type: Transform pos: 7.5,-361.5 parent: 2 - - uid: 12901 + - uid: 5167 components: - type: Transform pos: 7.5,-360.5 parent: 2 - - uid: 12902 + - uid: 5168 components: - type: Transform pos: 6.5,-360.5 parent: 2 - - uid: 13303 + - uid: 5169 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-300.5 parent: 2 - - uid: 13393 + - uid: 5170 components: - type: Transform pos: 3.5,-346.5 parent: 2 - - uid: 13404 + - uid: 5171 components: - type: Transform pos: 4.5,-345.5 parent: 2 - - uid: 14022 + - uid: 5172 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-253.5 parent: 2 - - uid: 14571 + - uid: 5173 components: - type: Transform pos: -2.5,-243.5 parent: 2 - - uid: 14572 + - uid: 5174 components: - type: Transform pos: -4.5,-243.5 parent: 2 - - uid: 14573 + - uid: 5175 components: - type: Transform pos: -3.5,-243.5 parent: 2 - - uid: 14582 + - uid: 5176 components: - type: Transform pos: -6.5,-252.5 parent: 2 - - uid: 14583 + - uid: 5177 components: - type: Transform pos: -6.5,-254.5 parent: 2 - - uid: 14584 + - uid: 5178 components: - type: Transform pos: -6.5,-255.5 parent: 2 - - uid: 14585 + - uid: 5179 components: - type: Transform pos: -6.5,-256.5 parent: 2 - - uid: 14586 + - uid: 5180 components: - type: Transform pos: -5.5,-258.5 parent: 2 - - uid: 14587 + - uid: 5181 components: - type: Transform pos: -4.5,-258.5 parent: 2 - - uid: 14588 + - uid: 5182 components: - type: Transform pos: -4.5,-259.5 parent: 2 - - uid: 14589 - components: - - type: Transform - pos: -3.5,-260.5 - parent: 2 - - uid: 14590 - components: - - type: Transform - pos: -4.5,-260.5 - parent: 2 - - uid: 14591 + - uid: 5183 components: - type: Transform pos: -4.5,-261.5 parent: 2 - - uid: 14592 + - uid: 5184 components: - type: Transform pos: 3.5,-260.5 parent: 2 - - uid: 14593 + - uid: 5185 components: - type: Transform pos: 4.5,-260.5 parent: 2 - - uid: 14594 + - uid: 5186 components: - type: Transform pos: 5.5,-260.5 parent: 2 - - uid: 14595 + - uid: 5187 components: - type: Transform pos: 7.5,-260.5 parent: 2 - - uid: 15721 + - uid: 5188 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-222.5 parent: 2 - - uid: 15722 + - uid: 5189 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-222.5 parent: 2 - - uid: 15723 + - uid: 5190 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-221.5 parent: 2 - - uid: 15724 + - uid: 5191 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-219.5 parent: 2 - - uid: 15725 + - uid: 5192 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-220.5 parent: 2 - - uid: 15798 + - uid: 5193 components: - type: Transform pos: 5.5,-346.5 parent: 2 - - uid: 16870 + - uid: 5194 components: - type: Transform pos: -7.5,-251.5 parent: 2 - - uid: 16872 + - uid: 5195 components: - type: Transform pos: -4.5,-246.5 parent: 2 - - uid: 16874 + - uid: 5196 components: - type: Transform pos: -4.5,-245.5 parent: 2 - - uid: 16875 + - uid: 5197 components: - type: Transform pos: -4.5,-245.5 parent: 2 - - uid: 16877 + - uid: 5198 components: - type: Transform pos: -4.5,-250.5 parent: 2 - - uid: 16878 + - uid: 5199 components: - type: Transform pos: -5.5,-250.5 parent: 2 - - uid: 16939 + - uid: 5200 components: - type: Transform pos: -6.5,-166.5 parent: 2 - - uid: 16942 + - uid: 5201 components: - type: Transform pos: -6.5,-165.5 parent: 2 - - uid: 16943 + - uid: 5202 components: - type: Transform pos: -6.5,-164.5 parent: 2 - proto: Chair entities: - - uid: 3705 + - uid: 5203 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-124.5 parent: 2 - - uid: 3722 + - uid: 5204 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-201.5 parent: 2 - - uid: 3767 + - uid: 5205 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-200.5 parent: 2 - - uid: 4358 + - uid: 5206 components: - type: Transform pos: -4.5,-356.5 parent: 2 - - uid: 4756 + - uid: 5207 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-252.5 parent: 2 - - uid: 4952 + - uid: 5208 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-253.5 parent: 2 - - uid: 4965 + - uid: 5209 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-252.5 parent: 2 - - uid: 7741 + - uid: 5210 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-198.5 parent: 2 - - uid: 7743 + - uid: 5211 components: - type: Transform pos: 7.5,-195.5 parent: 2 - - uid: 8440 + - uid: 5212 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-253.5 parent: 2 - - uid: 10770 + - uid: 5213 components: - type: Transform pos: -0.5,-344.5 parent: 2 - - uid: 10797 + - uid: 5214 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-346.5 parent: 2 - - uid: 12128 + - uid: 5215 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-253.5 parent: 2 - - uid: 12159 + - uid: 5216 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 - - uid: 14630 + - uid: 5217 components: - type: Transform pos: -7.5,-254.5 parent: 2 - - uid: 14631 + - uid: 5218 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-257.5 parent: 2 - - uid: 14738 + - uid: 5219 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-307.5 parent: 2 - - uid: 14920 + - uid: 5220 components: - type: Transform rot: -1.5707963267948966 rad @@ -34351,7 +34056,7 @@ entities: parent: 2 - proto: ChairCursed entities: - - uid: 2585 + - uid: 5221 components: - type: Transform rot: -1.5707963267948966 rad @@ -34359,77 +34064,77 @@ entities: parent: 2 - proto: ChairFolding entities: - - uid: 424 + - uid: 5222 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.627699,-1.5039027 parent: 2 - - uid: 1400 + - uid: 5223 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-247.5 parent: 2 - - uid: 1484 + - uid: 5224 components: - type: Transform pos: 7.5,-55.5 parent: 2 - - uid: 1485 + - uid: 5225 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-57.5 parent: 2 - - uid: 11711 + - uid: 5226 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-262.5 parent: 2 - - uid: 16495 + - uid: 5227 components: - type: Transform pos: -13.5,-244.5 parent: 2 - proto: ChairFoldingSpawnFolded entities: - - uid: 2728 + - uid: 5228 components: - type: Transform pos: -3.0071216,-135.52832 parent: 2 - proto: ChairGreyscale entities: - - uid: 1839 + - uid: 5229 components: - type: Transform pos: 6.5,-93.5 parent: 2 - - uid: 1842 + - uid: 5230 components: - type: Transform pos: 4.5,-98.5 parent: 2 - - uid: 1843 + - uid: 5231 components: - type: Transform pos: 3.5,-98.5 parent: 2 - - uid: 1845 + - uid: 5232 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-96.5 parent: 2 - - uid: 1851 + - uid: 5233 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-94.5 parent: 2 - - uid: 1852 + - uid: 5234 components: - type: Transform rot: 1.5707963267948966 rad @@ -34437,65 +34142,65 @@ entities: parent: 2 - proto: ChairOfficeDark entities: - - uid: 3121 + - uid: 5235 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-168.5 parent: 2 - - uid: 3122 + - uid: 5236 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-166.5 parent: 2 - - uid: 4785 + - uid: 5237 components: - type: Transform pos: 2.5,-251.5 parent: 2 - - uid: 7378 + - uid: 5238 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-365.5 parent: 2 - - uid: 9057 + - uid: 5239 components: - type: Transform pos: 3.5,-272.5 parent: 2 - - uid: 11058 + - uid: 5240 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-329.5 parent: 2 - - uid: 11093 + - uid: 5241 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-331.5 parent: 2 - - uid: 11449 + - uid: 5242 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-345.5 parent: 2 - - uid: 11974 + - uid: 5243 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-371.5 parent: 2 - - uid: 11975 + - uid: 5244 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-371.5 parent: 2 - - uid: 14789 + - uid: 5245 components: - type: Transform rot: 1.5707963267948966 rad @@ -34503,47 +34208,47 @@ entities: parent: 2 - proto: ChairOfficeLight entities: - - uid: 7451 + - uid: 5246 components: - type: Transform pos: -3.5,-165.5 parent: 2 - - uid: 8907 + - uid: 5247 components: - type: Transform pos: 0.5,-202.5 parent: 2 - - uid: 8908 + - uid: 5248 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-202.5 parent: 2 - - uid: 9984 + - uid: 5249 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-313.5 parent: 2 - - uid: 10112 + - uid: 5250 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-302.5 parent: 2 - - uid: 10114 + - uid: 5251 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-301.5 parent: 2 - - uid: 12046 + - uid: 5252 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-303.5 parent: 2 - - uid: 12051 + - uid: 5253 components: - type: Transform rot: 3.141592653589793 rad @@ -34551,7 +34256,7 @@ entities: parent: 2 - proto: ChairPilotSeat entities: - - uid: 25 + - uid: 5254 components: - type: Transform rot: 3.141592653589793 rad @@ -34559,13 +34264,13 @@ entities: parent: 2 - proto: ChairWeb entities: - - uid: 14337 + - uid: 5255 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-60.5 parent: 2 - - uid: 14340 + - uid: 5256 components: - type: Transform rot: 3.141592653589793 rad @@ -34573,115 +34278,115 @@ entities: parent: 2 - proto: ChairWood entities: - - uid: 384 + - uid: 5257 components: - type: Transform rot: 3.141592653589793 rad pos: -3.2935836,0.4495414 parent: 2 - - uid: 1015 + - uid: 5258 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-58.5 parent: 2 - - uid: 1315 + - uid: 5259 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-59.5 parent: 2 - - uid: 1347 + - uid: 5260 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-67.5 parent: 2 - - uid: 1348 + - uid: 5261 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-66.5 parent: 2 - - uid: 1349 + - uid: 5262 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-66.5 parent: 2 - - uid: 1350 + - uid: 5263 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-67.5 parent: 2 - - uid: 1351 + - uid: 5264 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-59.5 parent: 2 - - uid: 1352 + - uid: 5265 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-58.5 parent: 2 - - uid: 1353 + - uid: 5266 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-58.5 parent: 2 - - uid: 2586 + - uid: 5267 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-146.5 parent: 2 - - uid: 2587 + - uid: 5268 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-144.5 parent: 2 - - uid: 2588 + - uid: 5269 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-146.5 parent: 2 - - uid: 2589 + - uid: 5270 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-145.5 parent: 2 - - uid: 2590 + - uid: 5271 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-144.5 parent: 2 - - uid: 2695 + - uid: 5272 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-140.5 parent: 2 - - uid: 3151 + - uid: 5273 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-67.5 parent: 2 - - uid: 3201 + - uid: 5274 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-67.5 parent: 2 - - uid: 3604 + - uid: 5275 components: - type: Transform rot: 1.5707963267948966 rad @@ -34689,50 +34394,50 @@ entities: parent: 2 - proto: CheapRollerBedSpawnFolded entities: - - uid: 2376 + - uid: 5276 components: - type: Transform pos: 4.2730184,-180.14731 parent: 2 - - uid: 5422 + - uid: 5277 components: - type: Transform pos: 4.5698934,-180.42856 parent: 2 - proto: ChemDispenser entities: - - uid: 3112 + - uid: 5278 components: - type: Transform pos: 7.5,-169.5 parent: 2 - - uid: 3113 + - uid: 5279 components: - type: Transform pos: 3.5,-165.5 parent: 2 - proto: ChemistryHotplate entities: - - uid: 3137 + - uid: 5280 components: - type: Transform pos: 4.5,-167.5 parent: 2 - proto: ChemMaster entities: - - uid: 3116 + - uid: 5281 components: - type: Transform pos: 5.5,-165.5 parent: 2 - - uid: 3117 + - uid: 5282 components: - type: Transform pos: 7.5,-167.5 parent: 2 - proto: ChessBoard entities: - - uid: 12938 + - uid: 5283 components: - type: Transform rot: 3.141592653589793 rad @@ -34740,30 +34445,30 @@ entities: parent: 2 - proto: Cigar entities: - - uid: 219 + - uid: 5284 components: - type: Transform pos: 3.6992347,-7.328869 parent: 2 - - uid: 404 + - uid: 5285 components: - type: Transform pos: 3.82151,-7.050895 parent: 2 - proto: CigarGoldCase entities: - - uid: 99 + - uid: 5286 components: - type: Transform pos: -2.8886578,-1.2991699 parent: 2 - - uid: 2729 + - uid: 5287 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5303056,-136.50012 parent: 2 - - uid: 14388 + - uid: 5288 components: - type: Transform rot: 1.5707963267948966 rad @@ -34771,199 +34476,199 @@ entities: parent: 2 - proto: CigCartonMixed entities: - - uid: 1833 + - uid: 5289 components: - type: Transform pos: -7.317818,-81.58406 parent: 2 - - uid: 16940 + - uid: 5290 components: - type: Transform pos: -11.700207,-168.61453 parent: 2 - - uid: 16941 + - uid: 5291 components: - type: Transform pos: -11.512707,-168.23953 parent: 2 - proto: CircuitImprinter entities: - - uid: 9829 + - uid: 5292 components: - type: Transform pos: -6.5,-299.5 parent: 2 - proto: CleanerDispenser entities: - - uid: 1735 + - uid: 5293 components: - type: Transform pos: -3.5,-52.5 parent: 2 - proto: ClosetBombFilled entities: - - uid: 11991 + - uid: 5294 components: - type: Transform pos: -8.5,-317.5 parent: 2 - proto: ClosetChefFilled entities: - - uid: 1782 + - uid: 5295 components: - type: Transform pos: -1.5,-88.5 parent: 2 - proto: ClosetEmergencyFilledRandom entities: - - uid: 1052 + - uid: 5296 components: - type: Transform pos: 6.5,-34.5 parent: 2 - - uid: 1472 + - uid: 5297 components: - type: Transform pos: -5.5,-81.5 parent: 2 - - uid: 2247 + - uid: 5298 components: - type: Transform pos: -2.5,-107.5 parent: 2 - - uid: 10543 + - uid: 5299 components: - type: Transform pos: 3.5,-318.5 parent: 2 - - uid: 14641 + - uid: 5300 components: - type: Transform pos: 3.5,-259.5 parent: 2 - - uid: 16899 + - uid: 5301 components: - type: Transform pos: -5.5,-246.5 parent: 2 - proto: ClosetFireFilled entities: - - uid: 9895 + - uid: 5302 components: - type: Transform pos: 10.5,-297.5 parent: 2 - - uid: 16895 + - uid: 5303 components: - type: Transform pos: -7.5,-251.5 parent: 2 - proto: ClosetJanitorFilled entities: - - uid: 1706 + - uid: 5304 components: - type: Transform pos: -5.5,-53.5 parent: 2 - proto: ClosetL3JanitorFilled entities: - - uid: 9460 + - uid: 5305 components: - type: Transform pos: -5.5,-55.5 parent: 2 - proto: ClosetL3ScienceFilled entities: - - uid: 12126 + - uid: 5306 components: - type: Transform pos: -8.5,-318.5 parent: 2 - proto: ClosetL3VirologyFilled entities: - - uid: 3900 + - uid: 5307 components: - type: Transform pos: -2.5,-194.5 parent: 2 - - uid: 3901 + - uid: 5308 components: - type: Transform pos: -2.5,-195.5 parent: 2 - proto: ClosetMaintenanceFilledRandom entities: - - uid: 1070 + - uid: 5309 components: - type: Transform pos: 6.5,-71.5 parent: 2 - - uid: 1073 + - uid: 5310 components: - type: Transform pos: 4.5,-69.5 parent: 2 - - uid: 1117 + - uid: 5311 components: - type: Transform pos: 5.5,-32.5 parent: 2 - - uid: 1628 + - uid: 5312 components: - type: Transform pos: -5.5,-37.5 parent: 2 - - uid: 1629 + - uid: 5313 components: - type: Transform pos: -2.5,-35.5 parent: 2 - - uid: 1630 + - uid: 5314 components: - type: Transform pos: 7.5,-69.5 parent: 2 - - uid: 1858 + - uid: 5315 components: - type: Transform pos: -5.5,-98.5 parent: 2 - - uid: 1859 + - uid: 5316 components: - type: Transform pos: -2.5,-95.5 parent: 2 - - uid: 2281 + - uid: 5317 components: - type: Transform pos: 2.5,-114.5 parent: 2 - - uid: 2698 + - uid: 5318 components: - type: Transform pos: 3.5,-153.5 parent: 2 - - uid: 2818 + - uid: 5319 components: - type: Transform pos: 3.5,-134.5 parent: 2 - - uid: 3582 + - uid: 5320 components: - type: Transform pos: -7.5,-176.5 parent: 2 - - uid: 4176 + - uid: 5321 components: - type: Transform pos: -7.5,-171.5 parent: 2 - - uid: 4579 + - uid: 5322 components: - type: Transform pos: -3.5,-180.5 parent: 2 - - uid: 7334 + - uid: 5323 components: - type: Transform pos: 17.5,-149.5 @@ -34992,106 +34697,113 @@ entities: showEnts: False occludes: True ents: - - 3621 + - 5324 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 7335 + - uid: 5325 components: - type: Transform pos: 17.5,-142.5 parent: 2 - - uid: 9052 + - uid: 5326 components: - type: Transform pos: 4.5,-288.5 parent: 2 - - uid: 9409 + - uid: 5327 components: - type: Transform pos: 3.5,-288.5 parent: 2 - - uid: 10533 + - uid: 5328 components: - type: Transform pos: 6.5,-296.5 parent: 2 - - uid: 10534 + - uid: 5329 components: - type: Transform pos: 3.5,-296.5 parent: 2 - - uid: 10535 + - uid: 5330 components: - type: Transform pos: -2.5,-296.5 parent: 2 - - uid: 10537 + - uid: 5331 components: - type: Transform pos: 10.5,-299.5 parent: 2 - - uid: 10539 + - uid: 5332 components: - type: Transform pos: 9.5,-313.5 parent: 2 - - uid: 10540 + - uid: 5333 components: - type: Transform pos: 6.5,-319.5 parent: 2 - - uid: 10541 + - uid: 5334 components: - type: Transform pos: 3.5,-320.5 parent: 2 - - uid: 14596 + - uid: 5335 components: - type: Transform pos: -4.5,-257.5 parent: 2 - - uid: 14597 + - uid: 5336 components: - type: Transform pos: -7.5,-253.5 parent: 2 - - uid: 14598 + - uid: 5337 components: - type: Transform pos: 8.5,-259.5 parent: 2 - - uid: 14642 + - uid: 5338 components: - type: Transform pos: 4.5,-259.5 parent: 2 - - uid: 16871 + - uid: 5339 components: - type: Transform pos: -7.5,-250.5 parent: 2 - proto: ClosetRadiationSuitFilled entities: - - uid: 2383 + - uid: 5340 components: - type: Transform pos: 7.5,-247.5 parent: 2 - - uid: 4893 + - uid: 5341 components: - type: Transform pos: 6.5,-247.5 parent: 2 - - uid: 10090 + - uid: 5342 components: - type: Transform pos: -8.5,-319.5 parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 13571 + components: + - type: Transform + pos: -1.2892275,-170.52505 + parent: 2 - proto: ClosetWall entities: - - uid: 14476 + - uid: 624 components: - type: Transform pos: 17.5,-59.5 @@ -35102,23 +34814,23 @@ entities: showEnts: False occludes: True ents: - - 14479 - - 14478 - - 14477 - - 14480 + - 626 + - 627 + - 625 + - 628 - proto: ClosetWallAtmospherics entities: - - uid: 14755 + - uid: 862 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-266.5 + pos: -20.5,-266.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 75.31249 + temperature: 93.465614 moles: - 0 - 0 @@ -35138,29 +34850,50 @@ entities: showEnts: False occludes: True ents: - - 14762 - - 14770 - - 14766 - - uid: 16798 + - 865 + - 868 + - 864 + - 863 + - 867 + - 866 + - uid: 932 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-266.5 + pos: -17.5,-266.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 16799 - - 16800 - - 16801 - - uid: 16811 + - 933 + - 934 + - 935 + - uid: 3958 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-266.5 + pos: -15.5,-266.5 parent: 2 - type: ContainerContainer containers: @@ -35168,66 +34901,45 @@ entities: showEnts: False occludes: True ents: - - 16813 - - 16814 - - 16812 - - uid: 17056 + - 3960 + - 3961 + - 3959 + - uid: 4694 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-266.5 + pos: -16.5,-266.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 93.465614 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 17062 - - 17061 - - 17060 - - 17059 - - 17058 - - 17057 + - 4696 + - 4695 + - 4697 - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 370 + - uid: 5343 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-2.5 parent: 2 - - uid: 383 + - uid: 5344 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 2 - - uid: 684 + - uid: 5345 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-17.5 parent: 2 - - uid: 776 + - uid: 5346 components: - type: Transform rot: -1.5707963267948966 rad @@ -35251,79 +34963,79 @@ entities: - 0 - 0 - 0 - - uid: 815 + - uid: 5347 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-45.5 parent: 2 - - uid: 834 + - uid: 5348 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-107.5 parent: 2 - - uid: 895 + - uid: 5349 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-33.5 parent: 2 - - uid: 2899 + - uid: 5350 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-138.5 parent: 2 - - uid: 4057 + - uid: 5351 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-52.5 parent: 2 - - uid: 4058 + - uid: 5352 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-79.5 parent: 2 - - uid: 4059 + - uid: 5353 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-73.5 parent: 2 - - uid: 4060 + - uid: 5354 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-100.5 parent: 2 - - uid: 4061 + - uid: 5355 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-106.5 parent: 2 - - uid: 4062 + - uid: 5356 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-127.5 parent: 2 - - uid: 4063 + - uid: 5357 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-133.5 parent: 2 - - uid: 4064 + - uid: 5358 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-154.5 parent: 2 - - uid: 4065 + - uid: 5359 components: - type: Transform rot: 1.5707963267948966 rad @@ -35347,31 +35059,31 @@ entities: - 0 - 0 - 0 - - uid: 4066 + - uid: 5360 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-181.5 parent: 2 - - uid: 4067 + - uid: 5361 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-187.5 parent: 2 - - uid: 4094 + - uid: 5362 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-35.5 parent: 2 - - uid: 4137 + - uid: 5363 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 - - uid: 4191 + - uid: 5364 components: - type: Transform rot: -1.5707963267948966 rad @@ -35395,78 +35107,78 @@ entities: - 0 - 0 - 0 - - uid: 4221 + - uid: 5365 components: - type: Transform pos: -6.5,-106.5 parent: 2 - - uid: 4577 + - uid: 5366 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-235.5 parent: 2 - - uid: 4650 + - uid: 5367 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-208.5 parent: 2 - - uid: 4652 + - uid: 5368 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-214.5 parent: 2 - - uid: 4656 + - uid: 5369 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-241.5 parent: 2 - - uid: 7489 + - uid: 5370 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-262.5 parent: 2 - - uid: 8889 + - uid: 5371 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-268.5 parent: 2 - - uid: 9377 + - uid: 5372 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-289.5 parent: 2 - - uid: 9378 + - uid: 5373 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-295.5 parent: 2 - - uid: 10568 + - uid: 5374 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-321.5 parent: 2 - - uid: 11140 + - uid: 5375 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-327.5 parent: 2 - - uid: 11145 + - uid: 5376 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-348.5 parent: 2 - - uid: 11146 + - uid: 5377 components: - type: Transform rot: 1.5707963267948966 rad @@ -35474,31 +35186,31 @@ entities: parent: 2 - proto: ClosetWallFireFilledRandom entities: - - uid: 321 + - uid: 5378 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 2 - - uid: 334 + - uid: 5379 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-1.5 parent: 2 - - uid: 835 + - uid: 5380 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-133.5 parent: 2 - - uid: 836 + - uid: 5381 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-154.5 parent: 2 - - uid: 839 + - uid: 5382 components: - type: Transform rot: -1.5707963267948966 rad @@ -35522,18 +35234,18 @@ entities: - 0 - 0 - 0 - - uid: 931 + - uid: 5383 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-33.5 parent: 2 - - uid: 1108 + - uid: 5384 components: - type: Transform pos: 4.5,-36.5 parent: 2 - - uid: 1819 + - uid: 5385 components: - type: Transform rot: 1.5707963267948966 rad @@ -35557,19 +35269,19 @@ entities: - 0 - 0 - 0 - - uid: 2304 + - uid: 5386 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-127.5 parent: 2 - - uid: 2898 + - uid: 5387 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-143.5 parent: 2 - - uid: 3001 + - uid: 5388 components: - type: Transform pos: -7.5,-106.5 @@ -35598,98 +35310,98 @@ entities: showEnts: False occludes: True ents: - - 3625 - - uid: 3021 + - 5389 + - uid: 5390 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-37.5 parent: 2 - - uid: 3162 + - uid: 5391 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-106.5 parent: 2 - - uid: 4068 + - uid: 5392 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-187.5 parent: 2 - - uid: 4069 + - uid: 5393 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-181.5 parent: 2 - - uid: 4227 + - uid: 5394 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-15.5 parent: 2 - - uid: 4228 + - uid: 5395 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-100.5 parent: 2 - - uid: 4229 + - uid: 5396 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-79.5 parent: 2 - - uid: 4230 + - uid: 5397 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-73.5 parent: 2 - - uid: 4231 + - uid: 5398 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-52.5 parent: 2 - - uid: 4232 + - uid: 5399 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-46.5 parent: 2 - - uid: 4238 + - uid: 5400 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-25.5 parent: 2 - - uid: 4469 + - uid: 5401 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-107.5 parent: 2 - - uid: 4651 + - uid: 5402 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-208.5 parent: 2 - - uid: 4653 + - uid: 5403 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-214.5 parent: 2 - - uid: 4654 + - uid: 5404 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-235.5 parent: 2 - - uid: 4655 + - uid: 5405 components: - type: Transform rot: -1.5707963267948966 rad @@ -35713,49 +35425,49 @@ entities: - 0 - 0 - 0 - - uid: 7498 + - uid: 5406 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-262.5 parent: 2 - - uid: 8669 + - uid: 5407 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-268.5 parent: 2 - - uid: 9376 + - uid: 5408 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-289.5 parent: 2 - - uid: 9379 + - uid: 5409 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-295.5 parent: 2 - - uid: 10569 + - uid: 5410 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-321.5 parent: 2 - - uid: 11142 + - uid: 5411 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-327.5 parent: 2 - - uid: 11143 + - uid: 5412 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-348.5 parent: 2 - - uid: 11144 + - uid: 5413 components: - type: Transform rot: -1.5707963267948966 rad @@ -35763,7 +35475,7 @@ entities: parent: 2 - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 1063 + - uid: 5414 components: - type: Transform rot: 3.141592653589793 rad @@ -35787,18 +35499,18 @@ entities: - 0 - 0 - 0 - - uid: 7306 + - uid: 5415 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 - - uid: 7392 + - uid: 5416 components: - type: Transform pos: 13.5,-137.5 parent: 2 - - uid: 7393 + - uid: 5417 components: - type: Transform rot: 3.141592653589793 rad @@ -35806,14 +35518,14 @@ entities: parent: 2 - proto: ClothingBackpackDuffelSyndicatePyjamaBundle entities: - - uid: 12108 + - uid: 5418 components: - type: Transform pos: -11.520256,-161.46404 parent: 2 - proto: ClothingBackpackMerc entities: - - uid: 9088 + - uid: 5419 components: - type: Transform rot: 3.141592653589793 rad @@ -35821,14 +35533,14 @@ entities: parent: 2 - proto: ClothingBeltChampion entities: - - uid: 98 + - uid: 5420 components: - type: Transform pos: -1.5155509,-3.3950026 parent: 2 - proto: ClothingBeltMercWebbing entities: - - uid: 9089 + - uid: 5421 components: - type: Transform rot: 1.5707963267948966 rad @@ -35836,403 +35548,403 @@ entities: parent: 2 - proto: ClothingBeltSalvageWebbing entities: - - uid: 8632 + - uid: 5422 components: - type: Transform pos: -6.4954147,-283.40762 parent: 2 - proto: ClothingBeltUtilityEngineering entities: - - uid: 4921 + - uid: 5423 components: - type: Transform pos: 5.3335085,-253.25787 parent: 2 - - uid: 4948 + - uid: 5424 components: - type: Transform pos: 5.597643,-252.98062 parent: 2 - proto: ClothingBeltUtilityFilled entities: - - uid: 8865 + - uid: 5425 components: - type: Transform pos: -5.4843903,-272.37283 parent: 2 - - uid: 8918 + - uid: 5426 components: - type: Transform pos: -5.086961,-272.51526 parent: 2 - proto: ClothingEyesEyepatchHudBeer entities: - - uid: 6284 + - uid: 5427 components: - type: Transform pos: -5.5304284,-200.22986 parent: 2 - proto: ClothingEyesEyepatchHudMedical entities: - - uid: 3694 + - uid: 5428 components: - type: Transform pos: 8.467955,-175.3928 parent: 2 - proto: ClothingEyesEyepatchHudSecurity entities: - - uid: 6307 + - uid: 5429 components: - type: Transform pos: -7.5085177,-98.683334 parent: 2 - - uid: 10854 + - uid: 5430 components: - type: Transform pos: -6.5701137,-339.11215 parent: 2 - proto: ClothingEyesGlassesJamjar entities: - - uid: 15036 + - uid: 5431 components: - type: Transform pos: -10.441889,-133.57634 parent: 2 - proto: ClothingEyesGlassesMercenary entities: - - uid: 9096 + - uid: 5432 components: - type: Transform pos: 17.46046,-151.51154 parent: 2 - proto: ClothingEyesGlassesMeson entities: - - uid: 6639 + - uid: 5433 components: - type: Transform pos: 8.599879,-250.49686 parent: 2 - - uid: 8414 + - uid: 5434 components: - type: Transform pos: 16.374,-245.4528 parent: 2 - - uid: 8492 + - uid: 5435 components: - type: Transform pos: 16.241934,-245.58482 parent: 2 - - uid: 8982 + - uid: 5436 components: - type: Transform pos: 16.545687,-245.58482 parent: 2 - proto: ClothingEyesHudOnionBeer entities: - - uid: 14658 + - uid: 5437 components: - type: Transform pos: 17.613636,-73.25992 parent: 2 - proto: ClothingEyesHudSecurity entities: - - uid: 12714 + - uid: 5438 components: - type: Transform pos: -6.38522,-339.1782 parent: 2 - proto: ClothingHandsGlovesColorBlack entities: - - uid: 934 + - uid: 5439 components: - type: Transform pos: -6.3692145,-340.57867 parent: 2 - - uid: 9395 + - uid: 5440 components: - type: Transform pos: -6.488075,-340.47308 parent: 2 - proto: ClothingHandsGlovesColorYellow entities: - - uid: 2973 + - uid: 5441 components: - type: Transform pos: 4.7532883,-254.3202 parent: 2 - - uid: 7484 + - uid: 5442 components: - type: Transform pos: 15.620354,-246.35051 parent: 2 - - uid: 14599 + - uid: 5443 components: - type: Transform pos: 5.5004325,-245.50078 parent: 2 - proto: ClothingHandsGlovesColorYellowBudget entities: - - uid: 5118 + - uid: 5444 components: - type: Transform pos: 5.4891844,-245.36584 parent: 2 - - uid: 15261 + - uid: 5445 components: - type: Transform pos: 5.4891844,-245.19717 parent: 2 - proto: ClothingHandsGlovesLatex entities: - - uid: 10120 + - uid: 5446 components: - type: Transform pos: -4.4184327,-302.4534 parent: 2 - proto: ClothingHandsGlovesMercFingerless entities: - - uid: 9094 + - uid: 5447 components: - type: Transform pos: 11.0250435,-142.57506 parent: 2 - proto: ClothingHandsGlovesNitrile entities: - - uid: 3905 + - uid: 5448 components: - type: Transform pos: -6.474791,-195.55786 parent: 2 - proto: ClothingHandsTacticalMaidGloves entities: - - uid: 2879 + - uid: 5449 components: - type: Transform pos: -8.44329,-15.527226 parent: 2 - proto: ClothingHeadBandMerc entities: - - uid: 9090 + - uid: 5450 components: - type: Transform pos: 16.371077,-159.35246 parent: 2 - proto: ClothingHeadHatBeretMerc entities: - - uid: 9091 + - uid: 5451 components: - type: Transform pos: 7.385122,-163.34297 parent: 2 - proto: ClothingHeadHatBeretRND entities: - - uid: 15096 + - uid: 5452 components: - type: Transform pos: 10.067849,-194.21626 parent: 2 - proto: ClothingHeadHatBrownFlatcap entities: - - uid: 14636 + - uid: 5453 components: - type: Transform pos: -7.7489276,-255.68477 parent: 2 - proto: ClothingHeadHatCowboyBountyHunter entities: - - uid: 6283 + - uid: 5454 components: - type: Transform pos: -5.4412646,-206.21022 parent: 2 - - uid: 10122 + - uid: 5455 components: - type: Transform pos: -6.5050893,-305.04108 parent: 2 - proto: ClothingHeadHatCowboyBrown entities: - - uid: 6016 + - uid: 5456 components: - type: Transform pos: -2.3394754,-148.72287 parent: 2 - proto: ClothingHeadHatCowboyGrey entities: - - uid: 15165 + - uid: 5457 components: - type: Transform pos: 9.464466,-120.1053 parent: 2 - proto: ClothingHeadHatCowboyRed entities: - - uid: 8932 + - uid: 5458 components: - type: Transform pos: 16.43729,-78.522385 parent: 2 - proto: ClothingHeadHatShrineMaidenWig entities: - - uid: 2671 + - uid: 5459 components: - type: Transform pos: 2.5369916,-142.75755 parent: 2 - proto: ClothingHeadHatSurgcapPurple entities: - - uid: 16505 + - uid: 5460 components: - type: Transform pos: -13.547984,-168.3646 parent: 2 - proto: ClothingHeadHatUshanka entities: - - uid: 1487 + - uid: 5461 components: - type: Transform pos: 7.3559012,-56.31927 parent: 2 - proto: ClothingHeadHatWelding entities: - - uid: 339 + - uid: 5462 components: - type: Transform pos: -6.7000256,-2.3430972 parent: 2 - proto: ClothingHeadHatWeldingMaskFlame entities: - - uid: 14348 + - uid: 5463 components: - type: Transform pos: 8.726893,-250.28665 parent: 2 - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 14349 + - uid: 5464 components: - type: Transform pos: 8.351893,-250.58353 parent: 2 - proto: ClothingHeadHelmetAtmosFire entities: - - uid: 17058 + - uid: 867 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHelmetMerc entities: - - uid: 9086 + - uid: 5465 components: - type: Transform pos: 12.225706,-136.18898 parent: 2 - proto: ClothingMaskBreath entities: - - uid: 633 + - uid: 5466 components: - type: Transform pos: -3.5046618,-18.436672 parent: 2 - proto: ClothingMaskClown entities: - - uid: 10639 + - uid: 5468 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskGasAtmos entities: - - uid: 8253 - components: - - type: Transform - pos: 11.724084,-252.53477 - parent: 2 - - uid: 16813 + - uid: 4696 components: - type: Transform - parent: 16811 + parent: 4694 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 5477 + components: + - type: Transform + pos: 11.724084,-252.53477 + parent: 2 - proto: ClothingMaskGasMerc entities: - - uid: 9092 + - uid: 5478 components: - type: Transform pos: 7.4026275,-133.54765 parent: 2 - proto: ClothingMaskSadMime entities: - - uid: 11453 + - uid: 5480 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskScaredMime entities: - - uid: 11287 + - uid: 5481 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskSexyClown entities: - - uid: 8788 + - uid: 5469 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskSexyMime entities: - - uid: 11452 + - uid: 5482 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckBling entities: - - uid: 96 + - uid: 5487 components: - type: Transform pos: -0.98430085,-3.5043776 parent: 2 - proto: ClothingNeckCloakGoliathCloak entities: - - uid: 12386 + - uid: 5488 components: - type: Transform pos: 20.545477,-319.41248 parent: 2 - proto: ClothingNeckCloakMoth entities: - - uid: 4222 + - uid: 5489 components: - type: Transform pos: -7.7756677,-121.72427 parent: 2 - proto: ClothingNeckHeadphones entities: - - uid: 882 + - uid: 5490 components: - type: Transform pos: -1.4138944,-29.279722 parent: 2 - proto: ClothingNeckScarfStripedZebra entities: - - uid: 2039 + - uid: 5491 components: - type: Transform rot: -1.5707963267948966 rad @@ -36240,37 +35952,37 @@ entities: parent: 2 - proto: ClothingNeckStoleChaplain entities: - - uid: 2674 + - uid: 5492 components: - type: Transform pos: 6.5223746,-143.07793 parent: 2 - proto: ClothingNeckTieSci entities: - - uid: 15097 + - uid: 5493 components: - type: Transform pos: 10.437636,-200.83151 parent: 2 - proto: ClothingOuterSuitAtmosFire entities: - - uid: 17061 + - uid: 868 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterSuitShrineMaiden entities: - - uid: 2670 + - uid: 5494 components: - type: Transform pos: 2.4225328,-143.14482 parent: 2 - proto: ClothingOuterVestWebMerc entities: - - uid: 1997 + - uid: 5495 components: - type: Transform rot: 3.141592653589793 rad @@ -36278,216 +35990,216 @@ entities: parent: 2 - proto: ClothingOuterWinterMime entities: - - uid: 11286 + - uid: 5483 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterWinterWarden entities: - - uid: 12713 + - uid: 5496 components: - type: Transform pos: -0.49978608,-365.77002 parent: 2 - proto: ClothingShoesBootsCowboyBrown entities: - - uid: 6274 + - uid: 5497 components: - type: Transform pos: -2.9131222,-148.72287 parent: 2 - proto: ClothingShoesBootsCowboyWhite entities: - - uid: 15162 + - uid: 5498 components: - type: Transform pos: 8.722098,-120.734985 parent: 2 - proto: ClothingShoesBootsMag entities: - - uid: 406 + - uid: 5499 components: - type: Transform pos: 4.592537,2.4938912 parent: 2 - - uid: 2384 + - uid: 5500 components: - type: Transform pos: 4.400423,2.6220393 parent: 2 - - uid: 2385 + - uid: 5501 components: - type: Transform pos: 9.430661,-119.386765 parent: 2 - - uid: 2386 + - uid: 5502 components: - type: Transform pos: 9.618161,-119.543015 parent: 2 - - uid: 9015 + - uid: 5503 components: - type: Transform pos: -6.54561,-283.5363 parent: 2 - proto: ClothingShoesBootsMercFilled entities: - - uid: 8399 + - uid: 5504 components: - type: Transform pos: 7.4738736,-160.36284 parent: 2 - proto: ClothingShoesClown entities: - - uid: 10092 + - uid: 5470 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtJanimaidmini entities: - - uid: 2878 + - uid: 5505 components: - type: Transform pos: -4.636336,-20.392185 parent: 2 - proto: ClothingUniformJumpsuitChiefEngineerSyndie entities: - - uid: 734 + - uid: 5506 components: - type: Transform pos: -2.5118494,-45.422665 parent: 2 - proto: ClothingUniformJumpsuitMercenary entities: - - uid: 9097 + - uid: 5507 components: - type: Transform pos: 13.563655,-161.57042 parent: 2 - proto: ClothingUniformJumpsuitMime entities: - - uid: 11288 + - uid: 5484 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Cobweb1 entities: - - uid: 1110 + - uid: 5508 components: - type: Transform pos: 5.5,-26.5 parent: 2 - - uid: 1632 + - uid: 5509 components: - type: Transform pos: 4.5,-66.5 parent: 2 - - uid: 1638 + - uid: 5510 components: - type: Transform pos: 3.5,-71.5 parent: 2 - - uid: 14374 + - uid: 5511 components: - type: Transform pos: 13.5,-60.5 parent: 2 - proto: Cobweb2 entities: - - uid: 437 + - uid: 5512 components: - type: Transform pos: -2.5,-16.5 parent: 2 - - uid: 1635 + - uid: 5513 components: - type: Transform pos: 7.5,-68.5 parent: 2 - - uid: 1636 + - uid: 5514 components: - type: Transform pos: 7.5,-55.5 parent: 2 - - uid: 1637 + - uid: 5515 components: - type: Transform pos: -2.5,-53.5 parent: 2 - - uid: 9030 + - uid: 5516 components: - type: Transform pos: 1.5,-262.5 parent: 2 - - uid: 9031 + - uid: 5517 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-287.5 parent: 2 - - uid: 9032 + - uid: 5518 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-287.5 parent: 2 - - uid: 14379 + - uid: 5519 components: - type: Transform pos: 17.5,-60.5 parent: 2 - - uid: 14773 + - uid: 5520 components: - type: Transform pos: 6.5,-28.5 parent: 2 - proto: ComfyChair entities: - - uid: 309 + - uid: 5521 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-10.5 parent: 2 - - uid: 2208 + - uid: 5522 components: - type: Transform pos: -0.5,-121.5 parent: 2 - - uid: 4143 + - uid: 5523 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-358.5 parent: 2 - - uid: 11763 + - uid: 5524 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-358.5 parent: 2 - - uid: 13452 + - uid: 5525 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-37.5 parent: 2 - - uid: 15028 + - uid: 5526 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-133.5 parent: 2 - - uid: 15029 + - uid: 5527 components: - type: Transform rot: -1.5707963267948966 rad @@ -36495,14 +36207,14 @@ entities: parent: 2 - proto: ComputerAlert entities: - - uid: 1156 + - uid: 5528 components: - type: Transform pos: -5.5,-334.5 parent: 2 - proto: ComputerAnalysisConsole entities: - - uid: 12118 + - uid: 5529 components: - type: Transform rot: 3.141592653589793 rad @@ -36510,7 +36222,7 @@ entities: parent: 2 - proto: computerBodyScanner entities: - - uid: 2398 + - uid: 5530 components: - type: Transform rot: 3.141592653589793 rad @@ -36518,7 +36230,7 @@ entities: parent: 2 - proto: ComputerBroken entities: - - uid: 9695 + - uid: 5531 components: - type: Transform rot: -1.5707963267948966 rad @@ -36526,7 +36238,7 @@ entities: parent: 2 - proto: ComputerCargoBounty entities: - - uid: 8497 + - uid: 5532 components: - type: Transform rot: 3.141592653589793 rad @@ -36534,45 +36246,45 @@ entities: parent: 2 - proto: ComputerCargoOrders entities: - - uid: 9025 + - uid: 5533 components: - type: Transform pos: 3.5,-276.5 parent: 2 - proto: ComputerCargoShuttle entities: - - uid: 9026 + - uid: 5534 components: - type: Transform pos: 2.5,-276.5 parent: 2 - proto: ComputerComms entities: - - uid: 54 + - uid: 5535 components: - type: Transform pos: 0.5,3.5 parent: 2 - - uid: 7211 + - uid: 5536 components: - type: Transform pos: -2.5,-9.5 parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 50 + - uid: 5537 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 2 - - uid: 7206 + - uid: 5538 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-202.5 parent: 2 - - uid: 8408 + - uid: 5539 components: - type: Transform rot: 3.141592653589793 rad @@ -36580,12 +36292,12 @@ entities: parent: 2 - proto: ComputerCriminalRecords entities: - - uid: 14300 + - uid: 5540 components: - type: Transform pos: -6.5,-335.5 parent: 2 - - uid: 14804 + - uid: 5541 components: - type: Transform rot: -1.5707963267948966 rad @@ -36593,13 +36305,13 @@ entities: parent: 2 - proto: ComputerId entities: - - uid: 395 + - uid: 5542 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-10.5 parent: 2 - - uid: 9514 + - uid: 5543 components: - type: Transform rot: 1.5707963267948966 rad @@ -36607,20 +36319,20 @@ entities: parent: 2 - proto: ComputerMassMedia entities: - - uid: 9638 + - uid: 5544 components: - type: Transform pos: 21.5,-297.5 parent: 2 - proto: ComputerMedicalRecords entities: - - uid: 7205 + - uid: 5545 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-203.5 parent: 2 - - uid: 7837 + - uid: 5546 components: - type: Transform rot: 3.141592653589793 rad @@ -36628,60 +36340,60 @@ entities: parent: 2 - proto: ComputerPowerMonitoring entities: - - uid: 49 + - uid: 5547 components: - type: Transform pos: -1.5,2.5 parent: 2 - - uid: 5425 + - uid: 5548 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-231.5 parent: 2 - - uid: 5461 + - uid: 5549 components: - type: Transform pos: -3.5,-218.5 parent: 2 - - uid: 6750 + - uid: 5550 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-254.5 parent: 2 - - uid: 8182 + - uid: 5551 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-252.5 parent: 2 - - uid: 9702 + - uid: 5552 components: - type: Transform pos: 23.5,-309.5 parent: 2 - proto: ComputerRadar entities: - - uid: 52 + - uid: 5553 components: - type: Transform pos: 2.5,2.5 parent: 2 - proto: ComputerResearchAndDevelopment entities: - - uid: 9826 + - uid: 5554 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-301.5 parent: 2 - - uid: 10033 + - uid: 5555 components: - type: Transform pos: -2.5,-300.5 parent: 2 - - uid: 10037 + - uid: 5556 components: - type: Transform rot: -1.5707963267948966 rad @@ -36689,7 +36401,7 @@ entities: parent: 2 - proto: ComputerRoboticsControl entities: - - uid: 6661 + - uid: 5557 components: - type: Transform rot: 1.5707963267948966 rad @@ -36697,7 +36409,7 @@ entities: parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 8873 + - uid: 5558 components: - type: Transform rot: 1.5707963267948966 rad @@ -36705,7 +36417,7 @@ entities: parent: 2 - proto: ComputerShuttleCargo entities: - - uid: 9022 + - uid: 5559 components: - type: Transform rot: -1.5707963267948966 rad @@ -36713,38 +36425,38 @@ entities: parent: 2 - proto: ComputerShuttleSalvage entities: - - uid: 8890 + - uid: 5560 components: - type: Transform pos: -5.5,-270.5 parent: 2 - proto: ComputerSolarControl entities: - - uid: 4912 + - uid: 5561 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-231.5 parent: 2 - - uid: 5462 + - uid: 5562 components: - type: Transform pos: -2.5,-218.5 parent: 2 - proto: ComputerStationRecords entities: - - uid: 9396 + - uid: 5563 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 2 - - uid: 10709 + - uid: 5564 components: - type: Transform pos: -3.5,-70.5 parent: 2 - - uid: 15750 + - uid: 5565 components: - type: Transform rot: 1.5707963267948966 rad @@ -36752,17 +36464,17 @@ entities: parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 1172 + - uid: 5566 components: - type: Transform pos: -4.5,-334.5 parent: 2 - - uid: 9682 + - uid: 5567 components: - type: Transform pos: 23.5,-315.5 parent: 2 - - uid: 14805 + - uid: 5568 components: - type: Transform rot: -1.5707963267948966 rad @@ -36770,192 +36482,150 @@ entities: parent: 2 - proto: ComputerTelevision entities: - - uid: 12694 + - uid: 5569 components: - type: Transform pos: -2.5,-61.5 parent: 2 - proto: ContainmentFieldGenerator entities: - - uid: 5182 + - uid: 5570 components: - type: Transform pos: 23.5,-255.5 parent: 2 - - uid: 6652 + - uid: 5571 components: - type: Transform pos: 31.5,-255.5 parent: 2 - - uid: 7449 + - uid: 5572 components: - type: Transform pos: 19.5,-243.5 parent: 2 - - uid: 7771 + - uid: 5573 components: - type: Transform pos: 19.5,-242.5 parent: 2 - proto: ContrabassInstrument entities: - - uid: 14363 + - uid: 5574 components: - type: Transform pos: 13.5,-62.5 parent: 2 - proto: ConveyorBelt entities: - - uid: 4899 + - uid: 5575 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-219.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 5450 + - uid: 5576 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-217.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 6589 + - uid: 5577 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-220.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 7620 + - uid: 5578 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-216.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 7644 + - uid: 5579 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-221.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 7715 + - uid: 5580 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-218.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 8990 + - uid: 5581 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9006 - - uid: 8991 + - uid: 5582 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9006 - - uid: 8992 + - uid: 5583 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9006 - - uid: 8993 + - uid: 5584 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9007 - - uid: 8994 + - uid: 5585 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9007 - - uid: 8995 + - uid: 5586 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9007 - - uid: 8996 + - uid: 5587 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9006 - - uid: 8997 + - uid: 5588 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9007 - proto: CowToolboxFilled entities: - - uid: 5403 + - uid: 5589 components: - type: Transform pos: -2.6682575,-263.44592 parent: 2 - proto: CrateArtifactContainer entities: - - uid: 9825 + - uid: 5590 components: - type: Transform pos: -2.5,-320.5 parent: 2 - proto: CrateEngineeringAMEControl entities: - - uid: 6862 + - uid: 5591 components: - type: Transform pos: 20.5,-251.5 parent: 2 - proto: CrateEngineeringAMEShielding entities: - - uid: 8630 + - uid: 469 components: - type: Transform pos: 20.5,-252.5 @@ -36984,71 +36654,71 @@ entities: showEnts: False occludes: True ents: - - 8631 - - 8633 - - 8634 + - 470 + - 471 + - 472 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateEngineeringCableHV entities: - - uid: 4903 + - uid: 5592 components: - type: Transform pos: -2.5,-231.5 parent: 2 - proto: CrateFilledSpawner entities: - - uid: 2995 + - uid: 5593 components: - type: Transform pos: 6.5,-278.5 parent: 2 - - uid: 14094 + - uid: 5594 components: - type: Transform pos: 1.5,-278.5 parent: 2 - - uid: 14095 + - uid: 5595 components: - type: Transform pos: 1.5,-280.5 parent: 2 - - uid: 14096 + - uid: 5596 components: - type: Transform pos: 2.5,-280.5 parent: 2 - proto: CrateFreezer entities: - - uid: 1940 + - uid: 5597 components: - type: Transform pos: -4.5,-93.5 parent: 2 - - uid: 6953 + - uid: 5598 components: - type: Transform pos: 0.5,-196.5 parent: 2 - proto: CrateFunPirate entities: - - uid: 14570 + - uid: 5599 components: - type: Transform pos: -11.5,-299.5 parent: 2 - proto: CrateMedicalSecure entities: - - uid: 3241 + - uid: 5600 components: - type: Transform pos: -1.5,-177.5 parent: 2 - proto: CrateMedicalSurgery entities: - - uid: 6779 + - uid: 5601 components: - type: Transform pos: -14.5,-168.5 @@ -37071,28 +36741,28 @@ entities: - 0 - 0 - 0 - - uid: 8471 + - uid: 5602 components: - type: Transform pos: -0.5,-196.5 parent: 2 - proto: CrateNPCHamlet entities: - - uid: 209 + - uid: 5603 components: - type: Transform pos: 6.5,-10.5 parent: 2 - proto: CratePlasma entities: - - uid: 9038 + - uid: 5604 components: - type: Transform pos: 6.5,-274.5 parent: 2 - proto: CrateSecure entities: - - uid: 12773 + - uid: 5605 components: - type: Transform pos: -4.5,-355.5 @@ -37121,75 +36791,75 @@ entities: showEnts: False occludes: True ents: - - 12774 - - 12775 - - 12776 - - 12777 + - 5609 + - 5608 + - 5606 + - 5607 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 7829 + - uid: 5610 components: - type: Transform pos: 8.5,-342.5 parent: 2 - proto: CrateServiceBureaucracy entities: - - uid: 9069 + - uid: 5611 components: - type: Transform pos: 6.5,-270.5 parent: 2 - proto: CrateServiceJanitorialSupplies entities: - - uid: 1066 + - uid: 5612 components: - type: Transform pos: -3.5,-55.5 parent: 2 - proto: CrateTrashCart entities: - - uid: 7622 + - uid: 5613 components: - type: Transform pos: 5.5,-220.5 parent: 2 - proto: CrateTrashCartFilled entities: - - uid: 5451 + - uid: 5614 components: - type: Transform pos: 5.5,-218.5 parent: 2 - proto: CrateTrashCartJani entities: - - uid: 10864 + - uid: 5615 components: - type: Transform pos: -0.5,-55.5 parent: 2 - proto: CrayonBox entities: - - uid: 14730 + - uid: 5616 components: - type: Transform pos: -6.0386314,-189.32039 parent: 2 - proto: CrayonMime entities: - - uid: 11491 + - uid: 5485 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Crematorium entities: - - uid: 2692 + - uid: 5617 components: - type: Transform rot: 1.5707963267948966 rad @@ -37197,7 +36867,7 @@ entities: parent: 2 - proto: CrewMonitoringServer entities: - - uid: 9394 + - uid: 5618 components: - type: Transform pos: 3.5,-201.5 @@ -37207,73 +36877,73 @@ entities: available: False - proto: Crowbar entities: - - uid: 12231 + - uid: 5619 components: - type: Transform pos: 15.588418,-247.49165 parent: 2 - proto: CrowbarRed entities: - - uid: 867 + - uid: 5620 components: - type: Transform rot: 3.141592653589793 rad pos: 17.447252,-148.35458 parent: 2 - - uid: 5020 + - uid: 5621 components: - type: Transform pos: 7.5092626,-245.4333 parent: 2 - - uid: 14645 + - uid: 5622 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5097127,-260.45267 parent: 2 - - uid: 14646 + - uid: 5623 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.4304724,-260.42627 parent: 2 - - uid: 14649 + - uid: 5624 components: - type: Transform pos: 7.6104946,-245.51202 parent: 2 - - uid: 15266 + - uid: 5625 components: - type: Transform pos: 7.734223,-245.60197 parent: 2 - proto: CryogenicSleepUnit entities: - - uid: 1831 + - uid: 5626 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-110.5 parent: 2 - - uid: 1987 + - uid: 5627 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-109.5 parent: 2 - - uid: 1988 + - uid: 5628 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-107.5 parent: 2 - - uid: 2075 + - uid: 5629 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-108.5 parent: 2 - - uid: 10929 + - uid: 5630 components: - type: Transform rot: 1.5707963267948966 rad @@ -37281,7 +36951,7 @@ entities: parent: 2 - proto: CryogenicSleepUnitSpawner entities: - - uid: 1205 + - uid: 5631 components: - type: Transform rot: 1.5707963267948966 rad @@ -37289,7 +36959,7 @@ entities: parent: 2 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 1242 + - uid: 5632 components: - type: Transform rot: -1.5707963267948966 rad @@ -37297,117 +36967,112 @@ entities: parent: 2 - proto: CryoPod entities: - - uid: 2924 + - uid: 5633 components: - type: Transform pos: -3.5,-168.5 parent: 2 - proto: CryoxadoneBeakerSmall entities: - - uid: 2400 - components: - - type: Transform - pos: -1.6543152,-168.36696 - parent: 2 - - uid: 11894 + - uid: 16325 components: - type: Transform - pos: -1.7246923,-168.03389 + pos: -2.2571619,-168.41248 parent: 2 - proto: CrystalBlue entities: - - uid: 6833 + - uid: 5636 components: - type: Transform pos: 23.5,-258.5 parent: 2 - - uid: 7568 + - uid: 5637 components: - type: Transform pos: 29.5,-264.5 parent: 2 - - uid: 16501 + - uid: 5638 components: - type: Transform pos: -11.5,-163.5 parent: 2 - proto: CrystalCyan entities: - - uid: 5677 + - uid: 5639 components: - type: Transform pos: 2.5,-141.5 parent: 2 - - uid: 5685 + - uid: 5640 components: - type: Transform pos: 6.5,-141.5 parent: 2 - - uid: 6836 + - uid: 5641 components: - type: Transform pos: 30.5,-258.5 parent: 2 - - uid: 6837 + - uid: 5642 components: - type: Transform pos: 27.5,-255.5 parent: 2 - - uid: 7570 + - uid: 5643 components: - type: Transform pos: 24.5,-261.5 parent: 2 - - uid: 16504 + - uid: 5644 components: - type: Transform pos: -12.5,-161.5 parent: 2 - - uid: 16529 + - uid: 5645 components: - type: Transform pos: -14.5,-166.5 parent: 2 - proto: CrystalGreen entities: - - uid: 7233 + - uid: 5646 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-144.5 parent: 2 - - uid: 7247 + - uid: 5647 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-149.5 parent: 2 - - uid: 7248 + - uid: 5648 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-147.5 parent: 2 - - uid: 7250 + - uid: 5649 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-145.5 parent: 2 - - uid: 7313 + - uid: 5650 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-153.5 parent: 2 - - uid: 7416 + - uid: 5651 components: - type: Transform pos: 17.5,-163.5 parent: 2 - proto: CyborgEndoskeleton entities: - - uid: 9949 + - uid: 5652 components: - type: Transform rot: 3.141592653589793 rad @@ -37415,14 +37080,14 @@ entities: parent: 2 - proto: d20Dice entities: - - uid: 14461 + - uid: 5653 components: - type: Transform pos: 17.02164,-78.62984 parent: 2 - proto: d4Dice entities: - - uid: 14634 + - uid: 5654 components: - type: Transform rot: -1.5707963267948966 rad @@ -37430,7 +37095,7 @@ entities: parent: 2 - proto: Dart entities: - - uid: 2207 + - uid: 5655 components: - type: Transform rot: 0.09166564047336578 rad @@ -37438,395 +37103,395 @@ entities: parent: 2 - proto: DefaultStationBeaconAISatellite entities: - - uid: 11450 + - uid: 5656 components: - type: Transform pos: 22.5,-307.5 parent: 2 - proto: DefaultStationBeaconAME entities: - - uid: 13472 + - uid: 5657 components: - type: Transform pos: 18.5,-252.5 parent: 2 - proto: DefaultStationBeaconAnomalyGenerator entities: - - uid: 11458 + - uid: 5658 components: - type: Transform pos: 5.5,-301.5 parent: 2 - proto: DefaultStationBeaconArmory entities: - - uid: 11455 + - uid: 5659 components: - type: Transform pos: 5.5,-340.5 parent: 2 - proto: DefaultStationBeaconArrivals entities: - - uid: 11459 + - uid: 5660 components: - type: Transform pos: 6.5,-40.5 parent: 2 - proto: DefaultStationBeaconArtifactLab entities: - - uid: 11460 + - uid: 5661 components: - type: Transform pos: -6.5,-315.5 parent: 2 - proto: DefaultStationBeaconBar entities: - - uid: 11461 + - uid: 5662 components: - type: Transform pos: -0.5,-63.5 parent: 2 - proto: DefaultStationBeaconBotany entities: - - uid: 11462 + - uid: 5663 components: - type: Transform pos: -6.5,-86.5 parent: 2 - proto: DefaultStationBeaconBridge entities: - - uid: 11466 + - uid: 5664 components: - type: Transform pos: 0.5,1.5 parent: 2 - proto: DefaultStationBeaconBrig entities: - - uid: 11463 + - uid: 5665 components: - type: Transform pos: -2.5,-338.5 parent: 2 - proto: DefaultStationBeaconCaptainsQuarters entities: - - uid: 11476 + - uid: 5666 components: - type: Transform pos: -2.5,-14.5 parent: 2 - proto: DefaultStationBeaconCargoBay entities: - - uid: 11479 + - uid: 5667 components: - type: Transform pos: 7.5,-279.5 parent: 2 - proto: DefaultStationBeaconCargoReception entities: - - uid: 11480 + - uid: 5668 components: - type: Transform pos: 4.5,-272.5 parent: 2 - proto: DefaultStationBeaconCERoom entities: - - uid: 13992 + - uid: 5669 components: - type: Transform pos: 10.5,-252.5 parent: 2 - proto: DefaultStationBeaconChapel entities: - - uid: 11481 + - uid: 5670 components: - type: Transform pos: 4.5,-142.5 parent: 2 - proto: DefaultStationBeaconChemistry entities: - - uid: 11482 + - uid: 5671 components: - type: Transform pos: 6.5,-167.5 parent: 2 - proto: DefaultStationBeaconCryonics entities: - - uid: 8934 + - uid: 5672 components: - type: Transform pos: 4.5,-179.5 parent: 2 - - uid: 16494 + - uid: 5673 components: - type: Transform pos: -2.5,-169.5 parent: 2 - proto: DefaultStationBeaconCryosleep entities: - - uid: 11465 + - uid: 5674 components: - type: Transform pos: -7.5,-108.5 parent: 2 - proto: DefaultStationBeaconDetectiveRoom entities: - - uid: 11492 + - uid: 5675 components: - type: Transform pos: -5.5,-72.5 parent: 2 - proto: DefaultStationBeaconDorms entities: - - uid: 11493 + - uid: 5676 components: - type: Transform pos: -7.5,-117.5 parent: 2 - proto: DefaultStationBeaconEngineering entities: - - uid: 7431 + - uid: 5677 components: - type: Transform pos: 3.5,-252.5 parent: 2 - proto: DefaultStationBeaconEvac entities: - - uid: 11329 + - uid: 5678 components: - type: Transform pos: -4.5,-30.5 parent: 2 - proto: DefaultStationBeaconEVAStorage entities: - - uid: 11494 + - uid: 5679 components: - type: Transform pos: 8.5,-114.5 parent: 2 - proto: DefaultStationBeaconGravGen entities: - - uid: 7434 + - uid: 5680 components: - type: Transform pos: 18.5,-264.5 parent: 2 - proto: DefaultStationBeaconHOPOffice entities: - - uid: 11499 + - uid: 5681 components: - type: Transform pos: 0.5,-119.5 parent: 2 - proto: DefaultStationBeaconHOSRoom entities: - - uid: 11500 + - uid: 5682 components: - type: Transform pos: -3.5,-345.5 parent: 2 - proto: DefaultStationBeaconJanitorsCloset entities: - - uid: 11501 + - uid: 5683 components: - type: Transform pos: -4.5,-54.5 parent: 2 - proto: DefaultStationBeaconKitchen entities: - - uid: 11502 + - uid: 5684 components: - type: Transform pos: 0.5,-88.5 parent: 2 - proto: DefaultStationBeaconLawOffice entities: - - uid: 11503 + - uid: 5685 components: - type: Transform pos: 5.5,-330.5 parent: 2 - proto: DefaultStationBeaconLibrary entities: - - uid: 11508 + - uid: 5686 components: - type: Transform pos: -4.5,-144.5 parent: 2 - proto: DefaultStationBeaconMedical entities: - - uid: 11510 + - uid: 5687 components: - type: Transform pos: 4.5,-173.5 parent: 2 - proto: DefaultStationBeaconMorgue entities: - - uid: 11511 + - uid: 5688 components: - type: Transform pos: -3.5,-173.5 parent: 2 - proto: DefaultStationBeaconPermaBrig entities: - - uid: 11512 + - uid: 5689 components: - type: Transform pos: 0.5,-372.5 parent: 2 - proto: DefaultStationBeaconPowerBank entities: - - uid: 7432 + - uid: 5690 components: - type: Transform pos: 14.5,-252.5 parent: 2 - proto: DefaultStationBeaconQMRoom entities: - - uid: 11513 + - uid: 5691 components: - type: Transform pos: 5.5,-285.5 parent: 2 - proto: DefaultStationBeaconRDRoom entities: - - uid: 11514 + - uid: 5692 components: - type: Transform pos: -9.5,-303.5 parent: 2 - proto: DefaultStationBeaconSalvage entities: - - uid: 11464 + - uid: 5693 components: - type: Transform pos: -5.5,-272.5 parent: 2 - proto: DefaultStationBeaconScience entities: - - uid: 11515 + - uid: 5694 components: - type: Transform pos: 0.5,-307.5 parent: 2 - proto: DefaultStationBeaconSolars entities: - - uid: 11516 + - uid: 5695 components: - type: Transform pos: -9.5,-225.5 parent: 2 - - uid: 11518 + - uid: 5696 components: - type: Transform pos: 10.5,-225.5 parent: 2 - proto: DefaultStationBeaconSurgery entities: - - uid: 11520 + - uid: 5697 components: - type: Transform pos: 1.5,-201.5 parent: 2 - proto: DefaultStationBeaconTechVault entities: - - uid: 11531 + - uid: 5698 components: - type: Transform pos: -2.5,-6.5 parent: 2 - proto: DefaultStationBeaconTelecoms entities: - - uid: 11523 + - uid: 5699 components: - type: Transform pos: 22.5,-298.5 parent: 2 - proto: DefaultStationBeaconWardensOffice entities: - - uid: 11526 + - uid: 5700 components: - type: Transform pos: 0.5,-364.5 parent: 2 - proto: Defibrillator entities: - - uid: 12338 + - uid: 5701 components: - type: Transform pos: 3.2889383,-173.42052 parent: 2 - proto: DefibrillatorCabinetFilled entities: - - uid: 3719 + - uid: 5702 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-177.5 parent: 2 - - uid: 3720 + - uid: 5703 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-195.5 parent: 2 - - uid: 4181 + - uid: 5704 components: - type: Transform pos: 3.5,-170.5 parent: 2 - - uid: 11234 + - uid: 5705 components: - type: Transform pos: -4.5,-359.5 parent: 2 - proto: DeployableBarrier entities: - - uid: 1844 + - uid: 5706 components: - type: Transform pos: 4.5,-336.5 parent: 2 - - uid: 10834 + - uid: 5707 components: - type: Transform pos: 4.5,-337.5 parent: 2 - - uid: 13044 + - uid: 5708 components: - type: Transform pos: 4.5,-335.5 parent: 2 - proto: DeskBell entities: - - uid: 2271 + - uid: 5709 components: - type: Transform pos: -0.2976312,-122.56093 parent: 2 - - uid: 3103 + - uid: 5710 components: - type: Transform pos: 2.5791457,-168.03862 parent: 2 - - uid: 6647 + - uid: 5711 components: - type: Transform pos: 1.5176499,-250.74234 parent: 2 - - uid: 9051 + - uid: 5712 components: - type: Transform pos: 2.3718603,-272.5842 parent: 2 - proto: DiseaseDiagnoser entities: - - uid: 929 + - uid: 5713 components: - type: Transform pos: -4.5,-193.5 parent: 2 - proto: DiseaseSwab entities: - - uid: 3919 + - uid: 5714 components: - type: Transform rot: -1.5707963267948966 rad @@ -37834,203 +37499,203 @@ entities: parent: 2 - proto: DisposalBend entities: - - uid: 2366 + - uid: 5715 components: - type: Transform pos: 3.5,-179.5 parent: 2 - - uid: 4175 + - uid: 5716 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-287.5 parent: 2 - - uid: 5140 + - uid: 5717 components: - type: Transform pos: 4.5,-9.5 parent: 2 - - uid: 5402 + - uid: 5718 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-11.5 parent: 2 - - uid: 7781 + - uid: 5719 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-287.5 parent: 2 - - uid: 7992 + - uid: 5720 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-250.5 parent: 2 - - uid: 8105 + - uid: 5721 components: - type: Transform pos: 2.5,-247.5 parent: 2 - - uid: 8241 + - uid: 5722 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-308.5 parent: 2 - - uid: 8485 + - uid: 5723 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-304.5 parent: 2 - - uid: 8773 + - uid: 5724 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-304.5 parent: 2 - - uid: 9422 + - uid: 5725 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-337.5 parent: 2 - - uid: 9873 + - uid: 5726 components: - type: Transform pos: -9.5,-194.5 parent: 2 - - uid: 9874 + - uid: 5727 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-190.5 parent: 2 - - uid: 10066 + - uid: 5728 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-194.5 parent: 2 - - uid: 12837 + - uid: 5729 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-9.5 parent: 2 - - uid: 13504 + - uid: 5730 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - uid: 13506 + - uid: 5731 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-10.5 parent: 2 - - uid: 13767 + - uid: 5732 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-149.5 parent: 2 - - uid: 13787 + - uid: 5733 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-140.5 parent: 2 - - uid: 14036 + - uid: 5734 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-285.5 parent: 2 - - uid: 14220 + - uid: 5735 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-340.5 parent: 2 - - uid: 14221 + - uid: 5736 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-340.5 parent: 2 - - uid: 14331 + - uid: 5737 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-339.5 parent: 2 - - uid: 15308 + - uid: 5738 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-4.5 parent: 2 - - uid: 15450 + - uid: 5739 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-125.5 parent: 2 - - uid: 15550 + - uid: 5740 components: - type: Transform pos: 3.5,-206.5 parent: 2 - - uid: 15565 + - uid: 5741 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-356.5 parent: 2 - - uid: 15656 + - uid: 5742 components: - type: Transform pos: 0.5,-286.5 parent: 2 - - uid: 15657 + - uid: 5743 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-286.5 parent: 2 - - uid: 15658 + - uid: 5744 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-284.5 parent: 2 - - uid: 15672 + - uid: 5745 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-274.5 parent: 2 - - uid: 15675 + - uid: 5746 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-274.5 parent: 2 - - uid: 15744 + - uid: 5747 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-221.5 parent: 2 - - uid: 15745 + - uid: 5748 components: - type: Transform pos: 3.5,-219.5 parent: 2 - - uid: 17033 + - uid: 5749 components: - type: Transform rot: 3.141592653589793 rad @@ -38038,51 +37703,51 @@ entities: parent: 2 - proto: DisposalJunction entities: - - uid: 9420 + - uid: 5750 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-337.5 parent: 2 - - uid: 15337 + - uid: 5751 components: - type: Transform pos: 0.5,-32.5 parent: 2 - - uid: 15449 + - uid: 5752 components: - type: Transform pos: 0.5,-125.5 parent: 2 - - uid: 15479 + - uid: 5753 components: - type: Transform pos: 0.5,-150.5 parent: 2 - - uid: 15492 + - uid: 5754 components: - type: Transform pos: 0.5,-162.5 parent: 2 - - uid: 15610 + - uid: 5755 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-316.5 parent: 2 - - uid: 15620 + - uid: 5756 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-308.5 parent: 2 - - uid: 15679 + - uid: 5757 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-270.5 parent: 2 - - uid: 15696 + - uid: 5758 components: - type: Transform rot: 3.141592653589793 rad @@ -38090,58 +37755,58 @@ entities: parent: 2 - proto: DisposalJunctionFlipped entities: - - uid: 2404 + - uid: 5759 components: - type: Transform pos: 0.5,-179.5 parent: 2 - - uid: 6769 + - uid: 5760 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-259.5 parent: 2 - - uid: 15336 + - uid: 5761 components: - type: Transform pos: 0.5,-37.5 parent: 2 - - uid: 15368 + - uid: 5762 components: - type: Transform pos: 0.5,-56.5 parent: 2 - - uid: 15369 + - uid: 5763 components: - type: Transform pos: 0.5,-69.5 parent: 2 - - uid: 15399 + - uid: 5764 components: - type: Transform pos: 0.5,-84.5 parent: 2 - - uid: 15413 + - uid: 5765 components: - type: Transform pos: 0.5,-97.5 parent: 2 - - uid: 15432 + - uid: 5766 components: - type: Transform pos: 0.5,-108.5 parent: 2 - - uid: 15523 + - uid: 5767 components: - type: Transform pos: 0.5,-189.5 parent: 2 - - uid: 15547 + - uid: 5768 components: - type: Transform pos: 0.5,-206.5 parent: 2 - - uid: 15662 + - uid: 5769 components: - type: Transform rot: -1.5707963267948966 rad @@ -38149,7032 +37814,7032 @@ entities: parent: 2 - proto: DisposalPipe entities: - - uid: 1095 + - uid: 5770 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-283.5 parent: 2 - - uid: 1499 + - uid: 5771 components: - type: Transform pos: -9.5,-219.5 parent: 2 - - uid: 1519 + - uid: 5772 components: - type: Transform pos: -9.5,-202.5 parent: 2 - - uid: 1573 + - uid: 5773 components: - type: Transform pos: -9.5,-203.5 parent: 2 - - uid: 1614 + - uid: 5774 components: - type: Transform pos: -9.5,-205.5 parent: 2 - - uid: 2153 + - uid: 5775 components: - type: Transform pos: 1.5,-278.5 parent: 2 - - uid: 2167 + - uid: 5776 components: - type: Transform pos: 1.5,-280.5 parent: 2 - - uid: 2257 + - uid: 5777 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-282.5 parent: 2 - - uid: 2375 + - uid: 5778 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-179.5 parent: 2 - - uid: 2401 + - uid: 5779 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-179.5 parent: 2 - - uid: 2574 + - uid: 5780 components: - type: Transform pos: -0.5,-247.5 parent: 2 - - uid: 2733 + - uid: 5781 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-275.5 parent: 2 - - uid: 3069 + - uid: 5782 components: - type: Transform pos: 15.5,-96.5 parent: 2 - - uid: 3070 + - uid: 5783 components: - type: Transform pos: 15.5,-115.5 parent: 2 - - uid: 3096 + - uid: 5784 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-276.5 parent: 2 - - uid: 3394 + - uid: 5785 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-274.5 parent: 2 - - uid: 3695 + - uid: 5786 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-284.5 parent: 2 - - uid: 4174 + - uid: 5787 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-9.5 parent: 2 - - uid: 4178 + - uid: 5788 components: - type: Transform pos: 15.5,-114.5 parent: 2 - - uid: 4526 + - uid: 5789 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 5022 + - uid: 5790 components: - type: Transform pos: -0.5,-248.5 parent: 2 - - uid: 5023 + - uid: 5791 components: - type: Transform pos: -0.5,-249.5 parent: 2 - - uid: 5025 + - uid: 5792 components: - type: Transform pos: -0.5,-250.5 parent: 2 - - uid: 5027 + - uid: 5793 components: - type: Transform pos: -0.5,-251.5 parent: 2 - - uid: 5081 + - uid: 5794 components: - type: Transform pos: -0.5,-243.5 parent: 2 - - uid: 5087 + - uid: 5795 components: - type: Transform pos: -0.5,-244.5 parent: 2 - - uid: 5173 + - uid: 5796 components: - type: Transform pos: -0.5,-245.5 parent: 2 - - uid: 5177 + - uid: 5797 components: - type: Transform pos: -0.5,-246.5 parent: 2 - - uid: 5356 + - uid: 5798 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-341.5 parent: 2 - - uid: 5357 + - uid: 5799 components: - type: Transform pos: -0.5,-252.5 parent: 2 - - uid: 6641 + - uid: 5800 components: - type: Transform pos: 1.5,-281.5 parent: 2 - - uid: 6668 + - uid: 5801 components: - type: Transform pos: 15.5,-136.5 parent: 2 - - uid: 6669 + - uid: 5802 components: - type: Transform pos: 15.5,-119.5 parent: 2 - - uid: 6749 + - uid: 5803 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-339.5 parent: 2 - - uid: 6767 + - uid: 5804 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-244.5 parent: 2 - - uid: 6768 + - uid: 5805 components: - type: Transform pos: -0.5,-260.5 parent: 2 - - uid: 6772 + - uid: 5806 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-246.5 parent: 2 - - uid: 6773 + - uid: 5807 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-245.5 parent: 2 - - uid: 6787 + - uid: 5808 components: - type: Transform pos: -0.5,-253.5 parent: 2 - - uid: 6788 + - uid: 5809 components: - type: Transform pos: -0.5,-254.5 parent: 2 - - uid: 6789 + - uid: 5810 components: - type: Transform pos: -0.5,-259.5 parent: 2 - - uid: 6790 + - uid: 5811 components: - type: Transform pos: -0.5,-255.5 parent: 2 - - uid: 6791 + - uid: 5812 components: - type: Transform pos: -0.5,-256.5 parent: 2 - - uid: 6792 + - uid: 5813 components: - type: Transform pos: -0.5,-257.5 parent: 2 - - uid: 6793 + - uid: 5814 components: - type: Transform pos: -0.5,-258.5 parent: 2 - - uid: 6817 + - uid: 5815 components: - type: Transform pos: 15.5,-117.5 parent: 2 - - uid: 6818 + - uid: 5816 components: - type: Transform pos: 15.5,-128.5 parent: 2 - - uid: 6884 + - uid: 5817 components: - type: Transform pos: 15.5,-130.5 parent: 2 - - uid: 6885 + - uid: 5818 components: - type: Transform pos: 15.5,-131.5 parent: 2 - - uid: 7421 + - uid: 5819 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-295.5 parent: 2 - - uid: 7422 + - uid: 5820 components: - type: Transform pos: -9.5,-228.5 parent: 2 - - uid: 7424 + - uid: 5821 components: - type: Transform pos: -9.5,-229.5 parent: 2 - - uid: 7425 + - uid: 5822 components: - type: Transform pos: -9.5,-230.5 parent: 2 - - uid: 7426 + - uid: 5823 components: - type: Transform pos: -9.5,-232.5 parent: 2 - - uid: 7446 + - uid: 5824 components: - type: Transform pos: 15.5,-129.5 parent: 2 - - uid: 7447 + - uid: 5825 components: - type: Transform pos: 15.5,-135.5 parent: 2 - - uid: 7456 + - uid: 5826 components: - type: Transform pos: 15.5,-134.5 parent: 2 - - uid: 7465 + - uid: 5827 components: - type: Transform pos: -9.5,-252.5 parent: 2 - - uid: 7468 + - uid: 5828 components: - type: Transform pos: -9.5,-238.5 parent: 2 - - uid: 7469 + - uid: 5829 components: - type: Transform pos: -9.5,-249.5 parent: 2 - - uid: 7470 + - uid: 5830 components: - type: Transform pos: -9.5,-243.5 parent: 2 - - uid: 7471 + - uid: 5831 components: - type: Transform pos: -9.5,-257.5 parent: 2 - - uid: 7472 + - uid: 5832 components: - type: Transform pos: -9.5,-260.5 parent: 2 - - uid: 7473 + - uid: 5833 components: - type: Transform pos: -9.5,-231.5 parent: 2 - - uid: 7474 + - uid: 5834 components: - type: Transform pos: -9.5,-233.5 parent: 2 - - uid: 7480 + - uid: 5835 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-298.5 parent: 2 - - uid: 7486 + - uid: 5836 components: - type: Transform pos: 15.5,-116.5 parent: 2 - - uid: 7505 + - uid: 5837 components: - type: Transform pos: 15.5,-133.5 parent: 2 - - uid: 7772 + - uid: 5838 components: - type: Transform pos: -9.5,-227.5 parent: 2 - - uid: 7785 + - uid: 5839 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-256.5 parent: 2 - - uid: 7786 + - uid: 5840 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-257.5 parent: 2 - - uid: 7830 + - uid: 5841 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-250.5 parent: 2 - - uid: 7868 + - uid: 5842 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-250.5 parent: 2 - - uid: 7910 + - uid: 5843 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-255.5 parent: 2 - - uid: 7946 + - uid: 5844 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-248.5 parent: 2 - - uid: 7964 + - uid: 5845 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-252.5 parent: 2 - - uid: 7972 + - uid: 5846 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-258.5 parent: 2 - - uid: 7977 + - uid: 5847 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-260.5 parent: 2 - - uid: 7993 + - uid: 5848 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-250.5 parent: 2 - - uid: 7995 + - uid: 5849 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-250.5 parent: 2 - - uid: 7996 + - uid: 5850 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-250.5 parent: 2 - - uid: 7997 + - uid: 5851 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-243.5 parent: 2 - - uid: 8106 + - uid: 5852 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-250.5 parent: 2 - - uid: 8109 + - uid: 5853 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-249.5 parent: 2 - - uid: 8110 + - uid: 5854 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-250.5 parent: 2 - - uid: 8116 + - uid: 5855 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-249.5 parent: 2 - - uid: 8218 + - uid: 5856 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-250.5 parent: 2 - - uid: 8221 + - uid: 5857 components: - type: Transform pos: -9.5,-207.5 parent: 2 - - uid: 8222 + - uid: 5858 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-308.5 parent: 2 - - uid: 8223 + - uid: 5859 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-303.5 parent: 2 - - uid: 8224 + - uid: 5860 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-301.5 parent: 2 - - uid: 8231 + - uid: 5861 components: - type: Transform pos: -9.5,-279.5 parent: 2 - - uid: 8233 + - uid: 5862 components: - type: Transform pos: -13.5,-305.5 parent: 2 - - uid: 8243 + - uid: 5863 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-308.5 parent: 2 - - uid: 8244 + - uid: 5864 components: - type: Transform pos: 15.5,-86.5 parent: 2 - - uid: 8245 + - uid: 5865 components: - type: Transform pos: -9.5,-262.5 parent: 2 - - uid: 8246 + - uid: 5866 components: - type: Transform pos: -9.5,-282.5 parent: 2 - - uid: 8247 + - uid: 5867 components: - type: Transform pos: -9.5,-266.5 parent: 2 - - uid: 8251 + - uid: 5868 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-299.5 parent: 2 - - uid: 8252 + - uid: 5869 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-193.5 parent: 2 - - uid: 8254 + - uid: 5870 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-190.5 parent: 2 - - uid: 8257 + - uid: 5871 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-190.5 parent: 2 - - uid: 8258 + - uid: 5872 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-191.5 parent: 2 - - uid: 8381 + - uid: 5873 components: - type: Transform pos: -9.5,-245.5 parent: 2 - - uid: 8396 + - uid: 5874 components: - type: Transform pos: 1.5,-318.5 parent: 2 - - uid: 8397 + - uid: 5875 components: - type: Transform pos: 15.5,-104.5 parent: 2 - - uid: 8398 + - uid: 5876 components: - type: Transform pos: 15.5,-110.5 parent: 2 - - uid: 8400 + - uid: 5877 components: - type: Transform pos: 15.5,-106.5 parent: 2 - - uid: 8401 + - uid: 5878 components: - type: Transform pos: 15.5,-108.5 parent: 2 - - uid: 8402 + - uid: 5879 components: - type: Transform pos: 15.5,-105.5 parent: 2 - - uid: 8403 + - uid: 5880 components: - type: Transform pos: 15.5,-123.5 parent: 2 - - uid: 8404 + - uid: 5881 components: - type: Transform pos: 15.5,-109.5 parent: 2 - - uid: 8407 + - uid: 5882 components: - type: Transform pos: -9.5,-244.5 parent: 2 - - uid: 8426 + - uid: 5883 components: - type: Transform pos: 15.5,-121.5 parent: 2 - - uid: 8429 + - uid: 5884 components: - type: Transform pos: 15.5,-122.5 parent: 2 - - uid: 8438 + - uid: 5885 components: - type: Transform pos: 15.5,-111.5 parent: 2 - - uid: 8453 + - uid: 5886 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-253.5 parent: 2 - - uid: 8460 + - uid: 5887 components: - type: Transform pos: -9.5,-251.5 parent: 2 - - uid: 8484 + - uid: 5888 components: - type: Transform pos: 15.5,-99.5 parent: 2 - - uid: 8486 + - uid: 5889 components: - type: Transform pos: -9.5,-284.5 parent: 2 - - uid: 8735 + - uid: 5890 components: - type: Transform pos: -9.5,-280.5 parent: 2 - - uid: 8737 + - uid: 5891 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-302.5 parent: 2 - - uid: 8739 + - uid: 5892 components: - type: Transform pos: -13.5,-306.5 parent: 2 - - uid: 8742 + - uid: 5893 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-300.5 parent: 2 - - uid: 8743 + - uid: 5894 components: - type: Transform pos: -13.5,-307.5 parent: 2 - - uid: 8771 + - uid: 5895 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-194.5 parent: 2 - - uid: 8772 + - uid: 5896 components: - type: Transform pos: 15.5,-87.5 parent: 2 - - uid: 8775 + - uid: 5897 components: - type: Transform pos: -9.5,-204.5 parent: 2 - - uid: 8776 + - uid: 5898 components: - type: Transform pos: -9.5,-209.5 parent: 2 - - uid: 8778 + - uid: 5899 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-190.5 parent: 2 - - uid: 8779 + - uid: 5900 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-190.5 parent: 2 - - uid: 8782 + - uid: 5901 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-194.5 parent: 2 - - uid: 8784 + - uid: 5902 components: - type: Transform pos: -9.5,-264.5 parent: 2 - - uid: 8785 + - uid: 5903 components: - type: Transform pos: -9.5,-267.5 parent: 2 - - uid: 8800 + - uid: 5904 components: - type: Transform pos: -9.5,-268.5 parent: 2 - - uid: 8813 + - uid: 5905 components: - type: Transform pos: 15.5,-124.5 parent: 2 - - uid: 8814 + - uid: 5906 components: - type: Transform pos: 15.5,-127.5 parent: 2 - - uid: 8817 + - uid: 5907 components: - type: Transform pos: 15.5,-125.5 parent: 2 - - uid: 8818 + - uid: 5908 components: - type: Transform pos: 15.5,-126.5 parent: 2 - - uid: 8827 + - uid: 5909 components: - type: Transform pos: 15.5,-118.5 parent: 2 - - uid: 8828 + - uid: 5910 components: - type: Transform pos: 15.5,-120.5 parent: 2 - - uid: 8846 + - uid: 5911 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-254.5 parent: 2 - - uid: 8847 + - uid: 5912 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-250.5 parent: 2 - - uid: 8848 + - uid: 5913 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-251.5 parent: 2 - - uid: 8849 + - uid: 5914 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-250.5 parent: 2 - - uid: 8868 + - uid: 5915 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-259.5 parent: 2 - - uid: 8869 + - uid: 5916 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-250.5 parent: 2 - - uid: 8870 + - uid: 5917 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-308.5 parent: 2 - - uid: 8871 + - uid: 5918 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-308.5 parent: 2 - - uid: 8882 + - uid: 5919 components: - type: Transform pos: 15.5,-92.5 parent: 2 - - uid: 8919 + - uid: 5920 components: - type: Transform pos: 15.5,-132.5 parent: 2 - - uid: 8920 + - uid: 5921 components: - type: Transform pos: -9.5,-275.5 parent: 2 - - uid: 8935 + - uid: 5922 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-297.5 parent: 2 - - uid: 8938 + - uid: 5923 components: - type: Transform pos: -9.5,-281.5 parent: 2 - - uid: 8948 + - uid: 5924 components: - type: Transform pos: -9.5,-248.5 parent: 2 - - uid: 8949 + - uid: 5925 components: - type: Transform pos: -9.5,-270.5 parent: 2 - - uid: 8950 + - uid: 5926 components: - type: Transform pos: -9.5,-222.5 parent: 2 - - uid: 8951 + - uid: 5927 components: - type: Transform pos: -9.5,-255.5 parent: 2 - - uid: 8952 + - uid: 5928 components: - type: Transform pos: -9.5,-253.5 parent: 2 - - uid: 8953 + - uid: 5929 components: - type: Transform pos: -9.5,-254.5 parent: 2 - - uid: 8958 + - uid: 5930 components: - type: Transform pos: -9.5,-256.5 parent: 2 - - uid: 8959 + - uid: 5931 components: - type: Transform pos: -9.5,-259.5 parent: 2 - - uid: 8960 + - uid: 5932 components: - type: Transform pos: -9.5,-261.5 parent: 2 - - uid: 8962 + - uid: 5933 components: - type: Transform pos: -9.5,-247.5 parent: 2 - - uid: 8963 + - uid: 5934 components: - type: Transform pos: -9.5,-258.5 parent: 2 - - uid: 8964 + - uid: 5935 components: - type: Transform pos: -9.5,-250.5 parent: 2 - - uid: 8989 + - uid: 5936 components: - type: Transform pos: 15.5,-113.5 parent: 2 - - uid: 9037 + - uid: 5937 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-282.5 parent: 2 - - uid: 9076 + - uid: 5938 components: - type: Transform pos: -9.5,-220.5 parent: 2 - - uid: 9079 + - uid: 5939 components: - type: Transform pos: 15.5,-93.5 parent: 2 - - uid: 9093 + - uid: 5940 components: - type: Transform pos: -9.5,-269.5 parent: 2 - - uid: 9419 + - uid: 5941 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-337.5 parent: 2 - - uid: 9421 + - uid: 5942 components: - type: Transform pos: 2.5,-336.5 parent: 2 - - uid: 9803 + - uid: 5943 components: - type: Transform pos: 15.5,-94.5 parent: 2 - - uid: 9830 + - uid: 5944 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-289.5 parent: 2 - - uid: 9851 + - uid: 5945 components: - type: Transform pos: -9.5,-283.5 parent: 2 - - uid: 9867 + - uid: 5946 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-287.5 parent: 2 - - uid: 9872 + - uid: 5947 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-287.5 parent: 2 - - uid: 9905 + - uid: 5948 components: - type: Transform pos: 15.5,-101.5 parent: 2 - - uid: 10074 + - uid: 5949 components: - type: Transform pos: -9.5,-285.5 parent: 2 - - uid: 10326 + - uid: 5950 components: - type: Transform pos: -9.5,-212.5 parent: 2 - - uid: 10327 + - uid: 5951 components: - type: Transform pos: -9.5,-210.5 parent: 2 - - uid: 10331 + - uid: 5952 components: - type: Transform pos: -9.5,-211.5 parent: 2 - - uid: 10334 + - uid: 5953 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-288.5 parent: 2 - - uid: 10335 + - uid: 5954 components: - type: Transform pos: -9.5,-217.5 parent: 2 - - uid: 10344 + - uid: 5955 components: - type: Transform pos: -9.5,-216.5 parent: 2 - - uid: 10345 + - uid: 5956 components: - type: Transform pos: -9.5,-215.5 parent: 2 - - uid: 10346 + - uid: 5957 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-290.5 parent: 2 - - uid: 10347 + - uid: 5958 components: - type: Transform pos: -9.5,-236.5 parent: 2 - - uid: 10352 + - uid: 5959 components: - type: Transform pos: -9.5,-241.5 parent: 2 - - uid: 10403 + - uid: 5960 components: - type: Transform pos: 15.5,-100.5 parent: 2 - - uid: 10404 + - uid: 5961 components: - type: Transform pos: 15.5,-97.5 parent: 2 - - uid: 10405 + - uid: 5962 components: - type: Transform pos: 15.5,-102.5 parent: 2 - - uid: 10406 + - uid: 5963 components: - type: Transform pos: 15.5,-103.5 parent: 2 - - uid: 10528 + - uid: 5964 components: - type: Transform pos: -9.5,-263.5 parent: 2 - - uid: 10570 + - uid: 5965 components: - type: Transform pos: -9.5,-265.5 parent: 2 - - uid: 10572 + - uid: 5966 components: - type: Transform pos: -9.5,-276.5 parent: 2 - - uid: 11454 + - uid: 5967 components: - type: Transform pos: 15.5,-88.5 parent: 2 - - uid: 11474 + - uid: 5968 components: - type: Transform pos: -9.5,-277.5 parent: 2 - - uid: 11490 + - uid: 5969 components: - type: Transform pos: -9.5,-278.5 parent: 2 - - uid: 11495 + - uid: 5970 components: - type: Transform pos: 15.5,-90.5 parent: 2 - - uid: 11497 + - uid: 5971 components: - type: Transform pos: 15.5,-89.5 parent: 2 - - uid: 11521 + - uid: 5972 components: - type: Transform pos: 15.5,-95.5 parent: 2 - - uid: 11525 + - uid: 5973 components: - type: Transform pos: 15.5,-98.5 parent: 2 - - uid: 11721 + - uid: 5974 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-292.5 parent: 2 - - uid: 11729 + - uid: 5975 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-293.5 parent: 2 - - uid: 11737 + - uid: 5976 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-294.5 parent: 2 - - uid: 11738 + - uid: 5977 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-291.5 parent: 2 - - uid: 11739 + - uid: 5978 components: - type: Transform pos: -9.5,-225.5 parent: 2 - - uid: 11743 + - uid: 5979 components: - type: Transform pos: -9.5,-234.5 parent: 2 - - uid: 11744 + - uid: 5980 components: - type: Transform pos: -9.5,-237.5 parent: 2 - - uid: 11745 + - uid: 5981 components: - type: Transform pos: -9.5,-239.5 parent: 2 - - uid: 11794 + - uid: 5982 components: - type: Transform pos: -9.5,-235.5 parent: 2 - - uid: 11802 + - uid: 5983 components: - type: Transform pos: -9.5,-240.5 parent: 2 - - uid: 11883 + - uid: 5984 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-296.5 parent: 2 - - uid: 11987 + - uid: 5985 components: - type: Transform pos: 15.5,-91.5 parent: 2 - - uid: 11992 + - uid: 5986 components: - type: Transform pos: -9.5,-242.5 parent: 2 - - uid: 12008 + - uid: 5987 components: - type: Transform pos: -9.5,-208.5 parent: 2 - - uid: 12115 + - uid: 5988 components: - type: Transform pos: -9.5,-197.5 parent: 2 - - uid: 12122 + - uid: 5989 components: - type: Transform pos: -9.5,-198.5 parent: 2 - - uid: 12124 + - uid: 5990 components: - type: Transform pos: -9.5,-199.5 parent: 2 - - uid: 12125 + - uid: 5991 components: - type: Transform pos: -9.5,-200.5 parent: 2 - - uid: 12129 + - uid: 5992 components: - type: Transform pos: -9.5,-195.5 parent: 2 - - uid: 12133 + - uid: 5993 components: - type: Transform pos: -9.5,-201.5 parent: 2 - - uid: 12136 + - uid: 5994 components: - type: Transform pos: -9.5,-206.5 parent: 2 - - uid: 12144 + - uid: 5995 components: - type: Transform pos: -9.5,-246.5 parent: 2 - - uid: 12145 + - uid: 5996 components: - type: Transform pos: -9.5,-221.5 parent: 2 - - uid: 12158 + - uid: 5997 components: - type: Transform pos: -0.5,-163.5 parent: 2 - - uid: 12170 + - uid: 5998 components: - type: Transform pos: 1.5,-82.5 parent: 2 - - uid: 12173 + - uid: 5999 components: - type: Transform pos: -9.5,-224.5 parent: 2 - - uid: 12174 + - uid: 6000 components: - type: Transform pos: -9.5,-226.5 parent: 2 - - uid: 12182 + - uid: 6001 components: - type: Transform pos: -9.5,-218.5 parent: 2 - - uid: 12192 + - uid: 6002 components: - type: Transform pos: -9.5,-273.5 parent: 2 - - uid: 12193 + - uid: 6003 components: - type: Transform pos: -9.5,-274.5 parent: 2 - - uid: 12194 + - uid: 6004 components: - type: Transform pos: -9.5,-214.5 parent: 2 - - uid: 12198 + - uid: 6005 components: - type: Transform pos: -9.5,-213.5 parent: 2 - - uid: 12203 + - uid: 6006 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-192.5 parent: 2 - - uid: 12206 + - uid: 6007 components: - type: Transform pos: -9.5,-196.5 parent: 2 - - uid: 12208 + - uid: 6008 components: - type: Transform pos: -9.5,-271.5 parent: 2 - - uid: 13376 + - uid: 6009 components: - type: Transform pos: -9.5,-286.5 parent: 2 - - uid: 13475 + - uid: 6010 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-28.5 parent: 2 - - uid: 13476 + - uid: 6011 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-27.5 parent: 2 - - uid: 13477 + - uid: 6012 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-26.5 parent: 2 - - uid: 13478 + - uid: 6013 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-25.5 parent: 2 - - uid: 13479 + - uid: 6014 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-24.5 parent: 2 - - uid: 13480 + - uid: 6015 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-23.5 parent: 2 - - uid: 13481 + - uid: 6016 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-22.5 parent: 2 - - uid: 13482 + - uid: 6017 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-21.5 parent: 2 - - uid: 13483 + - uid: 6018 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-20.5 parent: 2 - - uid: 13484 + - uid: 6019 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 2 - - uid: 13485 + - uid: 6020 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-18.5 parent: 2 - - uid: 13486 + - uid: 6021 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-18.5 parent: 2 - - uid: 13487 + - uid: 6022 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-19.5 parent: 2 - - uid: 13488 + - uid: 6023 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-20.5 parent: 2 - - uid: 13489 + - uid: 6024 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-21.5 parent: 2 - - uid: 13490 + - uid: 6025 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-22.5 parent: 2 - - uid: 13491 + - uid: 6026 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-23.5 parent: 2 - - uid: 13492 + - uid: 6027 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-24.5 parent: 2 - - uid: 13493 + - uid: 6028 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-25.5 parent: 2 - - uid: 13494 + - uid: 6029 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-26.5 parent: 2 - - uid: 13495 + - uid: 6030 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-27.5 parent: 2 - - uid: 13496 + - uid: 6031 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-28.5 parent: 2 - - uid: 13497 + - uid: 6032 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 2 - - uid: 13498 + - uid: 6033 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-16.5 parent: 2 - - uid: 13499 + - uid: 6034 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-15.5 parent: 2 - - uid: 13500 + - uid: 6035 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-14.5 parent: 2 - - uid: 13501 + - uid: 6036 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 2 - - uid: 13502 + - uid: 6037 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 2 - - uid: 13505 + - uid: 6038 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 - - uid: 13507 + - uid: 6039 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 13508 + - uid: 6040 components: - type: Transform pos: -0.5,-12.5 parent: 2 - - uid: 13509 + - uid: 6041 components: - type: Transform pos: -0.5,-13.5 parent: 2 - - uid: 13510 + - uid: 6042 components: - type: Transform pos: -0.5,-14.5 parent: 2 - - uid: 13511 + - uid: 6043 components: - type: Transform pos: -0.5,-15.5 parent: 2 - - uid: 13512 + - uid: 6044 components: - type: Transform pos: -0.5,-16.5 parent: 2 - - uid: 13513 + - uid: 6045 components: - type: Transform pos: -0.5,-17.5 parent: 2 - - uid: 13519 + - uid: 6046 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 13520 + - uid: 6047 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 13521 + - uid: 6048 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 13522 + - uid: 6049 components: - type: Transform pos: 1.5,-32.5 parent: 2 - - uid: 13523 + - uid: 6050 components: - type: Transform pos: 1.5,-33.5 parent: 2 - - uid: 13524 + - uid: 6051 components: - type: Transform pos: 1.5,-34.5 parent: 2 - - uid: 13525 + - uid: 6052 components: - type: Transform pos: 1.5,-35.5 parent: 2 - - uid: 13526 + - uid: 6053 components: - type: Transform pos: 1.5,-36.5 parent: 2 - - uid: 13527 + - uid: 6054 components: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 13528 + - uid: 6055 components: - type: Transform pos: -0.5,-29.5 parent: 2 - - uid: 13529 + - uid: 6056 components: - type: Transform pos: -0.5,-30.5 parent: 2 - - uid: 13530 + - uid: 6057 components: - type: Transform pos: -0.5,-31.5 parent: 2 - - uid: 13531 + - uid: 6058 components: - type: Transform pos: -0.5,-32.5 parent: 2 - - uid: 13532 + - uid: 6059 components: - type: Transform pos: -0.5,-33.5 parent: 2 - - uid: 13533 + - uid: 6060 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 13534 + - uid: 6061 components: - type: Transform pos: -0.5,-35.5 parent: 2 - - uid: 13535 + - uid: 6062 components: - type: Transform pos: -0.5,-36.5 parent: 2 - - uid: 13536 + - uid: 6063 components: - type: Transform pos: -0.5,-37.5 parent: 2 - - uid: 13537 + - uid: 6064 components: - type: Transform pos: -0.5,-38.5 parent: 2 - - uid: 13538 + - uid: 6065 components: - type: Transform pos: -0.5,-39.5 parent: 2 - - uid: 13539 + - uid: 6066 components: - type: Transform pos: -0.5,-40.5 parent: 2 - - uid: 13540 + - uid: 6067 components: - type: Transform pos: -0.5,-41.5 parent: 2 - - uid: 13541 + - uid: 6068 components: - type: Transform pos: -0.5,-42.5 parent: 2 - - uid: 13542 + - uid: 6069 components: - type: Transform pos: -0.5,-43.5 parent: 2 - - uid: 13543 + - uid: 6070 components: - type: Transform pos: -0.5,-44.5 parent: 2 - - uid: 13544 + - uid: 6071 components: - type: Transform pos: 1.5,-38.5 parent: 2 - - uid: 13545 + - uid: 6072 components: - type: Transform pos: 1.5,-39.5 parent: 2 - - uid: 13546 + - uid: 6073 components: - type: Transform pos: 1.5,-40.5 parent: 2 - - uid: 13547 + - uid: 6074 components: - type: Transform pos: 1.5,-41.5 parent: 2 - - uid: 13548 + - uid: 6075 components: - type: Transform pos: 1.5,-42.5 parent: 2 - - uid: 13549 + - uid: 6076 components: - type: Transform pos: 1.5,-43.5 parent: 2 - - uid: 13550 + - uid: 6077 components: - type: Transform pos: 1.5,-44.5 parent: 2 - - uid: 13551 + - uid: 6078 components: - type: Transform pos: 1.5,-45.5 parent: 2 - - uid: 13552 + - uid: 6079 components: - type: Transform pos: 1.5,-46.5 parent: 2 - - uid: 13553 + - uid: 6080 components: - type: Transform pos: 1.5,-47.5 parent: 2 - - uid: 13554 + - uid: 6081 components: - type: Transform pos: 1.5,-48.5 parent: 2 - - uid: 13555 + - uid: 6082 components: - type: Transform pos: 1.5,-49.5 parent: 2 - - uid: 13556 + - uid: 6083 components: - type: Transform pos: 1.5,-50.5 parent: 2 - - uid: 13557 + - uid: 6084 components: - type: Transform pos: 1.5,-51.5 parent: 2 - - uid: 13558 + - uid: 6085 components: - type: Transform pos: 1.5,-52.5 parent: 2 - - uid: 13559 + - uid: 6086 components: - type: Transform pos: 1.5,-53.5 parent: 2 - - uid: 13560 + - uid: 6087 components: - type: Transform pos: 1.5,-54.5 parent: 2 - - uid: 13561 + - uid: 6088 components: - type: Transform pos: 1.5,-55.5 parent: 2 - - uid: 13562 + - uid: 6089 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - uid: 13563 + - uid: 6090 components: - type: Transform pos: -0.5,-45.5 parent: 2 - - uid: 13564 + - uid: 6091 components: - type: Transform pos: -0.5,-46.5 parent: 2 - - uid: 13565 + - uid: 6092 components: - type: Transform pos: -0.5,-47.5 parent: 2 - - uid: 13566 + - uid: 6093 components: - type: Transform pos: -0.5,-48.5 parent: 2 - - uid: 13567 + - uid: 6094 components: - type: Transform pos: -0.5,-49.5 parent: 2 - - uid: 13568 + - uid: 6095 components: - type: Transform pos: -0.5,-50.5 parent: 2 - - uid: 13569 + - uid: 6096 components: - type: Transform pos: -0.5,-51.5 parent: 2 - - uid: 13570 + - uid: 6097 components: - type: Transform pos: -0.5,-52.5 parent: 2 - - uid: 13571 + - uid: 6098 components: - type: Transform pos: -0.5,-53.5 parent: 2 - - uid: 13572 + - uid: 6099 components: - type: Transform pos: -0.5,-54.5 parent: 2 - - uid: 13573 + - uid: 6100 components: - type: Transform pos: -0.5,-55.5 parent: 2 - - uid: 13574 + - uid: 6101 components: - type: Transform pos: -0.5,-56.5 parent: 2 - - uid: 13575 + - uid: 6102 components: - type: Transform pos: -0.5,-57.5 parent: 2 - - uid: 13576 + - uid: 6103 components: - type: Transform pos: -0.5,-58.5 parent: 2 - - uid: 13577 + - uid: 6104 components: - type: Transform pos: -0.5,-59.5 parent: 2 - - uid: 13578 + - uid: 6105 components: - type: Transform pos: -0.5,-60.5 parent: 2 - - uid: 13579 + - uid: 6106 components: - type: Transform pos: -0.5,-61.5 parent: 2 - - uid: 13580 + - uid: 6107 components: - type: Transform pos: -0.5,-62.5 parent: 2 - - uid: 13581 + - uid: 6108 components: - type: Transform pos: -0.5,-63.5 parent: 2 - - uid: 13582 + - uid: 6109 components: - type: Transform pos: -0.5,-64.5 parent: 2 - - uid: 13583 + - uid: 6110 components: - type: Transform pos: -0.5,-65.5 parent: 2 - - uid: 13584 + - uid: 6111 components: - type: Transform pos: -0.5,-66.5 parent: 2 - - uid: 13585 + - uid: 6112 components: - type: Transform pos: -0.5,-67.5 parent: 2 - - uid: 13586 + - uid: 6113 components: - type: Transform pos: -0.5,-68.5 parent: 2 - - uid: 13587 + - uid: 6114 components: - type: Transform pos: 1.5,-57.5 parent: 2 - - uid: 13588 + - uid: 6115 components: - type: Transform pos: 1.5,-58.5 parent: 2 - - uid: 13589 + - uid: 6116 components: - type: Transform pos: 1.5,-59.5 parent: 2 - - uid: 13590 + - uid: 6117 components: - type: Transform pos: 1.5,-60.5 parent: 2 - - uid: 13592 + - uid: 6118 components: - type: Transform pos: 1.5,-62.5 parent: 2 - - uid: 13593 + - uid: 6119 components: - type: Transform pos: 1.5,-63.5 parent: 2 - - uid: 13594 + - uid: 6120 components: - type: Transform pos: 1.5,-64.5 parent: 2 - - uid: 13595 + - uid: 6121 components: - type: Transform pos: 1.5,-65.5 parent: 2 - - uid: 13596 + - uid: 6122 components: - type: Transform pos: 1.5,-66.5 parent: 2 - - uid: 13597 + - uid: 6123 components: - type: Transform pos: 1.5,-67.5 parent: 2 - - uid: 13598 + - uid: 6124 components: - type: Transform pos: 1.5,-68.5 parent: 2 - - uid: 13599 + - uid: 6125 components: - type: Transform pos: 1.5,-69.5 parent: 2 - - uid: 13600 + - uid: 6126 components: - type: Transform pos: 1.5,-70.5 parent: 2 - - uid: 13601 + - uid: 6127 components: - type: Transform pos: 1.5,-71.5 parent: 2 - - uid: 13602 + - uid: 6128 components: - type: Transform pos: 1.5,-72.5 parent: 2 - - uid: 13603 + - uid: 6129 components: - type: Transform pos: 1.5,-73.5 parent: 2 - - uid: 13604 + - uid: 6130 components: - type: Transform pos: 1.5,-74.5 parent: 2 - - uid: 13605 + - uid: 6131 components: - type: Transform pos: 1.5,-75.5 parent: 2 - - uid: 13606 + - uid: 6132 components: - type: Transform pos: 1.5,-76.5 parent: 2 - - uid: 13607 + - uid: 6133 components: - type: Transform pos: 1.5,-77.5 parent: 2 - - uid: 13608 + - uid: 6134 components: - type: Transform pos: 1.5,-78.5 parent: 2 - - uid: 13609 + - uid: 6135 components: - type: Transform pos: 1.5,-79.5 parent: 2 - - uid: 13610 + - uid: 6136 components: - type: Transform pos: 1.5,-80.5 parent: 2 - - uid: 13611 + - uid: 6137 components: - type: Transform pos: 1.5,-81.5 parent: 2 - - uid: 13612 + - uid: 6138 components: - type: Transform pos: -0.5,-69.5 parent: 2 - - uid: 13613 + - uid: 6139 components: - type: Transform pos: -0.5,-70.5 parent: 2 - - uid: 13614 + - uid: 6140 components: - type: Transform pos: -0.5,-71.5 parent: 2 - - uid: 13615 + - uid: 6141 components: - type: Transform pos: -0.5,-72.5 parent: 2 - - uid: 13616 + - uid: 6142 components: - type: Transform pos: -0.5,-73.5 parent: 2 - - uid: 13617 + - uid: 6143 components: - type: Transform pos: -0.5,-74.5 parent: 2 - - uid: 13618 + - uid: 6144 components: - type: Transform pos: -0.5,-75.5 parent: 2 - - uid: 13619 + - uid: 6145 components: - type: Transform pos: -0.5,-76.5 parent: 2 - - uid: 13620 + - uid: 6146 components: - type: Transform pos: -0.5,-77.5 parent: 2 - - uid: 13621 + - uid: 6147 components: - type: Transform pos: -0.5,-78.5 parent: 2 - - uid: 13622 + - uid: 6148 components: - type: Transform pos: -0.5,-79.5 parent: 2 - - uid: 13623 + - uid: 6149 components: - type: Transform pos: -0.5,-80.5 parent: 2 - - uid: 13624 + - uid: 6150 components: - type: Transform pos: -0.5,-81.5 parent: 2 - - uid: 13628 + - uid: 6151 components: - type: Transform pos: 1.5,-83.5 parent: 2 - - uid: 13629 + - uid: 6152 components: - type: Transform pos: 1.5,-84.5 parent: 2 - - uid: 13630 + - uid: 6153 components: - type: Transform pos: 1.5,-85.5 parent: 2 - - uid: 13631 + - uid: 6154 components: - type: Transform pos: 1.5,-86.5 parent: 2 - - uid: 13632 + - uid: 6155 components: - type: Transform pos: 1.5,-87.5 parent: 2 - - uid: 13633 + - uid: 6156 components: - type: Transform pos: 1.5,-88.5 parent: 2 - - uid: 13634 + - uid: 6157 components: - type: Transform pos: 1.5,-89.5 parent: 2 - - uid: 13635 + - uid: 6158 components: - type: Transform pos: 1.5,-90.5 parent: 2 - - uid: 13638 + - uid: 6159 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-92.5 parent: 2 - - uid: 13639 + - uid: 6160 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-93.5 parent: 2 - - uid: 13640 + - uid: 6161 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-94.5 parent: 2 - - uid: 13641 + - uid: 6162 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-95.5 parent: 2 - - uid: 13642 + - uid: 6163 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-95.5 parent: 2 - - uid: 13643 + - uid: 6164 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-94.5 parent: 2 - - uid: 13644 + - uid: 6165 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-93.5 parent: 2 - - uid: 13645 + - uid: 6166 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-92.5 parent: 2 - - uid: 13646 + - uid: 6167 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-91.5 parent: 2 - - uid: 13647 + - uid: 6168 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-90.5 parent: 2 - - uid: 13648 + - uid: 6169 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-89.5 parent: 2 - - uid: 13649 + - uid: 6170 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-88.5 parent: 2 - - uid: 13650 + - uid: 6171 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-87.5 parent: 2 - - uid: 13651 + - uid: 6172 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-86.5 parent: 2 - - uid: 13652 + - uid: 6173 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-85.5 parent: 2 - - uid: 13653 + - uid: 6174 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-84.5 parent: 2 - - uid: 13654 + - uid: 6175 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-83.5 parent: 2 - - uid: 13655 + - uid: 6176 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-82.5 parent: 2 - - uid: 13656 + - uid: 6177 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-96.5 parent: 2 - - uid: 13657 + - uid: 6178 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-97.5 parent: 2 - - uid: 13658 + - uid: 6179 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-98.5 parent: 2 - - uid: 13659 + - uid: 6180 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-99.5 parent: 2 - - uid: 13660 + - uid: 6181 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-100.5 parent: 2 - - uid: 13661 + - uid: 6182 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-101.5 parent: 2 - - uid: 13662 + - uid: 6183 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-102.5 parent: 2 - - uid: 13663 + - uid: 6184 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-103.5 parent: 2 - - uid: 13664 + - uid: 6185 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-104.5 parent: 2 - - uid: 13665 + - uid: 6186 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-105.5 parent: 2 - - uid: 13666 + - uid: 6187 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-106.5 parent: 2 - - uid: 13667 + - uid: 6188 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-107.5 parent: 2 - - uid: 13668 + - uid: 6189 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-108.5 parent: 2 - - uid: 13669 + - uid: 6190 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-109.5 parent: 2 - - uid: 13670 + - uid: 6191 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-109.5 parent: 2 - - uid: 13671 + - uid: 6192 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-108.5 parent: 2 - - uid: 13672 + - uid: 6193 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-107.5 parent: 2 - - uid: 13673 + - uid: 6194 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-106.5 parent: 2 - - uid: 13674 + - uid: 6195 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-105.5 parent: 2 - - uid: 13675 + - uid: 6196 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-104.5 parent: 2 - - uid: 13676 + - uid: 6197 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-103.5 parent: 2 - - uid: 13677 + - uid: 6198 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-102.5 parent: 2 - - uid: 13678 + - uid: 6199 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-101.5 parent: 2 - - uid: 13679 + - uid: 6200 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-100.5 parent: 2 - - uid: 13680 + - uid: 6201 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-99.5 parent: 2 - - uid: 13681 + - uid: 6202 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-98.5 parent: 2 - - uid: 13682 + - uid: 6203 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-97.5 parent: 2 - - uid: 13683 + - uid: 6204 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-96.5 parent: 2 - - uid: 13687 + - uid: 6205 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-118.5 parent: 2 - - uid: 13688 + - uid: 6206 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-117.5 parent: 2 - - uid: 13689 + - uid: 6207 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-116.5 parent: 2 - - uid: 13690 + - uid: 6208 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-115.5 parent: 2 - - uid: 13691 + - uid: 6209 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-114.5 parent: 2 - - uid: 13692 + - uid: 6210 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-113.5 parent: 2 - - uid: 13693 + - uid: 6211 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-112.5 parent: 2 - - uid: 13694 + - uid: 6212 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-111.5 parent: 2 - - uid: 13695 + - uid: 6213 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-110.5 parent: 2 - - uid: 13696 + - uid: 6214 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-110.5 parent: 2 - - uid: 13697 + - uid: 6215 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-111.5 parent: 2 - - uid: 13698 + - uid: 6216 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-112.5 parent: 2 - - uid: 13699 + - uid: 6217 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-113.5 parent: 2 - - uid: 13700 + - uid: 6218 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-114.5 parent: 2 - - uid: 13701 + - uid: 6219 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-115.5 parent: 2 - - uid: 13702 + - uid: 6220 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-116.5 parent: 2 - - uid: 13703 + - uid: 6221 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-117.5 parent: 2 - - uid: 13704 + - uid: 6222 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-118.5 parent: 2 - - uid: 13705 + - uid: 6223 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-119.5 parent: 2 - - uid: 13706 + - uid: 6224 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-120.5 parent: 2 - - uid: 13707 + - uid: 6225 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-121.5 parent: 2 - - uid: 13708 + - uid: 6226 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-122.5 parent: 2 - - uid: 13709 + - uid: 6227 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-123.5 parent: 2 - - uid: 13710 + - uid: 6228 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-124.5 parent: 2 - - uid: 13711 + - uid: 6229 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-120.5 parent: 2 - - uid: 13712 + - uid: 6230 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-121.5 parent: 2 - - uid: 13713 + - uid: 6231 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-122.5 parent: 2 - - uid: 13714 + - uid: 6232 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-123.5 parent: 2 - - uid: 13715 + - uid: 6233 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-124.5 parent: 2 - - uid: 13716 + - uid: 6234 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-125.5 parent: 2 - - uid: 13717 + - uid: 6235 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-126.5 parent: 2 - - uid: 13718 + - uid: 6236 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-127.5 parent: 2 - - uid: 13719 + - uid: 6237 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-128.5 parent: 2 - - uid: 13720 + - uid: 6238 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-129.5 parent: 2 - - uid: 13721 + - uid: 6239 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-130.5 parent: 2 - - uid: 13722 + - uid: 6240 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-131.5 parent: 2 - - uid: 13723 + - uid: 6241 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-132.5 parent: 2 - - uid: 13724 + - uid: 6242 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-133.5 parent: 2 - - uid: 13725 + - uid: 6243 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-134.5 parent: 2 - - uid: 13726 + - uid: 6244 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-135.5 parent: 2 - - uid: 13727 + - uid: 6245 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-135.5 parent: 2 - - uid: 13728 + - uid: 6246 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-134.5 parent: 2 - - uid: 13729 + - uid: 6247 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-133.5 parent: 2 - - uid: 13730 + - uid: 6248 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-132.5 parent: 2 - - uid: 13731 + - uid: 6249 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-131.5 parent: 2 - - uid: 13732 + - uid: 6250 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-130.5 parent: 2 - - uid: 13733 + - uid: 6251 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-129.5 parent: 2 - - uid: 13734 + - uid: 6252 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-128.5 parent: 2 - - uid: 13735 + - uid: 6253 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-127.5 parent: 2 - - uid: 13736 + - uid: 6254 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-126.5 parent: 2 - - uid: 13737 + - uid: 6255 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-125.5 parent: 2 - - uid: 13738 + - uid: 6256 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-136.5 parent: 2 - - uid: 13739 + - uid: 6257 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-137.5 parent: 2 - - uid: 13740 + - uid: 6258 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-138.5 parent: 2 - - uid: 13741 + - uid: 6259 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-139.5 parent: 2 - - uid: 13742 + - uid: 6260 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-140.5 parent: 2 - - uid: 13743 + - uid: 6261 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-141.5 parent: 2 - - uid: 13744 + - uid: 6262 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-142.5 parent: 2 - - uid: 13745 + - uid: 6263 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-143.5 parent: 2 - - uid: 13746 + - uid: 6264 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-144.5 parent: 2 - - uid: 13747 + - uid: 6265 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-145.5 parent: 2 - - uid: 13748 + - uid: 6266 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-146.5 parent: 2 - - uid: 13749 + - uid: 6267 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-147.5 parent: 2 - - uid: 13750 + - uid: 6268 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-148.5 parent: 2 - - uid: 13751 + - uid: 6269 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-148.5 parent: 2 - - uid: 13752 + - uid: 6270 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-147.5 parent: 2 - - uid: 13753 + - uid: 6271 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-146.5 parent: 2 - - uid: 13754 + - uid: 6272 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-145.5 parent: 2 - - uid: 13755 + - uid: 6273 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-144.5 parent: 2 - - uid: 13756 + - uid: 6274 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-143.5 parent: 2 - - uid: 13757 + - uid: 6275 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-142.5 parent: 2 - - uid: 13758 + - uid: 6276 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-141.5 parent: 2 - - uid: 13760 + - uid: 6277 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-139.5 parent: 2 - - uid: 13761 + - uid: 6278 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-138.5 parent: 2 - - uid: 13762 + - uid: 6279 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-137.5 parent: 2 - - uid: 13763 + - uid: 6280 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-136.5 parent: 2 - - uid: 13765 + - uid: 6281 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-149.5 parent: 2 - - uid: 13766 + - uid: 6282 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-149.5 parent: 2 - - uid: 13768 + - uid: 6283 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-148.5 parent: 2 - - uid: 13769 + - uid: 6284 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-147.5 parent: 2 - - uid: 13770 + - uid: 6285 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-146.5 parent: 2 - - uid: 13771 + - uid: 6286 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-145.5 parent: 2 - - uid: 13772 + - uid: 6287 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-144.5 parent: 2 - - uid: 13773 + - uid: 6288 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-143.5 parent: 2 - - uid: 13774 + - uid: 6289 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-142.5 parent: 2 - - uid: 13775 + - uid: 6290 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-141.5 parent: 2 - - uid: 13776 + - uid: 6291 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-140.5 parent: 2 - - uid: 13777 + - uid: 6292 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-139.5 parent: 2 - - uid: 13778 + - uid: 6293 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-138.5 parent: 2 - - uid: 13780 + - uid: 6294 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-140.5 parent: 2 - - uid: 13781 + - uid: 6295 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-140.5 parent: 2 - - uid: 13782 + - uid: 6296 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-140.5 parent: 2 - - uid: 13783 + - uid: 6297 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-140.5 parent: 2 - - uid: 13784 + - uid: 6298 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-140.5 parent: 2 - - uid: 13786 + - uid: 6299 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-141.5 parent: 2 - - uid: 13788 + - uid: 6300 components: - type: Transform pos: 1.5,-150.5 parent: 2 - - uid: 13789 + - uid: 6301 components: - type: Transform pos: 1.5,-151.5 parent: 2 - - uid: 13790 + - uid: 6302 components: - type: Transform pos: 1.5,-152.5 parent: 2 - - uid: 13791 + - uid: 6303 components: - type: Transform pos: 1.5,-153.5 parent: 2 - - uid: 13792 + - uid: 6304 components: - type: Transform pos: 1.5,-154.5 parent: 2 - - uid: 13793 + - uid: 6305 components: - type: Transform pos: 1.5,-155.5 parent: 2 - - uid: 13794 + - uid: 6306 components: - type: Transform pos: 1.5,-156.5 parent: 2 - - uid: 13795 + - uid: 6307 components: - type: Transform pos: 1.5,-157.5 parent: 2 - - uid: 13796 + - uid: 6308 components: - type: Transform pos: 1.5,-158.5 parent: 2 - - uid: 13797 + - uid: 6309 components: - type: Transform pos: 1.5,-159.5 parent: 2 - - uid: 13798 + - uid: 6310 components: - type: Transform pos: 1.5,-160.5 parent: 2 - - uid: 13799 + - uid: 6311 components: - type: Transform pos: 1.5,-161.5 parent: 2 - - uid: 13800 + - uid: 6312 components: - type: Transform pos: 1.5,-162.5 parent: 2 - - uid: 13801 + - uid: 6313 components: - type: Transform pos: -0.5,-162.5 parent: 2 - - uid: 13802 + - uid: 6314 components: - type: Transform pos: -0.5,-161.5 parent: 2 - - uid: 13803 + - uid: 6315 components: - type: Transform pos: -0.5,-160.5 parent: 2 - - uid: 13804 + - uid: 6316 components: - type: Transform pos: -0.5,-159.5 parent: 2 - - uid: 13805 + - uid: 6317 components: - type: Transform pos: -0.5,-158.5 parent: 2 - - uid: 13806 + - uid: 6318 components: - type: Transform pos: -0.5,-157.5 parent: 2 - - uid: 13807 + - uid: 6319 components: - type: Transform pos: -0.5,-156.5 parent: 2 - - uid: 13808 + - uid: 6320 components: - type: Transform pos: -0.5,-155.5 parent: 2 - - uid: 13809 + - uid: 6321 components: - type: Transform pos: -0.5,-154.5 parent: 2 - - uid: 13810 + - uid: 6322 components: - type: Transform pos: -0.5,-153.5 parent: 2 - - uid: 13811 + - uid: 6323 components: - type: Transform pos: -0.5,-152.5 parent: 2 - - uid: 13812 + - uid: 6324 components: - type: Transform pos: -0.5,-151.5 parent: 2 - - uid: 13813 + - uid: 6325 components: - type: Transform pos: -0.5,-150.5 parent: 2 - - uid: 13814 + - uid: 6326 components: - type: Transform pos: -0.5,-149.5 parent: 2 - - uid: 13815 + - uid: 6327 components: - type: Transform pos: -0.5,-278.5 parent: 2 - - uid: 13816 + - uid: 6328 components: - type: Transform pos: -0.5,-279.5 parent: 2 - - uid: 13817 + - uid: 6329 components: - type: Transform pos: -0.5,-280.5 parent: 2 - - uid: 13818 + - uid: 6330 components: - type: Transform pos: -0.5,-281.5 parent: 2 - - uid: 13822 + - uid: 6331 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-164.5 parent: 2 - - uid: 13823 + - uid: 6332 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-165.5 parent: 2 - - uid: 13824 + - uid: 6333 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-166.5 parent: 2 - - uid: 13825 + - uid: 6334 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-167.5 parent: 2 - - uid: 13826 + - uid: 6335 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-168.5 parent: 2 - - uid: 13827 + - uid: 6336 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-169.5 parent: 2 - - uid: 13828 + - uid: 6337 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-170.5 parent: 2 - - uid: 13829 + - uid: 6338 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-171.5 parent: 2 - - uid: 13830 + - uid: 6339 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-172.5 parent: 2 - - uid: 13831 + - uid: 6340 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-173.5 parent: 2 - - uid: 13832 + - uid: 6341 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-174.5 parent: 2 - - uid: 13833 + - uid: 6342 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-175.5 parent: 2 - - uid: 13834 + - uid: 6343 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-176.5 parent: 2 - - uid: 13835 + - uid: 6344 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-177.5 parent: 2 - - uid: 13836 + - uid: 6345 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-178.5 parent: 2 - - uid: 13838 + - uid: 6346 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-176.5 parent: 2 - - uid: 13839 + - uid: 6347 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-176.5 parent: 2 - - uid: 13840 + - uid: 6348 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-176.5 parent: 2 - - uid: 13841 + - uid: 6349 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-176.5 parent: 2 - - uid: 13843 + - uid: 6350 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-178.5 parent: 2 - - uid: 13844 + - uid: 6351 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-177.5 parent: 2 - - uid: 13845 + - uid: 6352 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-175.5 parent: 2 - - uid: 13846 + - uid: 6353 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-174.5 parent: 2 - - uid: 13847 + - uid: 6354 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-173.5 parent: 2 - - uid: 13848 + - uid: 6355 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-172.5 parent: 2 - - uid: 13849 + - uid: 6356 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-171.5 parent: 2 - - uid: 13850 + - uid: 6357 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-170.5 parent: 2 - - uid: 13851 + - uid: 6358 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-169.5 parent: 2 - - uid: 13852 + - uid: 6359 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-168.5 parent: 2 - - uid: 13853 + - uid: 6360 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-167.5 parent: 2 - - uid: 13854 + - uid: 6361 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-166.5 parent: 2 - - uid: 13855 + - uid: 6362 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-165.5 parent: 2 - - uid: 13856 + - uid: 6363 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-164.5 parent: 2 - - uid: 13857 + - uid: 6364 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-163.5 parent: 2 - - uid: 13858 + - uid: 6365 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-179.5 parent: 2 - - uid: 13859 + - uid: 6366 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-180.5 parent: 2 - - uid: 13860 + - uid: 6367 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-181.5 parent: 2 - - uid: 13861 + - uid: 6368 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-182.5 parent: 2 - - uid: 13862 + - uid: 6369 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-183.5 parent: 2 - - uid: 13863 + - uid: 6370 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-184.5 parent: 2 - - uid: 13864 + - uid: 6371 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-185.5 parent: 2 - - uid: 13865 + - uid: 6372 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-186.5 parent: 2 - - uid: 13866 + - uid: 6373 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-187.5 parent: 2 - - uid: 13867 + - uid: 6374 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-188.5 parent: 2 - - uid: 13868 + - uid: 6375 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-189.5 parent: 2 - - uid: 13869 + - uid: 6376 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-189.5 parent: 2 - - uid: 13870 + - uid: 6377 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-188.5 parent: 2 - - uid: 13871 + - uid: 6378 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-187.5 parent: 2 - - uid: 13872 + - uid: 6379 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-186.5 parent: 2 - - uid: 13873 + - uid: 6380 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-185.5 parent: 2 - - uid: 13874 + - uid: 6381 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-184.5 parent: 2 - - uid: 13875 + - uid: 6382 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-183.5 parent: 2 - - uid: 13876 + - uid: 6383 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-182.5 parent: 2 - - uid: 13877 + - uid: 6384 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-181.5 parent: 2 - - uid: 13878 + - uid: 6385 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-180.5 parent: 2 - - uid: 13879 + - uid: 6386 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-179.5 parent: 2 - - uid: 13880 + - uid: 6387 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-190.5 parent: 2 - - uid: 13881 + - uid: 6388 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-191.5 parent: 2 - - uid: 13882 + - uid: 6389 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-192.5 parent: 2 - - uid: 13883 + - uid: 6390 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-193.5 parent: 2 - - uid: 13884 + - uid: 6391 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-194.5 parent: 2 - - uid: 13885 + - uid: 6392 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-195.5 parent: 2 - - uid: 13886 + - uid: 6393 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-196.5 parent: 2 - - uid: 13887 + - uid: 6394 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-197.5 parent: 2 - - uid: 13888 + - uid: 6395 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-198.5 parent: 2 - - uid: 13889 + - uid: 6396 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-199.5 parent: 2 - - uid: 13890 + - uid: 6397 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-200.5 parent: 2 - - uid: 13891 + - uid: 6398 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-201.5 parent: 2 - - uid: 13892 + - uid: 6399 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-202.5 parent: 2 - - uid: 13893 + - uid: 6400 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-203.5 parent: 2 - - uid: 13894 + - uid: 6401 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-204.5 parent: 2 - - uid: 13895 + - uid: 6402 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-205.5 parent: 2 - - uid: 13896 + - uid: 6403 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-205.5 parent: 2 - - uid: 13897 + - uid: 6404 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-204.5 parent: 2 - - uid: 13898 + - uid: 6405 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-203.5 parent: 2 - - uid: 13899 + - uid: 6406 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-202.5 parent: 2 - - uid: 13900 + - uid: 6407 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-201.5 parent: 2 - - uid: 13901 + - uid: 6408 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-200.5 parent: 2 - - uid: 13902 + - uid: 6409 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-199.5 parent: 2 - - uid: 13903 + - uid: 6410 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-198.5 parent: 2 - - uid: 13904 + - uid: 6411 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-197.5 parent: 2 - - uid: 13905 + - uid: 6412 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-196.5 parent: 2 - - uid: 13906 + - uid: 6413 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-195.5 parent: 2 - - uid: 13907 + - uid: 6414 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-194.5 parent: 2 - - uid: 13908 + - uid: 6415 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-193.5 parent: 2 - - uid: 13909 + - uid: 6416 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-192.5 parent: 2 - - uid: 13910 + - uid: 6417 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-191.5 parent: 2 - - uid: 13911 + - uid: 6418 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-190.5 parent: 2 - - uid: 13912 + - uid: 6419 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-206.5 parent: 2 - - uid: 13913 + - uid: 6420 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-207.5 parent: 2 - - uid: 13914 + - uid: 6421 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-208.5 parent: 2 - - uid: 13915 + - uid: 6422 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-209.5 parent: 2 - - uid: 13916 + - uid: 6423 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-210.5 parent: 2 - - uid: 13917 + - uid: 6424 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-211.5 parent: 2 - - uid: 13918 + - uid: 6425 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-212.5 parent: 2 - - uid: 13919 + - uid: 6426 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-213.5 parent: 2 - - uid: 13920 + - uid: 6427 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-214.5 parent: 2 - - uid: 13921 + - uid: 6428 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-215.5 parent: 2 - - uid: 13922 + - uid: 6429 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-216.5 parent: 2 - - uid: 13923 + - uid: 6430 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-217.5 parent: 2 - - uid: 13924 + - uid: 6431 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-217.5 parent: 2 - - uid: 13925 + - uid: 6432 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-216.5 parent: 2 - - uid: 13926 + - uid: 6433 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-215.5 parent: 2 - - uid: 13927 + - uid: 6434 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-214.5 parent: 2 - - uid: 13928 + - uid: 6435 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-213.5 parent: 2 - - uid: 13929 + - uid: 6436 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-212.5 parent: 2 - - uid: 13930 + - uid: 6437 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-211.5 parent: 2 - - uid: 13931 + - uid: 6438 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-210.5 parent: 2 - - uid: 13932 + - uid: 6439 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-209.5 parent: 2 - - uid: 13933 + - uid: 6440 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-208.5 parent: 2 - - uid: 13934 + - uid: 6441 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-207.5 parent: 2 - - uid: 13935 + - uid: 6442 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-206.5 parent: 2 - - uid: 13936 + - uid: 6443 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-218.5 parent: 2 - - uid: 13937 + - uid: 6444 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-219.5 parent: 2 - - uid: 13938 + - uid: 6445 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-220.5 parent: 2 - - uid: 13939 + - uid: 6446 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-221.5 parent: 2 - - uid: 13940 + - uid: 6447 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-222.5 parent: 2 - - uid: 13941 + - uid: 6448 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-223.5 parent: 2 - - uid: 13942 + - uid: 6449 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-224.5 parent: 2 - - uid: 13943 + - uid: 6450 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-225.5 parent: 2 - - uid: 13944 + - uid: 6451 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-226.5 parent: 2 - - uid: 13945 + - uid: 6452 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-227.5 parent: 2 - - uid: 13946 + - uid: 6453 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-228.5 parent: 2 - - uid: 13947 + - uid: 6454 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-229.5 parent: 2 - - uid: 13948 + - uid: 6455 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-230.5 parent: 2 - - uid: 13949 + - uid: 6456 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-231.5 parent: 2 - - uid: 13950 + - uid: 6457 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-232.5 parent: 2 - - uid: 13951 + - uid: 6458 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-233.5 parent: 2 - - uid: 13952 + - uid: 6459 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-234.5 parent: 2 - - uid: 13953 + - uid: 6460 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-235.5 parent: 2 - - uid: 13954 + - uid: 6461 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-236.5 parent: 2 - - uid: 13955 + - uid: 6462 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-237.5 parent: 2 - - uid: 13956 + - uid: 6463 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-238.5 parent: 2 - - uid: 13957 + - uid: 6464 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-239.5 parent: 2 - - uid: 13958 + - uid: 6465 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-240.5 parent: 2 - - uid: 13959 + - uid: 6466 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-241.5 parent: 2 - - uid: 13960 + - uid: 6467 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-242.5 parent: 2 - - uid: 13963 + - uid: 6468 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-242.5 parent: 2 - - uid: 13964 + - uid: 6469 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-241.5 parent: 2 - - uid: 13965 + - uid: 6470 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-240.5 parent: 2 - - uid: 13966 + - uid: 6471 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-239.5 parent: 2 - - uid: 13967 + - uid: 6472 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-238.5 parent: 2 - - uid: 13968 + - uid: 6473 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-237.5 parent: 2 - - uid: 13969 + - uid: 6474 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-236.5 parent: 2 - - uid: 13970 + - uid: 6475 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-235.5 parent: 2 - - uid: 13971 + - uid: 6476 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-234.5 parent: 2 - - uid: 13972 + - uid: 6477 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-233.5 parent: 2 - - uid: 13973 + - uid: 6478 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-232.5 parent: 2 - - uid: 13974 + - uid: 6479 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-231.5 parent: 2 - - uid: 13975 + - uid: 6480 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-230.5 parent: 2 - - uid: 13976 + - uid: 6481 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-229.5 parent: 2 - - uid: 13977 + - uid: 6482 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-228.5 parent: 2 - - uid: 13978 + - uid: 6483 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-227.5 parent: 2 - - uid: 13979 + - uid: 6484 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-226.5 parent: 2 - - uid: 13980 + - uid: 6485 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-225.5 parent: 2 - - uid: 13981 + - uid: 6486 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-224.5 parent: 2 - - uid: 13982 + - uid: 6487 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-223.5 parent: 2 - - uid: 13983 + - uid: 6488 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-222.5 parent: 2 - - uid: 13984 + - uid: 6489 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-221.5 parent: 2 - - uid: 13985 + - uid: 6490 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-220.5 parent: 2 - - uid: 13986 + - uid: 6491 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-219.5 parent: 2 - - uid: 13987 + - uid: 6492 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-218.5 parent: 2 - - uid: 14011 + - uid: 6493 components: - type: Transform pos: 15.5,-107.5 parent: 2 - - uid: 14014 + - uid: 6494 components: - type: Transform pos: 15.5,-112.5 parent: 2 - - uid: 14018 + - uid: 6495 components: - type: Transform pos: -9.5,-223.5 parent: 2 - - uid: 14019 + - uid: 6496 components: - type: Transform pos: -9.5,-272.5 parent: 2 - - uid: 14028 + - uid: 6497 components: - type: Transform pos: -3.5,-286.5 parent: 2 - - uid: 14031 + - uid: 6498 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-283.5 parent: 2 - - uid: 14032 + - uid: 6499 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-284.5 parent: 2 - - uid: 14034 + - uid: 6500 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-285.5 parent: 2 - - uid: 14035 + - uid: 6501 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-285.5 parent: 2 - - uid: 14051 + - uid: 6502 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-262.5 parent: 2 - - uid: 14052 + - uid: 6503 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-263.5 parent: 2 - - uid: 14053 + - uid: 6504 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-264.5 parent: 2 - - uid: 14054 + - uid: 6505 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-265.5 parent: 2 - - uid: 14055 + - uid: 6506 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-266.5 parent: 2 - - uid: 14056 + - uid: 6507 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-267.5 parent: 2 - - uid: 14057 + - uid: 6508 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-268.5 parent: 2 - - uid: 14058 + - uid: 6509 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-269.5 parent: 2 - - uid: 14059 + - uid: 6510 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-270.5 parent: 2 - - uid: 14060 + - uid: 6511 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-271.5 parent: 2 - - uid: 14061 + - uid: 6512 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-272.5 parent: 2 - - uid: 14062 + - uid: 6513 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-273.5 parent: 2 - - uid: 14063 + - uid: 6514 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-273.5 parent: 2 - - uid: 14064 + - uid: 6515 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-272.5 parent: 2 - - uid: 14065 + - uid: 6516 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-271.5 parent: 2 - - uid: 14066 + - uid: 6517 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-270.5 parent: 2 - - uid: 14067 + - uid: 6518 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-269.5 parent: 2 - - uid: 14068 + - uid: 6519 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-268.5 parent: 2 - - uid: 14069 + - uid: 6520 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-267.5 parent: 2 - - uid: 14070 + - uid: 6521 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-266.5 parent: 2 - - uid: 14071 + - uid: 6522 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-265.5 parent: 2 - - uid: 14072 + - uid: 6523 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-264.5 parent: 2 - - uid: 14073 + - uid: 6524 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-263.5 parent: 2 - - uid: 14074 + - uid: 6525 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-262.5 parent: 2 - - uid: 14075 + - uid: 6526 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-261.5 parent: 2 - - uid: 14080 + - uid: 6527 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-277.5 parent: 2 - - uid: 14081 + - uid: 6528 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-275.5 parent: 2 - - uid: 14082 + - uid: 6529 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-276.5 parent: 2 - - uid: 14083 + - uid: 6530 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-277.5 parent: 2 - - uid: 14084 + - uid: 6531 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-274.5 parent: 2 - - uid: 14104 + - uid: 6532 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-279.5 parent: 2 - - uid: 14105 + - uid: 6533 components: - type: Transform pos: -3.5,-287.5 parent: 2 - - uid: 14107 + - uid: 6534 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-285.5 parent: 2 - - uid: 14108 + - uid: 6535 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-286.5 parent: 2 - - uid: 14109 + - uid: 6536 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-287.5 parent: 2 - - uid: 14110 + - uid: 6537 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-288.5 parent: 2 - - uid: 14111 + - uid: 6538 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-289.5 parent: 2 - - uid: 14112 + - uid: 6539 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-290.5 parent: 2 - - uid: 14113 + - uid: 6540 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-291.5 parent: 2 - - uid: 14114 + - uid: 6541 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-292.5 parent: 2 - - uid: 14115 + - uid: 6542 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-293.5 parent: 2 - - uid: 14116 + - uid: 6543 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-294.5 parent: 2 - - uid: 14117 + - uid: 6544 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-295.5 parent: 2 - - uid: 14118 + - uid: 6545 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-296.5 parent: 2 - - uid: 14119 + - uid: 6546 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-297.5 parent: 2 - - uid: 14120 + - uid: 6547 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-298.5 parent: 2 - - uid: 14121 + - uid: 6548 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-298.5 parent: 2 - - uid: 14122 + - uid: 6549 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-297.5 parent: 2 - - uid: 14123 + - uid: 6550 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-296.5 parent: 2 - - uid: 14124 + - uid: 6551 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-295.5 parent: 2 - - uid: 14125 + - uid: 6552 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-294.5 parent: 2 - - uid: 14126 + - uid: 6553 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-293.5 parent: 2 - - uid: 14127 + - uid: 6554 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-292.5 parent: 2 - - uid: 14128 + - uid: 6555 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-291.5 parent: 2 - - uid: 14129 + - uid: 6556 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-290.5 parent: 2 - - uid: 14130 + - uid: 6557 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-289.5 parent: 2 - - uid: 14131 + - uid: 6558 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-288.5 parent: 2 - - uid: 14132 + - uid: 6559 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-287.5 parent: 2 - - uid: 14133 + - uid: 6560 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-286.5 parent: 2 - - uid: 14135 + - uid: 6561 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-299.5 parent: 2 - - uid: 14136 + - uid: 6562 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-300.5 parent: 2 - - uid: 14137 + - uid: 6563 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-301.5 parent: 2 - - uid: 14138 + - uid: 6564 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-302.5 parent: 2 - - uid: 14140 + - uid: 6565 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-303.5 parent: 2 - - uid: 14141 + - uid: 6566 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-303.5 parent: 2 - - uid: 14143 + - uid: 6567 components: - type: Transform pos: 1.5,-299.5 parent: 2 - - uid: 14144 + - uid: 6568 components: - type: Transform pos: 1.5,-300.5 parent: 2 - - uid: 14145 + - uid: 6569 components: - type: Transform pos: 1.5,-301.5 parent: 2 - - uid: 14146 + - uid: 6570 components: - type: Transform pos: 1.5,-302.5 parent: 2 - - uid: 14147 + - uid: 6571 components: - type: Transform pos: 1.5,-303.5 parent: 2 - - uid: 14148 + - uid: 6572 components: - type: Transform pos: 1.5,-304.5 parent: 2 - - uid: 14149 + - uid: 6573 components: - type: Transform pos: 1.5,-305.5 parent: 2 - - uid: 14150 + - uid: 6574 components: - type: Transform pos: 1.5,-306.5 parent: 2 - - uid: 14151 + - uid: 6575 components: - type: Transform pos: 1.5,-307.5 parent: 2 - - uid: 14152 + - uid: 6576 components: - type: Transform pos: 1.5,-308.5 parent: 2 - - uid: 14153 + - uid: 6577 components: - type: Transform pos: 1.5,-309.5 parent: 2 - - uid: 14154 + - uid: 6578 components: - type: Transform pos: 1.5,-310.5 parent: 2 - - uid: 14155 + - uid: 6579 components: - type: Transform pos: 1.5,-311.5 parent: 2 - - uid: 14156 + - uid: 6580 components: - type: Transform pos: 1.5,-312.5 parent: 2 - - uid: 14157 + - uid: 6581 components: - type: Transform pos: 1.5,-313.5 parent: 2 - - uid: 14158 + - uid: 6582 components: - type: Transform pos: 1.5,-314.5 parent: 2 - - uid: 14159 + - uid: 6583 components: - type: Transform pos: 1.5,-315.5 parent: 2 - - uid: 14160 + - uid: 6584 components: - type: Transform pos: 1.5,-316.5 parent: 2 - - uid: 14161 + - uid: 6585 components: - type: Transform pos: 1.5,-317.5 parent: 2 - - uid: 14162 + - uid: 6586 components: - type: Transform pos: -0.5,-317.5 parent: 2 - - uid: 14163 + - uid: 6587 components: - type: Transform pos: -0.5,-316.5 parent: 2 - - uid: 14164 + - uid: 6588 components: - type: Transform pos: -0.5,-315.5 parent: 2 - - uid: 14165 + - uid: 6589 components: - type: Transform pos: -0.5,-314.5 parent: 2 - - uid: 14166 + - uid: 6590 components: - type: Transform pos: -0.5,-313.5 parent: 2 - - uid: 14167 + - uid: 6591 components: - type: Transform pos: -0.5,-312.5 parent: 2 - - uid: 14168 + - uid: 6592 components: - type: Transform pos: -0.5,-311.5 parent: 2 - - uid: 14169 + - uid: 6593 components: - type: Transform pos: -0.5,-310.5 parent: 2 - - uid: 14170 + - uid: 6594 components: - type: Transform pos: -0.5,-309.5 parent: 2 - - uid: 14171 + - uid: 6595 components: - type: Transform pos: -0.5,-308.5 parent: 2 - - uid: 14172 + - uid: 6596 components: - type: Transform pos: -0.5,-307.5 parent: 2 - - uid: 14173 + - uid: 6597 components: - type: Transform pos: -0.5,-306.5 parent: 2 - - uid: 14174 + - uid: 6598 components: - type: Transform pos: -0.5,-305.5 parent: 2 - - uid: 14175 + - uid: 6599 components: - type: Transform pos: -0.5,-304.5 parent: 2 - - uid: 14176 + - uid: 6600 components: - type: Transform pos: 1.5,-319.5 parent: 2 - - uid: 14177 + - uid: 6601 components: - type: Transform pos: 1.5,-320.5 parent: 2 - - uid: 14178 + - uid: 6602 components: - type: Transform pos: 1.5,-321.5 parent: 2 - - uid: 14179 + - uid: 6603 components: - type: Transform pos: 1.5,-322.5 parent: 2 - - uid: 14180 + - uid: 6604 components: - type: Transform pos: 1.5,-323.5 parent: 2 - - uid: 14181 + - uid: 6605 components: - type: Transform pos: 1.5,-324.5 parent: 2 - - uid: 14182 + - uid: 6606 components: - type: Transform pos: 1.5,-325.5 parent: 2 - - uid: 14183 + - uid: 6607 components: - type: Transform pos: 1.5,-326.5 parent: 2 - - uid: 14184 + - uid: 6608 components: - type: Transform pos: 1.5,-327.5 parent: 2 - - uid: 14185 + - uid: 6609 components: - type: Transform pos: 1.5,-328.5 parent: 2 - - uid: 14186 + - uid: 6610 components: - type: Transform pos: 1.5,-329.5 parent: 2 - - uid: 14187 + - uid: 6611 components: - type: Transform pos: 1.5,-330.5 parent: 2 - - uid: 14188 + - uid: 6612 components: - type: Transform pos: -0.5,-330.5 parent: 2 - - uid: 14189 + - uid: 6613 components: - type: Transform pos: -0.5,-329.5 parent: 2 - - uid: 14190 + - uid: 6614 components: - type: Transform pos: -0.5,-328.5 parent: 2 - - uid: 14191 + - uid: 6615 components: - type: Transform pos: -0.5,-327.5 parent: 2 - - uid: 14192 + - uid: 6616 components: - type: Transform pos: -0.5,-326.5 parent: 2 - - uid: 14193 + - uid: 6617 components: - type: Transform pos: -0.5,-325.5 parent: 2 - - uid: 14194 + - uid: 6618 components: - type: Transform pos: -0.5,-324.5 parent: 2 - - uid: 14195 + - uid: 6619 components: - type: Transform pos: -0.5,-323.5 parent: 2 - - uid: 14196 + - uid: 6620 components: - type: Transform pos: -0.5,-322.5 parent: 2 - - uid: 14197 + - uid: 6621 components: - type: Transform pos: -0.5,-321.5 parent: 2 - - uid: 14198 + - uid: 6622 components: - type: Transform pos: -0.5,-320.5 parent: 2 - - uid: 14199 + - uid: 6623 components: - type: Transform pos: -0.5,-319.5 parent: 2 - - uid: 14200 + - uid: 6624 components: - type: Transform pos: -0.5,-318.5 parent: 2 - - uid: 14202 + - uid: 6625 components: - type: Transform pos: -0.5,-331.5 parent: 2 - - uid: 14203 + - uid: 6626 components: - type: Transform pos: -0.5,-332.5 parent: 2 - - uid: 14204 + - uid: 6627 components: - type: Transform pos: -0.5,-333.5 parent: 2 - - uid: 14205 + - uid: 6628 components: - type: Transform pos: -0.5,-334.5 parent: 2 - - uid: 14206 + - uid: 6629 components: - type: Transform pos: -0.5,-335.5 parent: 2 - - uid: 14207 + - uid: 6630 components: - type: Transform pos: -0.5,-336.5 parent: 2 - - uid: 14208 + - uid: 6631 components: - type: Transform pos: -0.5,-337.5 parent: 2 - - uid: 14209 + - uid: 6632 components: - type: Transform pos: -0.5,-338.5 parent: 2 - - uid: 14211 + - uid: 6633 components: - type: Transform pos: 1.5,-339.5 parent: 2 - - uid: 14212 + - uid: 6634 components: - type: Transform pos: 1.5,-338.5 parent: 2 - - uid: 14213 + - uid: 6635 components: - type: Transform pos: 1.5,-337.5 parent: 2 - - uid: 14214 + - uid: 6636 components: - type: Transform pos: 1.5,-336.5 parent: 2 - - uid: 14215 + - uid: 6637 components: - type: Transform pos: 1.5,-335.5 parent: 2 - - uid: 14216 + - uid: 6638 components: - type: Transform pos: 1.5,-334.5 parent: 2 - - uid: 14217 + - uid: 6639 components: - type: Transform pos: 1.5,-333.5 parent: 2 - - uid: 14218 + - uid: 6640 components: - type: Transform pos: 1.5,-332.5 parent: 2 - - uid: 14219 + - uid: 6641 components: - type: Transform pos: 1.5,-331.5 parent: 2 - - uid: 14222 + - uid: 6642 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-340.5 parent: 2 - - uid: 14224 + - uid: 6643 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-339.5 parent: 2 - - uid: 14226 + - uid: 6644 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-340.5 parent: 2 - - uid: 14719 + - uid: 6645 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-248.5 parent: 2 - - uid: 15302 + - uid: 6646 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 2 - - uid: 15303 + - uid: 6647 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 parent: 2 - - uid: 15304 + - uid: 6648 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 2 - - uid: 15305 + - uid: 6649 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-4.5 parent: 2 - - uid: 15306 + - uid: 6650 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-4.5 parent: 2 - - uid: 15309 + - uid: 6651 components: - type: Transform pos: 0.5,-5.5 parent: 2 - - uid: 15310 + - uid: 6652 components: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 15311 + - uid: 6653 components: - type: Transform pos: 0.5,-7.5 parent: 2 - - uid: 15312 + - uid: 6654 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 15313 + - uid: 6655 components: - type: Transform pos: 0.5,-9.5 parent: 2 - - uid: 15314 + - uid: 6656 components: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 15315 + - uid: 6657 components: - type: Transform pos: 0.5,-11.5 parent: 2 - - uid: 15316 + - uid: 6658 components: - type: Transform pos: 0.5,-12.5 parent: 2 - - uid: 15317 + - uid: 6659 components: - type: Transform pos: 0.5,-13.5 parent: 2 - - uid: 15318 + - uid: 6660 components: - type: Transform pos: 0.5,-14.5 parent: 2 - - uid: 15319 + - uid: 6661 components: - type: Transform pos: 0.5,-15.5 parent: 2 - - uid: 15320 + - uid: 6662 components: - type: Transform pos: 0.5,-16.5 parent: 2 - - uid: 15321 + - uid: 6663 components: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 15322 + - uid: 6664 components: - type: Transform pos: 0.5,-18.5 parent: 2 - - uid: 15323 + - uid: 6665 components: - type: Transform pos: 0.5,-19.5 parent: 2 - - uid: 15324 + - uid: 6666 components: - type: Transform pos: 0.5,-20.5 parent: 2 - - uid: 15325 + - uid: 6667 components: - type: Transform pos: 0.5,-21.5 parent: 2 - - uid: 15326 + - uid: 6668 components: - type: Transform pos: 0.5,-22.5 parent: 2 - - uid: 15327 + - uid: 6669 components: - type: Transform pos: 0.5,-23.5 parent: 2 - - uid: 15328 + - uid: 6670 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 15329 + - uid: 6671 components: - type: Transform pos: 0.5,-25.5 parent: 2 - - uid: 15330 + - uid: 6672 components: - type: Transform pos: 0.5,-26.5 parent: 2 - - uid: 15331 + - uid: 6673 components: - type: Transform pos: 0.5,-27.5 parent: 2 - - uid: 15332 + - uid: 6674 components: - type: Transform pos: 0.5,-28.5 parent: 2 - - uid: 15338 + - uid: 6675 components: - type: Transform pos: 0.5,-29.5 parent: 2 - - uid: 15339 + - uid: 6676 components: - type: Transform pos: 0.5,-30.5 parent: 2 - - uid: 15340 + - uid: 6677 components: - type: Transform pos: 0.5,-31.5 parent: 2 - - uid: 15341 + - uid: 6678 components: - type: Transform pos: 0.5,-33.5 parent: 2 - - uid: 15342 + - uid: 6679 components: - type: Transform pos: 0.5,-34.5 parent: 2 - - uid: 15343 + - uid: 6680 components: - type: Transform pos: 0.5,-35.5 parent: 2 - - uid: 15344 + - uid: 6681 components: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 15345 + - uid: 6682 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 15346 + - uid: 6683 components: - type: Transform pos: 0.5,-39.5 parent: 2 - - uid: 15347 + - uid: 6684 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 15348 + - uid: 6685 components: - type: Transform pos: 0.5,-41.5 parent: 2 - - uid: 15349 + - uid: 6686 components: - type: Transform pos: 0.5,-42.5 parent: 2 - - uid: 15350 + - uid: 6687 components: - type: Transform pos: 0.5,-43.5 parent: 2 - - uid: 15351 + - uid: 6688 components: - type: Transform pos: 0.5,-44.5 parent: 2 - - uid: 15352 + - uid: 6689 components: - type: Transform pos: 0.5,-45.5 parent: 2 - - uid: 15353 + - uid: 6690 components: - type: Transform pos: 0.5,-46.5 parent: 2 - - uid: 15354 + - uid: 6691 components: - type: Transform pos: 0.5,-47.5 parent: 2 - - uid: 15355 + - uid: 6692 components: - type: Transform pos: 0.5,-48.5 parent: 2 - - uid: 15356 + - uid: 6693 components: - type: Transform pos: 0.5,-49.5 parent: 2 - - uid: 15357 + - uid: 6694 components: - type: Transform pos: 0.5,-50.5 parent: 2 - - uid: 15358 + - uid: 6695 components: - type: Transform pos: 0.5,-51.5 parent: 2 - - uid: 15359 + - uid: 6696 components: - type: Transform pos: 0.5,-52.5 parent: 2 - - uid: 15360 + - uid: 6697 components: - type: Transform pos: 0.5,-53.5 parent: 2 - - uid: 15361 + - uid: 6698 components: - type: Transform pos: 0.5,-54.5 parent: 2 - - uid: 15363 + - uid: 6699 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-32.5 parent: 2 - - uid: 15366 + - uid: 6700 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-69.5 parent: 2 - - uid: 15367 + - uid: 6701 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-56.5 parent: 2 - - uid: 15370 + - uid: 6702 components: - type: Transform pos: 0.5,-68.5 parent: 2 - - uid: 15371 + - uid: 6703 components: - type: Transform pos: 0.5,-67.5 parent: 2 - - uid: 15372 + - uid: 6704 components: - type: Transform pos: 0.5,-66.5 parent: 2 - - uid: 15373 + - uid: 6705 components: - type: Transform pos: 0.5,-65.5 parent: 2 - - uid: 15374 + - uid: 6706 components: - type: Transform pos: 0.5,-64.5 parent: 2 - - uid: 15375 + - uid: 6707 components: - type: Transform pos: 0.5,-63.5 parent: 2 - - uid: 15376 + - uid: 6708 components: - type: Transform pos: 0.5,-62.5 parent: 2 - - uid: 15377 + - uid: 6709 components: - type: Transform pos: 0.5,-61.5 parent: 2 - - uid: 15378 + - uid: 6710 components: - type: Transform pos: 0.5,-60.5 parent: 2 - - uid: 15379 + - uid: 6711 components: - type: Transform pos: 0.5,-59.5 parent: 2 - - uid: 15380 + - uid: 6712 components: - type: Transform pos: 0.5,-58.5 parent: 2 - - uid: 15381 + - uid: 6713 components: - type: Transform pos: 0.5,-57.5 parent: 2 - - uid: 15382 + - uid: 6714 components: - type: Transform pos: 0.5,-55.5 parent: 2 - - uid: 15383 + - uid: 6715 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 15384 + - uid: 6716 components: - type: Transform pos: 0.5,-71.5 parent: 2 - - uid: 15385 + - uid: 6717 components: - type: Transform pos: 0.5,-72.5 parent: 2 - - uid: 15386 + - uid: 6718 components: - type: Transform pos: 0.5,-73.5 parent: 2 - - uid: 15387 + - uid: 6719 components: - type: Transform pos: 0.5,-74.5 parent: 2 - - uid: 15388 + - uid: 6720 components: - type: Transform pos: 0.5,-75.5 parent: 2 - - uid: 15389 + - uid: 6721 components: - type: Transform pos: 0.5,-76.5 parent: 2 - - uid: 15390 + - uid: 6722 components: - type: Transform pos: 0.5,-77.5 parent: 2 - - uid: 15391 + - uid: 6723 components: - type: Transform pos: 0.5,-78.5 parent: 2 - - uid: 15392 + - uid: 6724 components: - type: Transform pos: 0.5,-79.5 parent: 2 - - uid: 15393 + - uid: 6725 components: - type: Transform pos: 0.5,-80.5 parent: 2 - - uid: 15394 + - uid: 6726 components: - type: Transform pos: 0.5,-81.5 parent: 2 - - uid: 15397 + - uid: 6727 components: - type: Transform pos: 0.5,-82.5 parent: 2 - - uid: 15398 + - uid: 6728 components: - type: Transform pos: 0.5,-83.5 parent: 2 - - uid: 15401 + - uid: 6729 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-85.5 parent: 2 - - uid: 15402 + - uid: 6730 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-86.5 parent: 2 - - uid: 15403 + - uid: 6731 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-87.5 parent: 2 - - uid: 15404 + - uid: 6732 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-88.5 parent: 2 - - uid: 15405 + - uid: 6733 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-89.5 parent: 2 - - uid: 15406 + - uid: 6734 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-90.5 parent: 2 - - uid: 15407 + - uid: 6735 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-91.5 parent: 2 - - uid: 15408 + - uid: 6736 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-92.5 parent: 2 - - uid: 15409 + - uid: 6737 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-93.5 parent: 2 - - uid: 15410 + - uid: 6738 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-94.5 parent: 2 - - uid: 15411 + - uid: 6739 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-95.5 parent: 2 - - uid: 15412 + - uid: 6740 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-96.5 parent: 2 - - uid: 15414 + - uid: 6741 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-97.5 parent: 2 - - uid: 15415 + - uid: 6742 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-97.5 parent: 2 - - uid: 15416 + - uid: 6743 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-97.5 parent: 2 - - uid: 15417 + - uid: 6744 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-97.5 parent: 2 - - uid: 15418 + - uid: 6745 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-97.5 parent: 2 - - uid: 15420 + - uid: 6746 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-98.5 parent: 2 - - uid: 15421 + - uid: 6747 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-99.5 parent: 2 - - uid: 15422 + - uid: 6748 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-100.5 parent: 2 - - uid: 15423 + - uid: 6749 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-101.5 parent: 2 - - uid: 15424 + - uid: 6750 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-102.5 parent: 2 - - uid: 15425 + - uid: 6751 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-103.5 parent: 2 - - uid: 15426 + - uid: 6752 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-104.5 parent: 2 - - uid: 15427 + - uid: 6753 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-105.5 parent: 2 - - uid: 15428 + - uid: 6754 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-106.5 parent: 2 - - uid: 15429 + - uid: 6755 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-107.5 parent: 2 - - uid: 15433 + - uid: 6756 components: - type: Transform pos: 0.5,-109.5 parent: 2 - - uid: 15434 + - uid: 6757 components: - type: Transform pos: 0.5,-110.5 parent: 2 - - uid: 15435 + - uid: 6758 components: - type: Transform pos: 0.5,-111.5 parent: 2 - - uid: 15436 + - uid: 6759 components: - type: Transform pos: 0.5,-112.5 parent: 2 - - uid: 15437 + - uid: 6760 components: - type: Transform pos: 0.5,-113.5 parent: 2 - - uid: 15438 + - uid: 6761 components: - type: Transform pos: 0.5,-114.5 parent: 2 - - uid: 15439 + - uid: 6762 components: - type: Transform pos: 0.5,-115.5 parent: 2 - - uid: 15440 + - uid: 6763 components: - type: Transform pos: 0.5,-116.5 parent: 2 - - uid: 15441 + - uid: 6764 components: - type: Transform pos: 0.5,-117.5 parent: 2 - - uid: 15442 + - uid: 6765 components: - type: Transform pos: 0.5,-118.5 parent: 2 - - uid: 15443 + - uid: 6766 components: - type: Transform pos: 0.5,-119.5 parent: 2 - - uid: 15444 + - uid: 6767 components: - type: Transform pos: 0.5,-120.5 parent: 2 - - uid: 15445 + - uid: 6768 components: - type: Transform pos: 0.5,-121.5 parent: 2 - - uid: 15446 + - uid: 6769 components: - type: Transform pos: 0.5,-122.5 parent: 2 - - uid: 15447 + - uid: 6770 components: - type: Transform pos: 0.5,-123.5 parent: 2 - - uid: 15448 + - uid: 6771 components: - type: Transform pos: 0.5,-124.5 parent: 2 - - uid: 15452 + - uid: 6772 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-125.5 parent: 2 - - uid: 15453 + - uid: 6773 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-125.5 parent: 2 - - uid: 15454 + - uid: 6774 components: - type: Transform pos: 0.5,-126.5 parent: 2 - - uid: 15455 + - uid: 6775 components: - type: Transform pos: 0.5,-127.5 parent: 2 - - uid: 15456 + - uid: 6776 components: - type: Transform pos: 0.5,-128.5 parent: 2 - - uid: 15457 + - uid: 6777 components: - type: Transform pos: 0.5,-129.5 parent: 2 - - uid: 15458 + - uid: 6778 components: - type: Transform pos: 0.5,-130.5 parent: 2 - - uid: 15459 + - uid: 6779 components: - type: Transform pos: 0.5,-131.5 parent: 2 - - uid: 15460 + - uid: 6780 components: - type: Transform pos: 0.5,-132.5 parent: 2 - - uid: 15461 + - uid: 6781 components: - type: Transform pos: 0.5,-133.5 parent: 2 - - uid: 15462 + - uid: 6782 components: - type: Transform pos: 0.5,-134.5 parent: 2 - - uid: 15464 + - uid: 6783 components: - type: Transform pos: 0.5,-135.5 parent: 2 - - uid: 15465 + - uid: 6784 components: - type: Transform pos: 0.5,-136.5 parent: 2 - - uid: 15466 + - uid: 6785 components: - type: Transform pos: 0.5,-137.5 parent: 2 - - uid: 15467 + - uid: 6786 components: - type: Transform pos: 0.5,-138.5 parent: 2 - - uid: 15468 + - uid: 6787 components: - type: Transform pos: 0.5,-139.5 parent: 2 - - uid: 15469 + - uid: 6788 components: - type: Transform pos: 0.5,-140.5 parent: 2 - - uid: 15470 + - uid: 6789 components: - type: Transform pos: 0.5,-141.5 parent: 2 - - uid: 15471 + - uid: 6790 components: - type: Transform pos: 0.5,-142.5 parent: 2 - - uid: 15472 + - uid: 6791 components: - type: Transform pos: 0.5,-143.5 parent: 2 - - uid: 15473 + - uid: 6792 components: - type: Transform pos: 0.5,-144.5 parent: 2 - - uid: 15474 + - uid: 6793 components: - type: Transform pos: 0.5,-145.5 parent: 2 - - uid: 15475 + - uid: 6794 components: - type: Transform pos: 0.5,-146.5 parent: 2 - - uid: 15476 + - uid: 6795 components: - type: Transform pos: 0.5,-147.5 parent: 2 - - uid: 15477 + - uid: 6796 components: - type: Transform pos: 0.5,-148.5 parent: 2 - - uid: 15478 + - uid: 6797 components: - type: Transform pos: 0.5,-149.5 parent: 2 - - uid: 15481 + - uid: 6798 components: - type: Transform pos: 0.5,-151.5 parent: 2 - - uid: 15482 + - uid: 6799 components: - type: Transform pos: 0.5,-152.5 parent: 2 - - uid: 15483 + - uid: 6800 components: - type: Transform pos: 0.5,-153.5 parent: 2 - - uid: 15484 + - uid: 6801 components: - type: Transform pos: 0.5,-154.5 parent: 2 - - uid: 15485 + - uid: 6802 components: - type: Transform pos: 0.5,-155.5 parent: 2 - - uid: 15486 + - uid: 6803 components: - type: Transform pos: 0.5,-156.5 parent: 2 - - uid: 15487 + - uid: 6804 components: - type: Transform pos: 0.5,-157.5 parent: 2 - - uid: 15488 + - uid: 6805 components: - type: Transform pos: 0.5,-158.5 parent: 2 - - uid: 15489 + - uid: 6806 components: - type: Transform pos: 0.5,-159.5 parent: 2 - - uid: 15490 + - uid: 6807 components: - type: Transform pos: 0.5,-160.5 parent: 2 - - uid: 15491 + - uid: 6808 components: - type: Transform pos: 0.5,-161.5 parent: 2 - - uid: 15496 + - uid: 6809 components: - type: Transform pos: 0.5,-163.5 parent: 2 - - uid: 15497 + - uid: 6810 components: - type: Transform pos: 0.5,-164.5 parent: 2 - - uid: 15498 + - uid: 6811 components: - type: Transform pos: 0.5,-165.5 parent: 2 - - uid: 15499 + - uid: 6812 components: - type: Transform pos: 0.5,-166.5 parent: 2 - - uid: 15500 + - uid: 6813 components: - type: Transform pos: 0.5,-167.5 parent: 2 - - uid: 15501 + - uid: 6814 components: - type: Transform pos: 0.5,-168.5 parent: 2 - - uid: 15502 + - uid: 6815 components: - type: Transform pos: 0.5,-169.5 parent: 2 - - uid: 15503 + - uid: 6816 components: - type: Transform pos: 0.5,-170.5 parent: 2 - - uid: 15504 + - uid: 6817 components: - type: Transform pos: 0.5,-171.5 parent: 2 - - uid: 15505 + - uid: 6818 components: - type: Transform pos: 0.5,-172.5 parent: 2 - - uid: 15506 + - uid: 6819 components: - type: Transform pos: 0.5,-173.5 parent: 2 - - uid: 15507 + - uid: 6820 components: - type: Transform pos: 0.5,-174.5 parent: 2 - - uid: 15508 + - uid: 6821 components: - type: Transform pos: 0.5,-175.5 parent: 2 - - uid: 15509 + - uid: 6822 components: - type: Transform pos: 0.5,-176.5 parent: 2 - - uid: 15510 + - uid: 6823 components: - type: Transform pos: 0.5,-177.5 parent: 2 - - uid: 15511 + - uid: 6824 components: - type: Transform pos: 0.5,-178.5 parent: 2 - - uid: 15514 + - uid: 6825 components: - type: Transform pos: 0.5,-180.5 parent: 2 - - uid: 15515 + - uid: 6826 components: - type: Transform pos: 0.5,-181.5 parent: 2 - - uid: 15516 + - uid: 6827 components: - type: Transform pos: 0.5,-182.5 parent: 2 - - uid: 15517 + - uid: 6828 components: - type: Transform pos: 0.5,-183.5 parent: 2 - - uid: 15518 + - uid: 6829 components: - type: Transform pos: 0.5,-184.5 parent: 2 - - uid: 15519 + - uid: 6830 components: - type: Transform pos: 0.5,-185.5 parent: 2 - - uid: 15520 + - uid: 6831 components: - type: Transform pos: 0.5,-186.5 parent: 2 - - uid: 15521 + - uid: 6832 components: - type: Transform pos: 0.5,-187.5 parent: 2 - - uid: 15522 + - uid: 6833 components: - type: Transform pos: 0.5,-188.5 parent: 2 - - uid: 15524 + - uid: 6834 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-189.5 parent: 2 - - uid: 15525 + - uid: 6835 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-189.5 parent: 2 - - uid: 15526 + - uid: 6836 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-189.5 parent: 2 - - uid: 15527 + - uid: 6837 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-189.5 parent: 2 - - uid: 15528 + - uid: 6838 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-189.5 parent: 2 - - uid: 15531 + - uid: 6839 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-190.5 parent: 2 - - uid: 15532 + - uid: 6840 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-191.5 parent: 2 - - uid: 15533 + - uid: 6841 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-192.5 parent: 2 - - uid: 15534 + - uid: 6842 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-193.5 parent: 2 - - uid: 15535 + - uid: 6843 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-194.5 parent: 2 - - uid: 15536 + - uid: 6844 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-195.5 parent: 2 - - uid: 15537 + - uid: 6845 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-196.5 parent: 2 - - uid: 15538 + - uid: 6846 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-197.5 parent: 2 - - uid: 15539 + - uid: 6847 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-198.5 parent: 2 - - uid: 15540 + - uid: 6848 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-199.5 parent: 2 - - uid: 15541 + - uid: 6849 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-200.5 parent: 2 - - uid: 15542 + - uid: 6850 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-201.5 parent: 2 - - uid: 15543 + - uid: 6851 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-202.5 parent: 2 - - uid: 15544 + - uid: 6852 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-203.5 parent: 2 - - uid: 15545 + - uid: 6853 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-204.5 parent: 2 - - uid: 15546 + - uid: 6854 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-205.5 parent: 2 - - uid: 15548 + - uid: 6855 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-206.5 parent: 2 - - uid: 15549 + - uid: 6856 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-206.5 parent: 2 - - uid: 15552 + - uid: 6857 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-207.5 parent: 2 - - uid: 15553 + - uid: 6858 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-208.5 parent: 2 - - uid: 15554 + - uid: 6859 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-209.5 parent: 2 - - uid: 15555 + - uid: 6860 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-210.5 parent: 2 - - uid: 15556 + - uid: 6861 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-211.5 parent: 2 - - uid: 15557 + - uid: 6862 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-212.5 parent: 2 - - uid: 15558 + - uid: 6863 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-213.5 parent: 2 - - uid: 15559 + - uid: 6864 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-214.5 parent: 2 - - uid: 15560 + - uid: 6865 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-215.5 parent: 2 - - uid: 15561 + - uid: 6866 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-216.5 parent: 2 - - uid: 15562 + - uid: 6867 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-217.5 parent: 2 - - uid: 15566 + - uid: 6868 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-355.5 parent: 2 - - uid: 15567 + - uid: 6869 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-354.5 parent: 2 - - uid: 15568 + - uid: 6870 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-353.5 parent: 2 - - uid: 15569 + - uid: 6871 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-352.5 parent: 2 - - uid: 15570 + - uid: 6872 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-351.5 parent: 2 - - uid: 15571 + - uid: 6873 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-350.5 parent: 2 - - uid: 15572 + - uid: 6874 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-349.5 parent: 2 - - uid: 15573 + - uid: 6875 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-348.5 parent: 2 - - uid: 15574 + - uid: 6876 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-347.5 parent: 2 - - uid: 15575 + - uid: 6877 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-346.5 parent: 2 - - uid: 15576 + - uid: 6878 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-345.5 parent: 2 - - uid: 15577 + - uid: 6879 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-344.5 parent: 2 - - uid: 15578 + - uid: 6880 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-343.5 parent: 2 - - uid: 15579 + - uid: 6881 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-342.5 parent: 2 - - uid: 15580 + - uid: 6882 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-341.5 parent: 2 - - uid: 15581 + - uid: 6883 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-340.5 parent: 2 - - uid: 15582 + - uid: 6884 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-339.5 parent: 2 - - uid: 15583 + - uid: 6885 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-338.5 parent: 2 - - uid: 15589 + - uid: 6886 components: - type: Transform pos: 0.5,-336.5 parent: 2 - - uid: 15590 + - uid: 6887 components: - type: Transform pos: 0.5,-335.5 parent: 2 - - uid: 15591 + - uid: 6888 components: - type: Transform pos: 0.5,-334.5 parent: 2 - - uid: 15592 + - uid: 6889 components: - type: Transform pos: 0.5,-333.5 parent: 2 - - uid: 15593 + - uid: 6890 components: - type: Transform pos: 0.5,-332.5 parent: 2 - - uid: 15594 + - uid: 6891 components: - type: Transform pos: 0.5,-331.5 parent: 2 - - uid: 15595 + - uid: 6892 components: - type: Transform pos: 0.5,-330.5 parent: 2 - - uid: 15596 + - uid: 6893 components: - type: Transform pos: 0.5,-329.5 parent: 2 - - uid: 15597 + - uid: 6894 components: - type: Transform pos: 0.5,-328.5 parent: 2 - - uid: 15598 + - uid: 6895 components: - type: Transform pos: 0.5,-327.5 parent: 2 - - uid: 15599 + - uid: 6896 components: - type: Transform pos: 0.5,-326.5 parent: 2 - - uid: 15600 + - uid: 6897 components: - type: Transform pos: 0.5,-325.5 parent: 2 - - uid: 15601 + - uid: 6898 components: - type: Transform pos: 0.5,-324.5 parent: 2 - - uid: 15602 + - uid: 6899 components: - type: Transform pos: 0.5,-323.5 parent: 2 - - uid: 15603 + - uid: 6900 components: - type: Transform pos: 0.5,-322.5 parent: 2 - - uid: 15604 + - uid: 6901 components: - type: Transform pos: 0.5,-321.5 parent: 2 - - uid: 15605 + - uid: 6902 components: - type: Transform pos: 0.5,-320.5 parent: 2 - - uid: 15606 + - uid: 6903 components: - type: Transform pos: 0.5,-319.5 parent: 2 - - uid: 15611 + - uid: 6904 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-317.5 parent: 2 - - uid: 15612 + - uid: 6905 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-318.5 parent: 2 - - uid: 15613 + - uid: 6906 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-315.5 parent: 2 - - uid: 15614 + - uid: 6907 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-314.5 parent: 2 - - uid: 15615 + - uid: 6908 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-313.5 parent: 2 - - uid: 15616 + - uid: 6909 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-312.5 parent: 2 - - uid: 15617 + - uid: 6910 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-311.5 parent: 2 - - uid: 15618 + - uid: 6911 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-310.5 parent: 2 - - uid: 15619 + - uid: 6912 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-309.5 parent: 2 - - uid: 15621 + - uid: 6913 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-308.5 parent: 2 - - uid: 15622 + - uid: 6914 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-308.5 parent: 2 - - uid: 15623 + - uid: 6915 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-308.5 parent: 2 - - uid: 15624 + - uid: 6916 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-308.5 parent: 2 - - uid: 15625 + - uid: 6917 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-308.5 parent: 2 - - uid: 15626 + - uid: 6918 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-308.5 parent: 2 - - uid: 15627 + - uid: 6919 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-308.5 parent: 2 - - uid: 15628 + - uid: 6920 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-308.5 parent: 2 - - uid: 15629 + - uid: 6921 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-308.5 parent: 2 - - uid: 15631 + - uid: 6922 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-307.5 parent: 2 - - uid: 15632 + - uid: 6923 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-306.5 parent: 2 - - uid: 15633 + - uid: 6924 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-305.5 parent: 2 - - uid: 15634 + - uid: 6925 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-304.5 parent: 2 - - uid: 15635 + - uid: 6926 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-303.5 parent: 2 - - uid: 15636 + - uid: 6927 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-302.5 parent: 2 - - uid: 15637 + - uid: 6928 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-301.5 parent: 2 - - uid: 15638 + - uid: 6929 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-300.5 parent: 2 - - uid: 15639 + - uid: 6930 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-299.5 parent: 2 - - uid: 15640 + - uid: 6931 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-298.5 parent: 2 - - uid: 15641 + - uid: 6932 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-297.5 parent: 2 - - uid: 15642 + - uid: 6933 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-296.5 parent: 2 - - uid: 15643 + - uid: 6934 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-295.5 parent: 2 - - uid: 15644 + - uid: 6935 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-294.5 parent: 2 - - uid: 15645 + - uid: 6936 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-293.5 parent: 2 - - uid: 15646 + - uid: 6937 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-292.5 parent: 2 - - uid: 15647 + - uid: 6938 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-291.5 parent: 2 - - uid: 15648 + - uid: 6939 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-290.5 parent: 2 - - uid: 15649 + - uid: 6940 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-289.5 parent: 2 - - uid: 15650 + - uid: 6941 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-288.5 parent: 2 - - uid: 15651 + - uid: 6942 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-287.5 parent: 2 - - uid: 15659 + - uid: 6943 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-286.5 parent: 2 - - uid: 15660 + - uid: 6944 components: - type: Transform pos: -1.5,-285.5 parent: 2 - - uid: 15661 + - uid: 6945 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-284.5 parent: 2 - - uid: 15663 + - uid: 6946 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-283.5 parent: 2 - - uid: 15664 + - uid: 6947 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-282.5 parent: 2 - - uid: 15665 + - uid: 6948 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-281.5 parent: 2 - - uid: 15666 + - uid: 6949 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-280.5 parent: 2 - - uid: 15667 + - uid: 6950 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-279.5 parent: 2 - - uid: 15668 + - uid: 6951 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-278.5 parent: 2 - - uid: 15669 + - uid: 6952 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-277.5 parent: 2 - - uid: 15670 + - uid: 6953 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-276.5 parent: 2 - - uid: 15671 + - uid: 6954 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-275.5 parent: 2 - - uid: 15673 + - uid: 6955 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-274.5 parent: 2 - - uid: 15674 + - uid: 6956 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-274.5 parent: 2 - - uid: 15676 + - uid: 6957 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-273.5 parent: 2 - - uid: 15677 + - uid: 6958 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-272.5 parent: 2 - - uid: 15678 + - uid: 6959 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-271.5 parent: 2 - - uid: 15681 + - uid: 6960 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-269.5 parent: 2 - - uid: 15682 + - uid: 6961 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-268.5 parent: 2 - - uid: 15683 + - uid: 6962 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-267.5 parent: 2 - - uid: 15684 + - uid: 6963 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-266.5 parent: 2 - - uid: 15685 + - uid: 6964 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-265.5 parent: 2 - - uid: 15686 + - uid: 6965 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-264.5 parent: 2 - - uid: 15687 + - uid: 6966 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-263.5 parent: 2 - - uid: 15688 + - uid: 6967 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-262.5 parent: 2 - - uid: 15689 + - uid: 6968 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-261.5 parent: 2 - - uid: 15690 + - uid: 6969 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-260.5 parent: 2 - - uid: 15693 + - uid: 6970 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-258.5 parent: 2 - - uid: 15694 + - uid: 6971 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-257.5 parent: 2 - - uid: 15695 + - uid: 6972 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-256.5 parent: 2 - - uid: 15698 + - uid: 6973 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-254.5 parent: 2 - - uid: 15699 + - uid: 6974 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-253.5 parent: 2 - - uid: 15700 + - uid: 6975 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-252.5 parent: 2 - - uid: 15701 + - uid: 6976 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-251.5 parent: 2 - - uid: 15702 + - uid: 6977 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-250.5 parent: 2 - - uid: 15703 + - uid: 6978 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-249.5 parent: 2 - - uid: 15704 + - uid: 6979 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-248.5 parent: 2 - - uid: 15705 + - uid: 6980 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-247.5 parent: 2 - - uid: 15706 + - uid: 6981 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-246.5 parent: 2 - - uid: 15707 + - uid: 6982 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-245.5 parent: 2 - - uid: 15708 + - uid: 6983 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-244.5 parent: 2 - - uid: 15709 + - uid: 6984 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-243.5 parent: 2 - - uid: 15710 + - uid: 6985 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-242.5 parent: 2 - - uid: 15711 + - uid: 6986 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-241.5 parent: 2 - - uid: 15712 + - uid: 6987 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-240.5 parent: 2 - - uid: 15713 + - uid: 6988 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-239.5 parent: 2 - - uid: 15714 + - uid: 6989 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-238.5 parent: 2 - - uid: 15715 + - uid: 6990 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-237.5 parent: 2 - - uid: 15716 + - uid: 6991 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-236.5 parent: 2 - - uid: 15717 + - uid: 6992 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-235.5 parent: 2 - - uid: 15718 + - uid: 6993 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-234.5 parent: 2 - - uid: 15719 + - uid: 6994 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-233.5 parent: 2 - - uid: 15720 + - uid: 6995 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-232.5 parent: 2 - - uid: 15726 + - uid: 6996 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-231.5 parent: 2 - - uid: 15727 + - uid: 6997 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-230.5 parent: 2 - - uid: 15728 + - uid: 6998 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-229.5 parent: 2 - - uid: 15729 + - uid: 6999 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-228.5 parent: 2 - - uid: 15730 + - uid: 7000 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-227.5 parent: 2 - - uid: 15731 + - uid: 7001 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-226.5 parent: 2 - - uid: 15732 + - uid: 7002 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-225.5 parent: 2 - - uid: 15733 + - uid: 7003 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-224.5 parent: 2 - - uid: 15734 + - uid: 7004 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-223.5 parent: 2 - - uid: 15735 + - uid: 7005 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-222.5 parent: 2 - - uid: 15736 + - uid: 7006 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-221.5 parent: 2 - - uid: 15737 + - uid: 7007 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-220.5 parent: 2 - - uid: 15739 + - uid: 7008 components: - type: Transform pos: 0.5,-218.5 parent: 2 - - uid: 15740 + - uid: 7009 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-219.5 parent: 2 - - uid: 15741 + - uid: 7010 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-219.5 parent: 2 - - uid: 15742 + - uid: 7011 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-220.5 parent: 2 - - uid: 17002 + - uid: 7012 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-261.5 parent: 2 - - uid: 17007 + - uid: 7013 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-261.5 parent: 2 - - uid: 17008 + - uid: 7014 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-261.5 parent: 2 - - uid: 17009 + - uid: 7015 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-261.5 parent: 2 - - uid: 17010 + - uid: 7016 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-261.5 parent: 2 - - uid: 17011 + - uid: 7017 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-261.5 parent: 2 - - uid: 17012 + - uid: 7018 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-261.5 parent: 2 - - uid: 17013 + - uid: 7019 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-261.5 parent: 2 - - uid: 17014 + - uid: 7020 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-261.5 parent: 2 - - uid: 17015 + - uid: 7021 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-261.5 parent: 2 - - uid: 17016 + - uid: 7022 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-261.5 parent: 2 - - uid: 17017 + - uid: 7023 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-261.5 parent: 2 - - uid: 17019 + - uid: 7024 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-259.5 parent: 2 - - uid: 17020 + - uid: 7025 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-259.5 parent: 2 - - uid: 17021 + - uid: 7026 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-259.5 parent: 2 - - uid: 17022 + - uid: 7027 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-259.5 parent: 2 - - uid: 17023 + - uid: 7028 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-259.5 parent: 2 - - uid: 17024 + - uid: 7029 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-259.5 parent: 2 - - uid: 17025 + - uid: 7030 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-259.5 parent: 2 - - uid: 17026 + - uid: 7031 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-259.5 parent: 2 - - uid: 17027 + - uid: 7032 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-259.5 parent: 2 - - uid: 17028 + - uid: 7033 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-259.5 parent: 2 - - uid: 17029 + - uid: 7034 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-259.5 parent: 2 - - uid: 17030 + - uid: 7035 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-259.5 parent: 2 - - uid: 17031 + - uid: 7036 components: - type: Transform rot: 1.5707963267948966 rad @@ -45182,7 +44847,7 @@ entities: parent: 2 - proto: DisposalRouter entities: - - uid: 6797 + - uid: 7037 components: - type: Transform rot: 3.141592653589793 rad @@ -45191,7 +44856,7 @@ entities: - type: DisposalRouter tags: - Engineering - - uid: 9846 + - uid: 7038 components: - type: Transform pos: -0.5,-261.5 @@ -45199,7 +44864,7 @@ entities: - type: DisposalRouter tags: - Atmos - - uid: 13503 + - uid: 7039 components: - type: Transform rot: 3.141592653589793 rad @@ -45208,7 +44873,7 @@ entities: - type: DisposalRouter tags: - Bridge - - uid: 13636 + - uid: 7040 components: - type: Transform rot: 3.141592653589793 rad @@ -45217,7 +44882,7 @@ entities: - type: DisposalRouter tags: - Kitchen - - uid: 13685 + - uid: 7041 components: - type: Transform rot: 3.141592653589793 rad @@ -45226,7 +44891,7 @@ entities: - type: DisposalRouter tags: - HoP Office - - uid: 13759 + - uid: 7042 components: - type: Transform pos: -0.5,-140.5 @@ -45234,13 +44899,13 @@ entities: - type: DisposalRouter tags: - Library - - uid: 13764 + - uid: 7043 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-149.5 parent: 2 - - uid: 13842 + - uid: 7044 components: - type: Transform rot: 3.141592653589793 rad @@ -45249,7 +44914,7 @@ entities: - type: DisposalRouter tags: - Medical - - uid: 14033 + - uid: 7045 components: - type: Transform pos: -0.5,-285.5 @@ -45257,7 +44922,7 @@ entities: - type: DisposalRouter tags: - Salvage - - uid: 14139 + - uid: 7046 components: - type: Transform pos: -0.5,-303.5 @@ -45265,7 +44930,7 @@ entities: - type: DisposalRouter tags: - Science - - uid: 14210 + - uid: 7047 components: - type: Transform pos: -0.5,-339.5 @@ -45275,7 +44940,7 @@ entities: - Brig - proto: DisposalRouterFlipped entities: - - uid: 13591 + - uid: 7048 components: - type: Transform rot: 3.141592653589793 rad @@ -45284,7 +44949,7 @@ entities: - type: DisposalRouter tags: - Bar - - uid: 14090 + - uid: 7049 components: - type: Transform rot: 3.141592653589793 rad @@ -45295,387 +44960,387 @@ entities: - Cargo - proto: DisposalTrunk entities: - - uid: 2378 + - uid: 7050 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-180.5 parent: 2 - - uid: 5417 + - uid: 7051 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-10.5 parent: 2 - - uid: 6714 + - uid: 7052 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-342.5 parent: 2 - - uid: 7831 + - uid: 7053 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-250.5 parent: 2 - - uid: 8225 + - uid: 7054 components: - type: Transform pos: 15.5,-85.5 parent: 2 - - uid: 8769 + - uid: 7055 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-137.5 parent: 2 - - uid: 8921 + - uid: 7056 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-308.5 parent: 2 - - uid: 11928 + - uid: 7057 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-261.5 parent: 2 - - uid: 13219 + - uid: 7058 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-61.5 parent: 2 - - uid: 13378 + - uid: 7059 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-190.5 parent: 2 - - uid: 13637 + - uid: 7060 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-91.5 parent: 2 - - uid: 13686 + - uid: 7061 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-119.5 parent: 2 - - uid: 13779 + - uid: 7062 components: - type: Transform pos: 4.5,-137.5 parent: 2 - - uid: 13785 + - uid: 7063 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-142.5 parent: 2 - - uid: 13837 + - uid: 7064 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-176.5 parent: 2 - - uid: 14106 + - uid: 7065 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-288.5 parent: 2 - - uid: 14142 + - uid: 7066 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-303.5 parent: 2 - - uid: 14568 + - uid: 7067 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-279.5 parent: 2 - - uid: 15307 + - uid: 7068 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 parent: 2 - - uid: 15335 + - uid: 7069 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-37.5 parent: 2 - - uid: 15362 + - uid: 7070 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-32.5 parent: 2 - - uid: 15364 + - uid: 7071 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-56.5 parent: 2 - - uid: 15365 + - uid: 7072 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-69.5 parent: 2 - - uid: 15400 + - uid: 7073 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-84.5 parent: 2 - - uid: 15419 + - uid: 7074 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-97.5 parent: 2 - - uid: 15430 + - uid: 7075 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-108.5 parent: 2 - - uid: 15451 + - uid: 7076 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-126.5 parent: 2 - - uid: 15480 + - uid: 7077 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-150.5 parent: 2 - - uid: 15495 + - uid: 7078 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-162.5 parent: 2 - - uid: 15530 + - uid: 7079 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-189.5 parent: 2 - - uid: 15551 + - uid: 7080 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-207.5 parent: 2 - - uid: 15564 + - uid: 7081 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-356.5 parent: 2 - - uid: 15609 + - uid: 7082 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-316.5 parent: 2 - - uid: 15630 + - uid: 7083 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-308.5 parent: 2 - - uid: 15655 + - uid: 7084 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-284.5 parent: 2 - - uid: 15680 + - uid: 7085 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-270.5 parent: 2 - - uid: 15697 + - uid: 7086 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-255.5 parent: 2 - - uid: 15743 + - uid: 7087 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-221.5 parent: 2 - - uid: 15800 + - uid: 7088 components: - type: Transform pos: 2.5,-335.5 parent: 2 - - uid: 17034 + - uid: 7089 components: - type: Transform pos: -13.5,-258.5 parent: 2 - proto: DisposalUnit entities: - - uid: 197 + - uid: 7090 components: - type: Transform pos: 6.5,-4.5 parent: 2 - - uid: 837 + - uid: 7091 components: - type: Transform pos: 4.5,-42.5 parent: 2 - - uid: 1421 + - uid: 7092 components: - type: Transform pos: 2.5,-69.5 parent: 2 - - uid: 1563 + - uid: 7093 components: - type: Transform pos: 2.5,-56.5 parent: 2 - - uid: 1724 + - uid: 7094 components: - type: Transform pos: -2.5,-55.5 parent: 2 - - uid: 2374 + - uid: 7095 components: - type: Transform pos: 3.5,-180.5 parent: 2 - - uid: 2377 + - uid: 7096 components: - type: Transform pos: 1.5,-270.5 parent: 2 - - uid: 4199 + - uid: 7097 components: - type: Transform pos: 15.5,-137.5 parent: 2 - - uid: 6759 + - uid: 7098 components: - type: Transform pos: -13.5,-258.5 parent: 2 - - uid: 7759 + - uid: 7099 components: - type: Transform pos: -2.5,-126.5 parent: 2 - - uid: 7801 + - uid: 7100 components: - type: Transform pos: -8.5,-308.5 parent: 2 - - uid: 7906 + - uid: 7101 components: - type: Transform pos: 15.5,-85.5 parent: 2 - - uid: 8380 + - uid: 7102 components: - type: Transform pos: -7.5,-190.5 parent: 2 - - uid: 9050 + - uid: 7103 components: - type: Transform pos: 3.5,-207.5 parent: 2 - - uid: 11006 + - uid: 7104 components: - type: Transform pos: 2.5,-335.5 parent: 2 - - uid: 15333 + - uid: 7105 components: - type: Transform pos: -1.5,-32.5 parent: 2 - - uid: 15334 + - uid: 7106 components: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 15395 + - uid: 7107 components: - type: Transform pos: 1.5,-84.5 parent: 2 - - uid: 15396 + - uid: 7108 components: - type: Transform pos: 6.5,-97.5 parent: 2 - - uid: 15431 + - uid: 7109 components: - type: Transform pos: 1.5,-108.5 parent: 2 - - uid: 15463 + - uid: 7110 components: - type: Transform pos: -0.5,-150.5 parent: 2 - - uid: 15493 + - uid: 7111 components: - type: Transform pos: -0.5,-162.5 parent: 2 - - uid: 15529 + - uid: 7112 components: - type: Transform pos: 6.5,-189.5 parent: 2 - - uid: 15563 + - uid: 7113 components: - type: Transform pos: 1.5,-356.5 parent: 2 - - uid: 15607 + - uid: 7114 components: - type: Transform pos: 1.5,-316.5 parent: 2 - - uid: 15608 + - uid: 7115 components: - type: Transform pos: 10.5,-308.5 parent: 2 - - uid: 15652 + - uid: 7116 components: - type: Transform pos: 0.5,-284.5 parent: 2 - - uid: 15691 + - uid: 7117 components: - type: Transform pos: 1.5,-255.5 parent: 2 - proto: DisposalYJunction entities: - - uid: 15738 + - uid: 7118 components: - type: Transform rot: 1.5707963267948966 rad @@ -45683,81 +45348,81 @@ entities: parent: 2 - proto: DogBed entities: - - uid: 1804 + - uid: 7119 components: - type: Transform pos: 0.5,-201.5 parent: 2 - - uid: 2235 + - uid: 7120 components: - type: Transform pos: 1.5,-117.5 parent: 2 - - uid: 2720 + - uid: 7121 components: - type: Transform pos: 5.5,-139.5 parent: 2 - - uid: 3034 + - uid: 7122 components: - type: Transform pos: -1.5,-11.5 parent: 2 - - uid: 11968 + - uid: 7123 components: - type: Transform pos: -0.5,-363.5 parent: 2 - - uid: 12153 + - uid: 7124 components: - type: Transform pos: -1.5,-356.5 parent: 2 - - uid: 12156 + - uid: 7125 components: - type: Transform pos: -2.5,-305.5 parent: 2 - - uid: 12636 + - uid: 7126 components: - type: Transform pos: -8.5,-304.5 parent: 2 - - uid: 13397 + - uid: 7127 components: - type: Transform pos: -15.5,-265.5 parent: 2 - proto: DonkpocketBoxSpawner entities: - - uid: 5404 + - uid: 7128 components: - type: Transform pos: 7.5,-200.5 parent: 2 - - uid: 8553 + - uid: 7129 components: - type: Transform pos: -4.5,-286.5 parent: 2 - - uid: 8558 + - uid: 7130 components: - type: Transform pos: -4.5,-286.5 parent: 2 - - uid: 13399 + - uid: 7131 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-339.5 parent: 2 - - uid: 14564 + - uid: 7132 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-339.5 parent: 2 - - uid: 14601 + - uid: 7133 components: - type: Transform rot: 3.141592653589793 rad @@ -45765,140 +45430,140 @@ entities: parent: 2 - proto: DresserCaptainFilled entities: - - uid: 298 + - uid: 7134 components: - type: Transform pos: -0.5,-13.5 parent: 2 - proto: DresserChiefEngineerFilled entities: - - uid: 8443 + - uid: 7135 components: - type: Transform pos: 10.5,-254.5 parent: 2 - proto: DresserChiefMedicalOfficerFilled entities: - - uid: 3775 + - uid: 7136 components: - type: Transform pos: -0.5,-201.5 parent: 2 - proto: DresserFilled entities: - - uid: 923 + - uid: 7137 components: - type: Transform pos: 3.5,-64.5 parent: 2 - - uid: 2368 + - uid: 7138 components: - type: Transform pos: -2.5,-138.5 parent: 2 - - uid: 2724 + - uid: 7139 components: - type: Transform pos: -5.5,-136.5 parent: 2 - proto: DresserHeadOfPersonnelFilled entities: - - uid: 2231 + - uid: 7140 components: - type: Transform pos: -1.5,-116.5 parent: 2 - proto: DresserHeadOfSecurityFilled entities: - - uid: 11097 + - uid: 7141 components: - type: Transform pos: -3.5,-344.5 parent: 2 - proto: DresserQuarterMasterFilled entities: - - uid: 9011 + - uid: 7142 components: - type: Transform pos: 4.5,-284.5 parent: 2 - proto: DresserResearchDirectorFilled entities: - - uid: 8459 + - uid: 7143 components: - type: Transform pos: -9.5,-303.5 parent: 2 - proto: DresserWardenFilled entities: - - uid: 11385 + - uid: 7144 components: - type: Transform pos: 1.5,-368.5 parent: 2 - proto: DrinkAleBottleFull entities: - - uid: 3036 + - uid: 7145 components: - type: Transform pos: -0.47690427,-60.402824 parent: 2 - - uid: 3038 + - uid: 7146 components: - type: Transform pos: -0.25679237,-60.35632 parent: 2 - proto: DrinkBeerBottleFull entities: - - uid: 7891 + - uid: 7147 components: - type: Transform pos: 8.708858,-254.22014 parent: 2 - - uid: 8458 + - uid: 7148 components: - type: Transform pos: 8.616409,-254.0617 parent: 2 - proto: DrinkBeerGrowler entities: - - uid: 4800 + - uid: 7149 components: - type: Transform pos: 5.307968,-252.56429 parent: 2 - - uid: 6637 + - uid: 7150 components: - type: Transform pos: 5.6909623,-253.30362 parent: 2 - - uid: 8559 + - uid: 7151 components: - type: Transform pos: -3.847699,-286.55716 parent: 2 - - uid: 8560 + - uid: 7152 components: - type: Transform pos: -3.7202213,-286.6471 parent: 2 - proto: DrinkBlueCuracaoBottleFull entities: - - uid: 10993 + - uid: 7153 components: - type: Transform pos: -1.2898192,-65.33336 parent: 2 - proto: DrinkBottleOfNothingFull entities: - - uid: 2032 + - uid: 7154 components: - type: Transform pos: -8.723203,-122.26877 parent: 2 - proto: DrinkBottleVodka entities: - - uid: 4190 + - uid: 7155 components: - type: Transform rot: 1.5707963267948966 rad @@ -45906,587 +45571,587 @@ entities: parent: 2 - proto: DrinkBottleWhiskey entities: - - uid: 14924 + - uid: 7156 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.600952,-147.04173 parent: 2 - - uid: 14925 + - uid: 7157 components: - type: Transform pos: -6.690937,-147.61519 parent: 2 - - uid: 14927 + - uid: 7158 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.4547286,-144.36557 parent: 2 - - uid: 14928 + - uid: 7159 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4097366,-145.63618 parent: 2 - - uid: 14929 + - uid: 7160 components: - type: Transform pos: -6.679689,-145.77112 parent: 2 - proto: DrinkFlask entities: - - uid: 317 + - uid: 7161 components: - type: Transform pos: -0.34037054,-11.441932 parent: 2 - proto: DrinkGlass entities: - - uid: 4172 + - uid: 7162 components: - type: Transform pos: -1.003649,-60.552048 parent: 2 - - uid: 4173 + - uid: 7163 components: - type: Transform pos: -1.5407214,-60.51684 parent: 2 - - uid: 10802 + - uid: 7164 components: - type: Transform pos: -2.020939,-65.49077 parent: 2 - - uid: 10826 + - uid: 7165 components: - type: Transform pos: -1.6722503,-65.53575 parent: 2 - - uid: 10995 + - uid: 7166 components: - type: Transform pos: -1.7622352,-65.288376 parent: 2 - proto: DrinkGoldenCup entities: - - uid: 3749 + - uid: 7167 components: - type: Transform pos: -1.7968009,-1.2700026 parent: 2 - proto: DrinkGreenTeaGlass entities: - - uid: 12388 + - uid: 7168 components: - type: Transform pos: -4.4292135,-316.6871 parent: 2 - proto: DrinkHotCoffee entities: - - uid: 9521 + - uid: 7169 components: - type: Transform pos: 22.915377,-317.35895 parent: 2 - proto: DrinkIceCreamGlass entities: - - uid: 2989 + - uid: 7170 components: - type: Transform pos: 3.657866,-72.56517 parent: 2 - - uid: 14371 + - uid: 7171 components: - type: Transform pos: 14.69894,-63.384167 parent: 2 - - uid: 14381 + - uid: 7172 components: - type: Transform pos: 14.407273,-63.384167 parent: 2 - proto: DrinkIcedTeaGlass entities: - - uid: 12387 + - uid: 7173 components: - type: Transform pos: -4.534867,-316.51547 parent: 2 - proto: DrinkLongIslandIcedTeaGlass entities: - - uid: 14460 + - uid: 7174 components: - type: Transform pos: 17.602736,-78.352585 parent: 2 - proto: DrinkMopwataBottleRandom entities: - - uid: 1747 + - uid: 7175 components: - type: Transform pos: -5.7352834,-54.166782 parent: 2 - proto: DrinkMugDog entities: - - uid: 2234 + - uid: 7176 components: - type: Transform pos: 1.1724037,-117.232086 parent: 2 - - uid: 12838 + - uid: 7177 components: - type: Transform pos: -0.32982033,-365.28162 parent: 2 - proto: DrinkMugMetal entities: - - uid: 199 + - uid: 7178 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.952591,-12.591546 parent: 2 - - uid: 302 + - uid: 7179 components: - type: Transform pos: 5.957412,-12.479102 parent: 2 - - uid: 303 + - uid: 7180 components: - type: Transform pos: 5.8674273,-12.22423 parent: 2 - - uid: 304 + - uid: 7181 components: - type: Transform pos: 5.6124735,-12.531576 parent: 2 - proto: DrinkNothing entities: - - uid: 2033 + - uid: 7182 components: - type: Transform pos: -8.335806,-122.47121 parent: 2 - proto: DrinkShotGlass entities: - - uid: 442 + - uid: 7183 components: - type: Transform pos: -6.5079026,-63.4827 parent: 2 - - uid: 4192 + - uid: 7184 components: - type: Transform pos: -5.5391526,-63.4202 parent: 2 - - uid: 4193 + - uid: 7185 components: - type: Transform pos: -5.3672776,-62.342075 parent: 2 - proto: DrinkSodaWaterBottleFull entities: - - uid: 2787 + - uid: 7186 components: - type: Transform pos: 7.572414,-197.48143 parent: 2 - - uid: 7556 + - uid: 7187 components: - type: Transform pos: 7.766112,-197.4022 parent: 2 - proto: DrinkTeaJug entities: - - uid: 2213 + - uid: 7188 components: - type: Transform pos: -1.5308492,-120.70999 parent: 2 - - uid: 2270 + - uid: 7189 components: - type: Transform pos: -1.355068,-120.780304 parent: 2 - proto: DrinkTeapot entities: - - uid: 2267 + - uid: 7190 components: - type: Transform pos: -1.5341585,-120.30812 parent: 2 - proto: DrinkVodkaBottleFull entities: - - uid: 1486 + - uid: 7191 components: - type: Transform pos: 7.686127,-56.08689 parent: 2 - - uid: 4189 + - uid: 7192 components: - type: Transform pos: -6.1016526,-62.51395 parent: 2 - - uid: 11208 + - uid: 7193 components: - type: Transform pos: -3.0426478,-346.08514 parent: 2 - proto: DrinkVodkaGlass entities: - - uid: 11209 + - uid: 7194 components: - type: Transform pos: -3.2451503,-346.4724 parent: 2 - proto: DrinkWhiskeyBottleFull entities: - - uid: 14566 + - uid: 7195 components: - type: Transform pos: 14.124506,-63.392555 parent: 2 - - uid: 14919 + - uid: 7196 components: - type: Transform pos: -6.274761,-147.46901 parent: 2 - - uid: 14926 + - uid: 7197 components: - type: Transform pos: -6.2410164,-148.00874 parent: 2 - proto: DrinkWineBottleFull entities: - - uid: 64 + - uid: 7198 components: - type: Transform pos: 5.8253236,-7.014749 parent: 2 - - uid: 221 + - uid: 7199 components: - type: Transform pos: 5.4743247,-6.6932936 parent: 2 - proto: DrinkWineGlass entities: - - uid: 220 + - uid: 7200 components: - type: Transform pos: 4.979412,-6.412184 parent: 2 - - uid: 222 + - uid: 7201 components: - type: Transform pos: 4.0908213,-7.3229785 parent: 2 - proto: EggSpider entities: - - uid: 14780 + - uid: 7202 components: - type: Transform pos: 3.6699882,-35.680645 parent: 2 - proto: EmergencyLight entities: - - uid: 6795 + - uid: 7203 components: - type: Transform pos: 1.5,-216.5 parent: 2 - - uid: 7315 + - uid: 7204 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-233.5 parent: 2 - - uid: 7815 + - uid: 7205 components: - type: Transform pos: 1.5,-243.5 parent: 2 - - uid: 8975 + - uid: 7206 components: - type: Transform pos: 1.5,-156.5 parent: 2 - - uid: 10705 + - uid: 7207 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-69.5 parent: 2 - - uid: 15207 + - uid: 7208 components: - type: Transform pos: 1.5,-237.5 parent: 2 - - uid: 15208 + - uid: 7209 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 - - uid: 15209 + - uid: 7210 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 parent: 2 - - uid: 15210 + - uid: 7211 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 2 - - uid: 15211 + - uid: 7212 components: - type: Transform pos: 1.5,-21.5 parent: 2 - - uid: 15212 + - uid: 7213 components: - type: Transform pos: -1.5,-27.5 parent: 2 - - uid: 15213 + - uid: 7214 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-44.5 parent: 2 - - uid: 15214 + - uid: 7215 components: - type: Transform pos: 1.5,-48.5 parent: 2 - - uid: 15215 + - uid: 7216 components: - type: Transform pos: -1.5,-57.5 parent: 2 - - uid: 15217 + - uid: 7217 components: - type: Transform pos: 1.5,-75.5 parent: 2 - - uid: 15218 + - uid: 7218 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-84.5 parent: 2 - - uid: 15219 + - uid: 7219 components: - type: Transform pos: 1.5,-102.5 parent: 2 - - uid: 15220 + - uid: 7220 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-92.5 parent: 2 - - uid: 15221 + - uid: 7221 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-114.5 parent: 2 - - uid: 15222 + - uid: 7222 components: - type: Transform pos: 2.5,-123.5 parent: 2 - - uid: 15223 + - uid: 7223 components: - type: Transform pos: 1.5,-129.5 parent: 2 - - uid: 15224 + - uid: 7224 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-142.5 parent: 2 - - uid: 15225 + - uid: 7225 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-151.5 parent: 2 - - uid: 15227 + - uid: 7226 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-166.5 parent: 2 - - uid: 15228 + - uid: 7227 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-177.5 parent: 2 - - uid: 15229 + - uid: 7228 components: - type: Transform pos: 1.5,-183.5 parent: 2 - - uid: 15230 + - uid: 7229 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-192.5 parent: 2 - - uid: 15231 + - uid: 7230 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-203.5 parent: 2 - - uid: 15232 + - uid: 7231 components: - type: Transform pos: 1.5,-210.5 parent: 2 - - uid: 15236 + - uid: 7232 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-259.5 parent: 2 - - uid: 15237 + - uid: 7233 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-253.5 parent: 2 - - uid: 15238 + - uid: 7234 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-250.5 parent: 2 - - uid: 15239 + - uid: 7235 components: - type: Transform pos: 1.5,-264.5 parent: 2 - - uid: 15240 + - uid: 7236 components: - type: Transform pos: 1.5,-291.5 parent: 2 - - uid: 15241 + - uid: 7237 components: - type: Transform pos: 6.5,-276.5 parent: 2 - - uid: 15243 + - uid: 7238 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-283.5 parent: 2 - - uid: 15244 + - uid: 7239 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-275.5 parent: 2 - - uid: 15245 + - uid: 7240 components: - type: Transform pos: 10.5,-306.5 parent: 2 - - uid: 15246 + - uid: 7241 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-318.5 parent: 2 - - uid: 15247 + - uid: 7242 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-298.5 parent: 2 - - uid: 15248 + - uid: 7243 components: - type: Transform pos: -2.5,-307.5 parent: 2 - - uid: 15249 + - uid: 7244 components: - type: Transform pos: 1.5,-323.5 parent: 2 - - uid: 15250 + - uid: 7245 components: - type: Transform pos: -0.5,-329.5 parent: 2 - - uid: 15251 + - uid: 7246 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-342.5 parent: 2 - - uid: 15252 + - uid: 7247 components: - type: Transform pos: 1.5,-356.5 parent: 2 - - uid: 15253 + - uid: 7248 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-366.5 parent: 2 - - uid: 15254 + - uid: 7249 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-366.5 parent: 2 - - uid: 15255 + - uid: 7250 components: - type: Transform pos: -1.5,-370.5 parent: 2 - - uid: 15256 + - uid: 7251 components: - type: Transform pos: 2.5,-370.5 parent: 2 - proto: EmergencyRollerBedSpawnFolded entities: - - uid: 5497 + - uid: 7252 components: - type: Transform pos: -4.5664425,-165.51636 parent: 2 - proto: Emitter entities: - - uid: 4991 + - uid: 7253 components: - type: Transform pos: 23.5,-253.5 parent: 2 - - uid: 6653 + - uid: 7254 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-255.5 parent: 2 - - uid: 8797 + - uid: 7255 components: - type: Transform pos: 31.5,-253.5 parent: 2 - - uid: 13034 + - uid: 7256 components: - type: Transform rot: 3.141592653589793 rad @@ -46494,288 +46159,288 @@ entities: parent: 2 - proto: EncryptionKeyCargo entities: - - uid: 1344 + - uid: 7258 components: - type: Transform - parent: 1343 + parent: 7257 - type: Physics canCollide: False - proto: EncryptionKeyCommand entities: - - uid: 3583 + - uid: 7260 components: - type: Transform - parent: 3149 + parent: 7259 - type: Physics canCollide: False - proto: EncryptionKeyCommon entities: - - uid: 1341 + - uid: 7262 components: - type: Transform - parent: 1333 + parent: 7261 - type: Physics canCollide: False - proto: EncryptionKeyEngineering entities: - - uid: 2910 + - uid: 7264 components: - type: Transform - parent: 1345 + parent: 7263 - type: Physics canCollide: False - proto: EncryptionKeyMedical entities: - - uid: 3033 + - uid: 7266 components: - type: Transform - parent: 3023 + parent: 7265 - type: Physics canCollide: False - proto: EncryptionKeyMedicalScience entities: - - uid: 9693 + - uid: 7267 components: - type: Transform pos: 21.672514,-299.37094 parent: 2 - proto: EncryptionKeyRobo entities: - - uid: 9691 + - uid: 7268 components: - type: Transform pos: 21.332075,-299.4883 parent: 2 - proto: EncryptionKeyScience entities: - - uid: 2912 + - uid: 7270 components: - type: Transform - parent: 2911 + parent: 7269 - type: Physics canCollide: False - proto: EncryptionKeySecurity entities: - - uid: 3071 + - uid: 7272 components: - type: Transform - parent: 3054 + parent: 7271 - type: Physics canCollide: False - proto: EncryptionKeyService entities: - - uid: 1285 + - uid: 7274 components: - type: Transform - parent: 1192 + parent: 7273 - type: Physics canCollide: False - proto: ExosuitFabricator entities: - - uid: 9968 + - uid: 7275 components: - type: Transform pos: 7.5,-311.5 parent: 2 - proto: ExtendedEmergencyNitrogenTankFilled entities: - - uid: 558 + - uid: 7276 components: - type: Transform pos: -6.4656725,-2.5658867 parent: 2 - - uid: 14754 + - uid: 7277 components: - type: Transform pos: -3.619395,-18.40879 parent: 2 - proto: ExtinguisherCabinetFilled entities: - - uid: 53 + - uid: 7278 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 2 - - uid: 918 + - uid: 7279 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,1.5 parent: 2 - - uid: 2703 + - uid: 7280 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-80.5 parent: 2 - - uid: 2868 + - uid: 7281 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-108.5 parent: 2 - - uid: 2869 + - uid: 7282 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-140.5 parent: 2 - - uid: 2870 + - uid: 7283 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-65.5 parent: 2 - - uid: 2871 + - uid: 7284 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-39.5 parent: 2 - - uid: 2890 + - uid: 7285 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-117.5 parent: 2 - - uid: 2891 + - uid: 7286 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-96.5 parent: 2 - - uid: 4004 + - uid: 7287 components: - type: Transform pos: 3.5,-204.5 parent: 2 - - uid: 4177 + - uid: 7288 components: - type: Transform pos: 1.5,-242.5 parent: 2 - - uid: 5468 + - uid: 7289 components: - type: Transform pos: -1.5,-228.5 parent: 2 - - uid: 8598 + - uid: 7290 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 8911 + - uid: 7291 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-311.5 parent: 2 - - uid: 8977 + - uid: 7292 components: - type: Transform pos: -1.5,-319.5 parent: 2 - - uid: 8978 + - uid: 7293 components: - type: Transform pos: -6.5,-281.5 parent: 2 - - uid: 9397 + - uid: 7294 components: - type: Transform pos: -0.5,-111.5 parent: 2 - - uid: 12187 + - uid: 7295 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-335.5 parent: 2 - - uid: 12250 + - uid: 7296 components: - type: Transform pos: -4.5,-276.5 parent: 2 - - uid: 12320 + - uid: 7297 components: - type: Transform pos: 3.5,-356.5 parent: 2 - - uid: 12334 + - uid: 7298 components: - type: Transform pos: 2.5,-226.5 parent: 2 - - uid: 12335 + - uid: 7299 components: - type: Transform pos: 4.5,-199.5 parent: 2 - - uid: 12336 + - uid: 7300 components: - type: Transform pos: -0.5,-171.5 parent: 2 - proto: FaxMachineBase entities: - - uid: 60 + - uid: 7301 components: - type: Transform pos: -0.5,2.5 parent: 2 - type: FaxMachine name: Bridge - - uid: 2697 + - uid: 7302 components: - type: Transform pos: -5.5,-141.5 parent: 2 - type: FaxMachine name: Library - - uid: 7202 + - uid: 7303 components: - type: Transform pos: 1.5,-201.5 parent: 2 - type: FaxMachine name: CMO Office - - uid: 8691 + - uid: 7304 components: - type: Transform pos: 10.5,-254.5 parent: 2 - type: FaxMachine name: Chief Engineer - - uid: 9164 + - uid: 7305 components: - type: Transform pos: 4.5,-284.5 parent: 2 - type: FaxMachine name: Quartermaster - - uid: 9209 + - uid: 7306 components: - type: Transform pos: -1.5,-116.5 parent: 2 - type: FaxMachine name: Head of Personnel - - uid: 10166 + - uid: 7307 components: - type: Transform pos: -9.5,-303.5 parent: 2 - type: FaxMachine name: Research Director - - uid: 11094 + - uid: 7308 components: - type: Transform pos: 6.5,-331.5 parent: 2 - type: FaxMachine name: Lawyer - - uid: 11141 + - uid: 7309 components: - type: Transform pos: -2.5,-346.5 @@ -46784,26 +46449,26 @@ entities: name: Head of Security - proto: FaxMachineCaptain entities: - - uid: 300 + - uid: 7310 components: - type: Transform pos: -1.5,-13.5 parent: 2 - proto: filingCabinetDrawerRandom entities: - - uid: 3894 + - uid: 7311 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 12869 + - uid: 7312 components: - type: Transform pos: 1.5,-364.5 parent: 2 - proto: FireAxeCabinetFilled entities: - - uid: 107 + - uid: 7313 components: - type: Transform rot: 3.141592653589793 rad @@ -46811,25 +46476,25 @@ entities: parent: 2 - proto: Firelock entities: - - uid: 17000 + - uid: 7314 components: - type: Transform pos: -3.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 + - 67 - proto: FirelockEdge entities: - - uid: 610 + - uid: 7315 components: - type: Transform pos: 0.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13110 - - uid: 637 + - 15 + - uid: 7316 components: - type: Transform rot: 3.141592653589793 rad @@ -46837,8 +46502,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13109 - - uid: 638 + - 14 + - uid: 7317 components: - type: Transform rot: 3.141592653589793 rad @@ -46846,16 +46511,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13109 - - uid: 639 + - 14 + - uid: 7318 components: - type: Transform pos: -0.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13110 - - uid: 1725 + - 15 + - uid: 7319 components: - type: Transform rot: 1.5707963267948966 rad @@ -46863,8 +46528,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13150 - - uid: 1726 + - 23 + - uid: 7320 components: - type: Transform rot: -1.5707963267948966 rad @@ -46872,44 +46537,44 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13151 - - uid: 8242 + - 24 + - uid: 7321 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-150.5 parent: 2 - - uid: 8255 + - uid: 7322 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-162.5 parent: 2 - - uid: 8256 + - uid: 7323 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-162.5 parent: 2 - - uid: 8353 + - uid: 7324 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-150.5 parent: 2 - - uid: 8354 + - uid: 7325 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-141.5 parent: 2 - - uid: 8355 + - uid: 7326 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-141.5 parent: 2 - - uid: 9085 + - uid: 7327 components: - type: Transform rot: -1.5707963267948966 rad @@ -46917,9 +46582,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15280 - - uid: 9425 + - 67 + - 69 + - uid: 7328 components: - type: Transform rot: -1.5707963267948966 rad @@ -46927,8 +46592,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - uid: 9426 + - 61 + - uid: 7329 components: - type: Transform rot: -1.5707963267948966 rad @@ -46936,8 +46601,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - uid: 10870 + - 61 + - uid: 7330 components: - type: Transform rot: -1.5707963267948966 rad @@ -46945,8 +46610,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - uid: 12324 + - 61 + - uid: 7331 components: - type: Transform rot: -1.5707963267948966 rad @@ -46954,9 +46619,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15280 - - uid: 13111 + - 67 + - 69 + - uid: 7332 components: - type: Transform rot: -1.5707963267948966 rad @@ -46964,9 +46629,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13117 - - uid: 13112 + - 16 + - 18 + - uid: 7333 components: - type: Transform rot: -1.5707963267948966 rad @@ -46974,9 +46639,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13117 - - uid: 13113 + - 16 + - 18 + - uid: 7334 components: - type: Transform rot: -1.5707963267948966 rad @@ -46984,9 +46649,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13117 - - uid: 13114 + - 16 + - 18 + - uid: 7335 components: - type: Transform rot: -1.5707963267948966 rad @@ -46994,9 +46659,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13117 - - uid: 13127 + - 16 + - 18 + - uid: 7336 components: - type: Transform rot: 1.5707963267948966 rad @@ -47004,9 +46669,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13150 - - uid: 13128 + - 20 + - 23 + - uid: 7337 components: - type: Transform rot: 1.5707963267948966 rad @@ -47014,9 +46679,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13150 - - uid: 13129 + - 20 + - 23 + - uid: 7338 components: - type: Transform rot: 1.5707963267948966 rad @@ -47024,9 +46689,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13150 - - uid: 13155 + - 20 + - 23 + - uid: 7339 components: - type: Transform rot: 1.5707963267948966 rad @@ -47034,8 +46699,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13156 + - 26 + - uid: 7340 components: - type: Transform rot: 1.5707963267948966 rad @@ -47043,8 +46708,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13157 + - 26 + - uid: 7341 components: - type: Transform rot: 1.5707963267948966 rad @@ -47052,8 +46717,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13192 + - 26 + - uid: 7342 components: - type: Transform rot: -1.5707963267948966 rad @@ -47061,9 +46726,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - 13218 - - uid: 13193 + - 38 + - 41 + - uid: 7343 components: - type: Transform rot: -1.5707963267948966 rad @@ -47071,9 +46736,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - 13218 - - uid: 13194 + - 38 + - 41 + - uid: 7344 components: - type: Transform rot: -1.5707963267948966 rad @@ -47081,27 +46746,27 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - 13218 - - uid: 13201 + - 38 + - 41 + - uid: 7345 components: - type: Transform pos: 5.5,-170.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8201 - - 13218 - - uid: 13202 + - 7 + - 41 + - uid: 7346 components: - type: Transform pos: 4.5,-170.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8201 - - 13218 - - uid: 13311 + - 7 + - 41 + - uid: 7347 components: - type: Transform rot: -1.5707963267948966 rad @@ -47109,9 +46774,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13322 - - uid: 13312 + - 50 + - 51 + - uid: 7348 components: - type: Transform rot: -1.5707963267948966 rad @@ -47119,9 +46784,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13322 - - uid: 13355 + - 50 + - 51 + - uid: 7349 components: - type: Transform rot: 1.5707963267948966 rad @@ -47129,9 +46794,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 13382 - - uid: 13356 + - 55 + - 59 + - uid: 7350 components: - type: Transform rot: 1.5707963267948966 rad @@ -47139,9 +46804,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 13382 - - uid: 13357 + - 55 + - 59 + - uid: 7351 components: - type: Transform rot: 1.5707963267948966 rad @@ -47149,9 +46814,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 13382 - - uid: 15285 + - 55 + - 59 + - uid: 7352 components: - type: Transform rot: -1.5707963267948966 rad @@ -47159,8 +46824,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 15286 + - 70 + - uid: 7353 components: - type: Transform rot: -1.5707963267948966 rad @@ -47168,8 +46833,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 15287 + - 70 + - uid: 7354 components: - type: Transform rot: -1.5707963267948966 rad @@ -47177,8 +46842,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 16682 + - 70 + - uid: 7355 components: - type: Transform rot: 1.5707963267948966 rad @@ -47186,15 +46851,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - proto: FirelockGlass entities: - - uid: 113 + - uid: 7356 components: - type: Transform pos: 0.5,-361.5 parent: 2 - - uid: 146 + - uid: 7357 components: - type: Transform rot: 3.141592653589793 rad @@ -47202,9 +46867,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - 13105 - - uid: 387 + - 12 + - 13 + - uid: 7358 components: - type: Transform rot: 3.141592653589793 rad @@ -47212,14 +46877,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - uid: 389 + - 12 + - uid: 7359 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-12.5 parent: 2 - - uid: 390 + - uid: 7360 components: - type: Transform rot: 3.141592653589793 rad @@ -47227,8 +46892,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - uid: 391 + - 12 + - uid: 7361 components: - type: Transform rot: 3.141592653589793 rad @@ -47236,15 +46901,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - 12935 - - uid: 392 + - 12 + - 11 + - uid: 7362 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 2 - - uid: 393 + - uid: 7363 components: - type: Transform rot: 3.141592653589793 rad @@ -47252,8 +46917,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12935 - - uid: 396 + - 11 + - uid: 7364 components: - type: Transform rot: 3.141592653589793 rad @@ -47261,51 +46926,51 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13105 - - uid: 621 + - 13 + - uid: 7365 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-40.5 parent: 2 - - uid: 623 + - uid: 7366 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-35.5 parent: 2 - - uid: 707 + - uid: 7367 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-34.5 parent: 2 - - uid: 1372 + - uid: 7368 components: - type: Transform pos: -4.5,-69.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13124 - - uid: 1408 + - 16 + - 19 + - uid: 7369 components: - type: Transform pos: 3.5,-57.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - uid: 1427 + - 16 + - uid: 7370 components: - type: Transform pos: 3.5,-68.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - uid: 1429 + - 16 + - uid: 7371 components: - type: Transform rot: -1.5707963267948966 rad @@ -47313,16 +46978,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13117 - - uid: 1431 + - 18 + - uid: 7372 components: - type: Transform pos: 5.5,-63.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13117 - - uid: 1498 + - 18 + - uid: 7373 components: - type: Transform rot: 3.141592653589793 rad @@ -47330,8 +46995,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - uid: 1544 + - 38 + - uid: 7374 components: - type: Transform rot: -1.5707963267948966 rad @@ -47339,8 +47004,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13148 - - uid: 1701 + - 22 + - uid: 7375 components: - type: Transform rot: -1.5707963267948966 rad @@ -47348,9 +47013,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13147 - - 13150 - - uid: 1702 + - 21 + - 23 + - uid: 7376 components: - type: Transform rot: -1.5707963267948966 rad @@ -47358,14 +47023,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13147 - - uid: 1705 + - 21 + - uid: 7377 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-85.5 parent: 2 - - uid: 1715 + - uid: 7378 components: - type: Transform rot: 1.5707963267948966 rad @@ -47373,8 +47038,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13150 - - uid: 1723 + - 23 + - uid: 7379 components: - type: Transform rot: 1.5707963267948966 rad @@ -47382,8 +47047,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13151 - - uid: 2256 + - 24 + - uid: 7380 components: - type: Transform rot: 3.141592653589793 rad @@ -47391,8 +47056,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 - - uid: 2405 + - 29 + - uid: 7381 components: - type: Transform rot: 3.141592653589793 rad @@ -47400,8 +47065,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 - - uid: 2406 + - 29 + - uid: 7382 components: - type: Transform rot: 3.141592653589793 rad @@ -47409,8 +47074,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 - - uid: 2407 + - 29 + - uid: 7383 components: - type: Transform rot: 3.141592653589793 rad @@ -47418,8 +47083,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 2408 + - 26 + - uid: 7384 components: - type: Transform rot: 3.141592653589793 rad @@ -47427,8 +47092,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 2409 + - 26 + - uid: 7385 components: - type: Transform rot: 3.141592653589793 rad @@ -47436,8 +47101,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 2410 + - 26 + - uid: 7386 components: - type: Transform rot: 3.141592653589793 rad @@ -47445,9 +47110,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13165 - - 13168 - - uid: 2411 + - 27 + - 29 + - uid: 7387 components: - type: Transform rot: 3.141592653589793 rad @@ -47455,8 +47120,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13171 - - uid: 2412 + - 30 + - uid: 7388 components: - type: Transform rot: 3.141592653589793 rad @@ -47464,217 +47129,217 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13171 - - uid: 2826 + - 30 + - uid: 7389 components: - type: Transform pos: -1.5,-151.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - 13189 - - uid: 2827 + - 32 + - 37 + - uid: 7390 components: - type: Transform pos: 2.5,-152.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - uid: 2828 + - 32 + - uid: 7391 components: - type: Transform pos: 5.5,-147.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - 13180 - - uid: 2829 + - 32 + - 33 + - uid: 7392 components: - type: Transform pos: 4.5,-147.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - 13180 - - uid: 2830 + - 32 + - 33 + - uid: 7393 components: - type: Transform pos: 3.5,-147.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - 13180 - - uid: 2831 + - 32 + - 33 + - uid: 7394 components: - type: Transform pos: 4.5,-140.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13180 - - 13182 - - uid: 2832 + - 33 + - 34 + - uid: 7395 components: - type: Transform pos: 7.5,-138.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13182 - - uid: 2833 + - 34 + - uid: 7396 components: - type: Transform pos: 2.5,-135.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - uid: 2834 + - 31 + - uid: 7397 components: - type: Transform pos: -1.5,-139.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13185 - - uid: 2835 + - 31 + - 35 + - uid: 7398 components: - type: Transform pos: -1.5,-140.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13185 - - uid: 2836 + - 31 + - 35 + - uid: 7399 components: - type: Transform pos: -1.5,-141.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13185 - - uid: 2837 + - 31 + - 35 + - uid: 7400 components: - type: Transform pos: -4.5,-137.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13185 - - 13187 - - uid: 4359 + - 35 + - 36 + - uid: 7401 components: - type: Transform pos: -3.5,-201.5 parent: 2 - - uid: 5128 + - uid: 7402 components: - type: Transform pos: 4.5,-197.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13247 - - uid: 5129 + - 43 + - 46 + - uid: 7403 components: - type: Transform pos: 4.5,-198.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13247 - - uid: 5130 + - 43 + - 46 + - uid: 7404 components: - type: Transform pos: -1.5,-198.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13247 - - 13251 - - uid: 5131 + - 46 + - 48 + - uid: 7405 components: - type: Transform pos: -2.5,-199.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13251 - - 13252 - - uid: 5133 + - 48 + - 49 + - uid: 7406 components: - type: Transform pos: -3.5,-205.5 parent: 2 - - uid: 5134 + - uid: 7407 components: - type: Transform pos: 0.5,-191.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - 13249 - - uid: 5135 + - 44 + - 47 + - uid: 7408 components: - type: Transform pos: 2.5,-195.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13247 - - 13249 - - uid: 6726 + - 46 + - 47 + - uid: 7409 components: - type: Transform pos: 2.5,-260.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 6855 + - 70 + - uid: 7410 components: - type: Transform pos: 18.5,-244.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 6856 + - 71 + - uid: 7411 components: - type: Transform pos: 14.5,-256.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 6857 + - 71 + - uid: 7412 components: - type: Transform pos: 9.5,-256.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - uid: 6858 + - 69 + - uid: 7413 components: - type: Transform pos: 9.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - uid: 7798 + - 69 + - uid: 7414 components: - type: Transform rot: -1.5707963267948966 rad @@ -47682,8 +47347,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - uid: 7799 + - 8 + - uid: 7415 components: - type: Transform rot: -1.5707963267948966 rad @@ -47691,8 +47356,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - uid: 7800 + - 8 + - 57 + - uid: 7416 components: - type: Transform rot: -1.5707963267948966 rad @@ -47700,24 +47366,25 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - uid: 7820 + - 8 + - 57 + - uid: 7417 components: - type: Transform pos: -1.5,-260.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 7821 + - 70 + - uid: 7418 components: - type: Transform pos: 14.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 7879 + - 71 + - uid: 7419 components: - type: Transform rot: 3.141592653589793 rad @@ -47725,9 +47392,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15279 - - uid: 7885 + - 67 + - 68 + - uid: 7420 components: - type: Transform rot: 3.141592653589793 rad @@ -47735,35 +47402,35 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15279 - - 15280 - - uid: 8009 + - 68 + - 69 + - uid: 7421 components: - type: Transform pos: -1.5,-243.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - uid: 8012 + - 67 + - uid: 7422 components: - type: Transform pos: 0.5,-252.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15282 - - uid: 8037 + - 67 + - 70 + - uid: 7423 components: - type: Transform pos: 2.5,-256.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - 15282 - - uid: 8213 + - 69 + - 70 + - uid: 7424 components: - type: Transform rot: 3.141592653589793 rad @@ -47771,9 +47438,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15279 - - uid: 8483 + - 67 + - 68 + - uid: 7425 components: - type: Transform rot: 3.141592653589793 rad @@ -47781,27 +47448,27 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15279 - - uid: 8852 + - 67 + - 68 + - uid: 7426 components: - type: Transform pos: -0.5,-189.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - 14727 - - uid: 9827 + - 44 + - 66 + - uid: 7427 components: - type: Transform pos: -0.5,-190.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - 14727 - - uid: 10538 + - 44 + - 66 + - uid: 7428 components: - type: Transform rot: 3.141592653589793 rad @@ -47809,8 +47476,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 10757 + - 54 + - uid: 7429 components: - type: Transform rot: -1.5707963267948966 rad @@ -47818,9 +47485,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13116 - - 13115 - - uid: 12306 + - 17 + - 16 + - uid: 7430 components: - type: Transform rot: -1.5707963267948966 rad @@ -47828,8 +47495,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 5925 - - uid: 12954 + - 6 + - uid: 7431 components: - type: Transform rot: 1.5707963267948966 rad @@ -47837,18 +47504,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13147 - - uid: 13108 + - 20 + - 21 + - uid: 7432 components: - type: Transform pos: -0.5,-252.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15282 - - uid: 13132 + - 67 + - 70 + - uid: 7433 components: - type: Transform rot: 1.5707963267948966 rad @@ -47856,9 +47523,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13147 - - uid: 13133 + - 20 + - 21 + - uid: 7434 components: - type: Transform rot: 1.5707963267948966 rad @@ -47866,9 +47533,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13147 - - uid: 13134 + - 20 + - 21 + - uid: 7435 components: - type: Transform rot: 1.5707963267948966 rad @@ -47876,9 +47543,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13148 - - uid: 13135 + - 20 + - 22 + - uid: 7436 components: - type: Transform rot: 1.5707963267948966 rad @@ -47886,9 +47553,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13148 - - uid: 13136 + - 20 + - 22 + - uid: 7437 components: - type: Transform rot: 1.5707963267948966 rad @@ -47896,9 +47563,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13148 - - uid: 13158 + - 20 + - 22 + - uid: 7438 components: - type: Transform rot: 1.5707963267948966 rad @@ -47906,9 +47573,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - 13168 - - uid: 13159 + - 26 + - 29 + - uid: 7439 components: - type: Transform rot: 1.5707963267948966 rad @@ -47916,9 +47583,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - 13168 - - uid: 13160 + - 26 + - 29 + - uid: 7440 components: - type: Transform rot: 1.5707963267948966 rad @@ -47926,8 +47593,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13163 + - 26 + - uid: 7441 components: - type: Transform rot: 3.141592653589793 rad @@ -47935,9 +47602,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13165 - - 13168 - - uid: 13172 + - 27 + - 29 + - uid: 7442 components: - type: Transform rot: -1.5707963267948966 rad @@ -47945,9 +47612,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13178 - - uid: 13173 + - 31 + - 32 + - uid: 7443 components: - type: Transform rot: -1.5707963267948966 rad @@ -47955,9 +47622,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13178 - - uid: 13174 + - 31 + - 32 + - uid: 7444 components: - type: Transform rot: -1.5707963267948966 rad @@ -47965,8 +47632,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - uid: 13190 + - 32 + - uid: 7445 components: - type: Transform rot: 1.5707963267948966 rad @@ -47974,8 +47641,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13211 - - uid: 13191 + - 39 + - uid: 7446 components: - type: Transform rot: 1.5707963267948966 rad @@ -47983,8 +47650,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13211 - - uid: 13196 + - 39 + - uid: 7447 components: - type: Transform rot: -1.5707963267948966 rad @@ -47992,8 +47659,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13213 - - uid: 13197 + - 40 + - uid: 7448 components: - type: Transform rot: -1.5707963267948966 rad @@ -48001,8 +47668,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13213 - - uid: 13199 + - 40 + - uid: 7449 components: - type: Transform rot: -1.5707963267948966 rad @@ -48010,8 +47677,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13211 - - uid: 13200 + - 39 + - uid: 7450 components: - type: Transform rot: -1.5707963267948966 rad @@ -48019,33 +47686,33 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8201 - - 13218 - - uid: 13203 + - 7 + - 41 + - uid: 7451 components: - type: Transform pos: 6.5,-164.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13218 - - uid: 13204 + - 41 + - uid: 7452 components: - type: Transform pos: 2.5,-162.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - uid: 13205 + - 38 + - uid: 7453 components: - type: Transform pos: -1.5,-163.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - uid: 13223 + - 38 + - uid: 7454 components: - type: Transform rot: 3.141592653589793 rad @@ -48053,9 +47720,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13241 - - uid: 13224 + - 43 + - 44 + - uid: 7455 components: - type: Transform rot: 3.141592653589793 rad @@ -48063,9 +47730,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13241 - - uid: 13225 + - 43 + - 44 + - uid: 7456 components: - type: Transform rot: 3.141592653589793 rad @@ -48073,9 +47740,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13244 - - uid: 13226 + - 43 + - 45 + - uid: 7457 components: - type: Transform rot: 3.141592653589793 rad @@ -48083,42 +47750,42 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13244 - - uid: 13242 + - 43 + - 45 + - uid: 7458 components: - type: Transform pos: -1.5,-205.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13244 - - 13252 - - uid: 13264 + - 45 + - 49 + - uid: 7459 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-230.5 parent: 2 - - uid: 13265 + - uid: 7460 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-230.5 parent: 2 - - uid: 13266 + - uid: 7461 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-219.5 parent: 2 - - uid: 13267 + - uid: 7462 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-219.5 parent: 2 - - uid: 13310 + - uid: 7463 components: - type: Transform rot: 3.141592653589793 rad @@ -48126,9 +47793,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 2277 - - uid: 13313 + - 50 + - 5 + - uid: 7464 components: - type: Transform rot: -1.5707963267948966 rad @@ -48136,9 +47803,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13322 - - uid: 13314 + - 50 + - 51 + - uid: 7465 components: - type: Transform rot: -1.5707963267948966 rad @@ -48146,9 +47813,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13333 - - uid: 13315 + - 50 + - 52 + - uid: 7466 components: - type: Transform rot: -1.5707963267948966 rad @@ -48156,35 +47823,35 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13333 - - uid: 13319 + - 50 + - 52 + - uid: 7467 components: - type: Transform pos: 4.5,-275.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 - - 13341 - - uid: 13320 + - 51 + - 54 + - uid: 7468 components: - type: Transform pos: 5.5,-275.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 - - 13341 - - uid: 13321 + - 51 + - 54 + - uid: 7469 components: - type: Transform pos: 5.5,-269.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 - - uid: 13324 + - 51 + - uid: 7470 components: - type: Transform rot: 1.5707963267948966 rad @@ -48192,25 +47859,25 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2277 - - uid: 13328 + - 5 + - uid: 7471 components: - type: Transform pos: 1.5,-285.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13333 - - uid: 13332 + - 52 + - uid: 7472 components: - type: Transform pos: -5.5,-282.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13333 - - 13335 - - uid: 13338 + - 52 + - 53 + - uid: 7473 components: - type: Transform rot: 3.141592653589793 rad @@ -48218,8 +47885,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13339 + - 54 + - uid: 7474 components: - type: Transform rot: 3.141592653589793 rad @@ -48227,8 +47894,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13340 + - 54 + - uid: 7475 components: - type: Transform rot: 3.141592653589793 rad @@ -48236,8 +47903,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13342 + - 54 + - uid: 7476 components: - type: Transform rot: 3.141592653589793 rad @@ -48245,9 +47912,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - 8432 - - uid: 13343 + - 56 + - 8 + - uid: 7477 components: - type: Transform rot: 3.141592653589793 rad @@ -48255,9 +47922,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - 8432 - - uid: 13344 + - 56 + - 8 + - uid: 7478 components: - type: Transform rot: 3.141592653589793 rad @@ -48265,9 +47932,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - 8432 - - uid: 13345 + - 56 + - 8 + - uid: 7479 components: - type: Transform rot: 3.141592653589793 rad @@ -48275,9 +47942,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 8432 - - uid: 13346 + - 55 + - 8 + - uid: 7480 components: - type: Transform rot: 3.141592653589793 rad @@ -48285,9 +47952,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 8432 - - uid: 13347 + - 55 + - 8 + - uid: 7481 components: - type: Transform rot: 3.141592653589793 rad @@ -48295,9 +47962,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 8432 - - uid: 13353 + - 55 + - 8 + - uid: 7482 components: - type: Transform rot: 3.141592653589793 rad @@ -48305,8 +47972,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - uid: 13354 + - 55 + - uid: 7483 components: - type: Transform rot: 3.141592653589793 rad @@ -48314,8 +47981,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - uid: 13360 + - 55 + - uid: 7484 components: - type: Transform rot: -1.5707963267948966 rad @@ -48323,9 +47990,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - 13383 - - uid: 13361 + - 56 + - 60 + - uid: 7485 components: - type: Transform rot: -1.5707963267948966 rad @@ -48333,8 +48000,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13362 + - 56 + - uid: 7486 components: - type: Transform rot: -1.5707963267948966 rad @@ -48342,8 +48009,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13363 + - 56 + - uid: 7487 components: - type: Transform rot: -1.5707963267948966 rad @@ -48351,8 +48018,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13364 + - 56 + - uid: 7488 components: - type: Transform rot: -1.5707963267948966 rad @@ -48360,25 +48027,22 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13367 + - 56 + - uid: 7489 components: - type: Transform pos: -1.5,-317.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13370 - - 13374 - - uid: 13368 + - 57 + - 58 + - uid: 7490 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13370 - - uid: 13372 + - uid: 7491 components: - type: Transform rot: 1.5707963267948966 rad @@ -48386,9 +48050,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13374 - - 8432 - - uid: 13373 + - 58 + - 8 + - uid: 7492 components: - type: Transform rot: 1.5707963267948966 rad @@ -48396,8 +48060,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13374 - - uid: 13377 + - 58 + - uid: 7493 components: - type: Transform rot: 1.5707963267948966 rad @@ -48405,9 +48069,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - 13382 - - uid: 13381 + - 8 + - 59 + - uid: 7494 components: - type: Transform rot: 1.5707963267948966 rad @@ -48415,8 +48079,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13382 - - uid: 13386 + - 59 + - uid: 7495 components: - type: Transform rot: 3.141592653589793 rad @@ -48424,10 +48088,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 - - 5925 - - uid: 13387 + - 61 + - 10 + - 6 + - uid: 7496 components: - type: Transform rot: 3.141592653589793 rad @@ -48435,10 +48099,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 - - 5925 - - uid: 13390 + - 61 + - 10 + - 6 + - uid: 7497 components: - type: Transform rot: 1.5707963267948966 rad @@ -48446,28 +48110,28 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 - - uid: 13395 + - 61 + - 10 + - uid: 7498 components: - type: Transform pos: 0.5,-343.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11906 - - 5925 - - uid: 13396 + - 10 + - 6 + - uid: 7499 components: - type: Transform pos: -4.5,-343.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11906 - - 13402 - - 5925 - - uid: 13412 + - 10 + - 62 + - 6 + - uid: 7500 components: - type: Transform rot: 3.141592653589793 rad @@ -48475,8 +48139,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13413 + - 63 + - uid: 7501 components: - type: Transform rot: 3.141592653589793 rad @@ -48484,8 +48148,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13414 + - 63 + - uid: 7502 components: - type: Transform rot: 3.141592653589793 rad @@ -48493,8 +48157,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13415 + - 63 + - uid: 7503 components: - type: Transform rot: 3.141592653589793 rad @@ -48502,8 +48166,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13416 + - 63 + - uid: 7504 components: - type: Transform rot: 3.141592653589793 rad @@ -48511,8 +48175,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13417 + - 63 + - uid: 7505 components: - type: Transform rot: 3.141592653589793 rad @@ -48520,8 +48184,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13418 + - 63 + - uid: 7506 components: - type: Transform rot: 3.141592653589793 rad @@ -48529,9 +48193,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - 13426 - - uid: 13419 + - 63 + - 64 + - uid: 7507 components: - type: Transform rot: 3.141592653589793 rad @@ -48539,9 +48203,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - 13426 - - uid: 13420 + - 63 + - 64 + - uid: 7508 components: - type: Transform rot: 3.141592653589793 rad @@ -48549,8 +48213,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 14728 + - 63 + - uid: 7509 components: - type: Transform rot: 3.141592653589793 rad @@ -48558,24 +48222,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14727 - - uid: 15086 + - 66 + - uid: 7510 components: - type: Transform pos: 7.5,-190.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - uid: 15087 + - 44 + - uid: 7511 components: - type: Transform pos: 7.5,-205.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13244 - - uid: 15281 + - 45 + - uid: 7512 components: - type: Transform rot: -1.5707963267948966 rad @@ -48583,8 +48247,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - uid: 15290 + - 69 + - uid: 7513 components: - type: Transform rot: -1.5707963267948966 rad @@ -48592,8 +48256,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 15291 + - 71 + - uid: 7514 components: - type: Transform rot: -1.5707963267948966 rad @@ -48601,62 +48265,62 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 16995 + - 71 + - uid: 7515 components: - type: Transform pos: -12.5,-260.5 parent: 2 - - uid: 16996 + - uid: 7516 components: - type: Transform pos: -12.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 16971 - - uid: 16997 + - 72 + - uid: 7517 components: - type: Transform pos: -12.5,-243.5 parent: 2 - proto: Fireplace entities: - - uid: 289 + - uid: 7518 components: - type: Transform pos: -3.5,-9.5 parent: 2 - - uid: 2838 + - uid: 7519 components: - type: Transform pos: -3.5,-138.5 parent: 2 - proto: Flash entities: - - uid: 409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.435971,-12.5018215 - parent: 2 - - uid: 12776 + - uid: 5606 components: - type: Transform - parent: 12773 + parent: 5605 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 7520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.435971,-12.5018215 + parent: 2 - proto: FlashlightLantern entities: - - uid: 3675 + - uid: 7521 components: - type: Transform pos: -2.459197,-144.20804 parent: 2 - proto: FloorDrain entities: - - uid: 2316 + - uid: 7522 components: - type: Transform rot: 1.5707963267948966 rad @@ -48664,7 +48328,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 2317 + - uid: 7523 components: - type: Transform rot: 1.5707963267948966 rad @@ -48672,7 +48336,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 2926 + - uid: 7524 components: - type: Transform rot: 3.141592653589793 rad @@ -48680,7 +48344,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 3090 + - uid: 7525 components: - type: Transform rot: 1.5707963267948966 rad @@ -48688,14 +48352,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 14375 + - uid: 7526 components: - type: Transform pos: 15.5,-61.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 16519 + - uid: 7527 components: - type: Transform pos: -1.5,-172.5 @@ -48704,7 +48368,7 @@ entities: fixtures: {} - proto: FloraTree01 entities: - - uid: 11690 + - uid: 7528 components: - type: Transform rot: 3.141592653589793 rad @@ -48712,79 +48376,79 @@ entities: parent: 2 - proto: FloraTree05 entities: - - uid: 15092 + - uid: 7529 components: - type: Transform pos: 11.2466135,-200.43379 parent: 2 - proto: FloraTree06 entities: - - uid: 15094 + - uid: 7530 components: - type: Transform pos: 9.820292,-197.55566 parent: 2 - proto: FloraTreeLarge01 entities: - - uid: 15088 + - uid: 7531 components: - type: Transform pos: 10.625899,-194.5191 parent: 2 - proto: FloraTreeStump entities: - - uid: 710 + - uid: 7532 components: - type: Transform pos: 4.1898217,-41.37392 parent: 2 - proto: FoodBanana entities: - - uid: 8946 + - uid: 5471 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 10018 + - uid: 5472 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 10091 + - uid: 5473 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodBoxDonkpocketTeriyaki entities: - - uid: 215 + - uid: 7533 components: - type: Transform pos: 6.6280804,-11.907726 parent: 2 - proto: FoodBurgerBacon entities: - - uid: 7583 + - uid: 7534 components: - type: Transform pos: 7.422054,-197.01524 parent: 2 - proto: FoodBurgerRobot entities: - - uid: 9974 + - uid: 7535 components: - type: Transform pos: -1.5525827,-302.4798 parent: 2 - proto: FoodCarrot entities: - - uid: 2308 + - uid: 7536 components: - type: Transform rot: -1.5707963267948966 rad @@ -48792,7 +48456,7 @@ entities: parent: 2 - proto: FoodCartCold entities: - - uid: 12368 + - uid: 7537 components: - type: Transform rot: -1.5707963267948966 rad @@ -48800,7 +48464,7 @@ entities: parent: 2 - proto: FoodCartHot entities: - - uid: 2319 + - uid: 7538 components: - type: Transform rot: -1.5707963267948966 rad @@ -48808,114 +48472,114 @@ entities: parent: 2 - proto: FoodCondimentBottleEnzyme entities: - - uid: 26570 + - uid: 7539 components: - type: Transform pos: 1.0586631,-370.32172 parent: 2 - proto: FoodDonutCaramel entities: - - uid: 11522 + - uid: 7540 components: - type: Transform pos: -0.40804732,-345.55585 parent: 2 - proto: FoodDonutChaos entities: - - uid: 5382 + - uid: 7541 components: - type: Transform pos: -0.61935514,-345.2918 parent: 2 - proto: FoodEggBoiled entities: - - uid: 4194 + - uid: 7542 components: - type: Transform pos: -0.6405136,-11.597754 parent: 2 - proto: FoodEggplant entities: - - uid: 14357 + - uid: 7543 components: - type: Transform pos: 16.665325,-82.4353 parent: 2 - proto: FoodMealPotatoYaki entities: - - uid: 15037 + - uid: 7544 components: - type: Transform pos: -10.433084,-134.28047 parent: 2 - proto: FoodPieBananaCream entities: - - uid: 2006 - components: - - type: Transform - pos: -7.22454,-124.50731 - parent: 2 - - uid: 10014 + - uid: 5474 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 10781 + - uid: 5475 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 7545 + components: + - type: Transform + pos: -7.22454,-124.50731 + parent: 2 - proto: FoodPoppy entities: - - uid: 97 + - uid: 7546 components: - type: Transform pos: -1.3108504,-1.6374404 parent: 2 - - uid: 993 + - uid: 7547 components: - type: Transform rot: 3.141592653589793 rad pos: 3.308499,-40.737587 parent: 2 - - uid: 4106 + - uid: 7548 components: - type: Transform pos: -4.616196,-20.118092 parent: 2 - proto: FoodPotato entities: - - uid: 2306 + - uid: 7549 components: - type: Transform pos: 1.3938253,-87.1436 parent: 2 - - uid: 2307 + - uid: 7550 components: - type: Transform pos: 1.6579595,-87.28883 parent: 2 - proto: FoodSaladCitrus entities: - - uid: 14742 + - uid: 7551 components: - type: Transform pos: -6.285258,-307.37143 parent: 2 - proto: FoodSoupTomatoBlood entities: - - uid: 367 + - uid: 7552 components: - type: Transform pos: -3.4185836,2.6839163 parent: 2 - proto: ForkPlastic entities: - - uid: 9985 + - uid: 7553 components: - type: Transform rot: 3.141592653589793 rad @@ -48923,61 +48587,51 @@ entities: parent: 2 - proto: FuelDispenser entities: - - uid: 16898 + - uid: 7554 components: - type: Transform pos: -4.5,-306.5 parent: 2 - proto: GasCanisterBrokenBase entities: - - uid: 14639 + - uid: 7555 components: - type: Transform pos: -5.5,-259.5 parent: 2 - proto: GasFilter entities: - - uid: 8509 + - uid: 9218 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-170.5 parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 8512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-170.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - proto: GasFilterFlipped entities: - - uid: 6673 + - uid: 7558 components: - type: Transform pos: -17.5,-257.5 parent: 2 - - uid: 8816 + - uid: 7559 components: - type: Transform pos: -17.5,-253.5 parent: 2 - - uid: 8917 + - uid: 7560 components: - type: Transform pos: -17.5,-255.5 parent: 2 - - uid: 11901 + - uid: 7561 components: - type: Transform pos: -17.5,-251.5 parent: 2 - proto: GasMinerCarbonDioxide entities: - - uid: 13271 + - uid: 7562 components: - type: Transform rot: -1.5707963267948966 rad @@ -48985,21 +48639,21 @@ entities: parent: 2 - proto: GasMinerNitrogenStationLarge entities: - - uid: 7546 + - uid: 7563 components: - type: Transform pos: -20.5,-257.5 parent: 2 - proto: GasMinerOxygenStationLarge entities: - - uid: 8202 + - uid: 7564 components: - type: Transform pos: -20.5,-255.5 parent: 2 - proto: GasMixer entities: - - uid: 11211 + - uid: 7565 components: - type: Transform pos: 5.5,-356.5 @@ -49008,25 +48662,25 @@ entities: color: '#FFD800FF' - proto: GasOutletInjector entities: - - uid: 3760 + - uid: 7566 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-257.5 parent: 2 - - uid: 4021 + - uid: 7567 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-255.5 parent: 2 - - uid: 7237 + - uid: 7568 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-251.5 parent: 2 - - uid: 7924 + - uid: 7569 components: - type: Transform rot: 1.5707963267948966 rad @@ -49034,7 +48688,7 @@ entities: parent: 2 - proto: GasPassiveVent entities: - - uid: 545 + - uid: 7570 components: - type: Transform rot: -1.5707963267948966 rad @@ -49042,37 +48696,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 618 + - uid: 7571 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 938 + color: '#990000FF' + - uid: 7572 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1102 + color: '#990000FF' + - uid: 7573 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3114 + color: '#990000FF' + - uid: 7574 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-253.5 parent: 2 - - uid: 3256 + - uid: 7575 components: - type: Transform rot: 1.5707963267948966 rad @@ -49080,45 +48734,45 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3405 + - uid: 7576 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3500 + color: '#990000FF' + - uid: 7577 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3961 + color: '#990000FF' + - uid: 7578 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4049 + color: '#990000FF' + - uid: 7579 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-260.5 parent: 2 - - uid: 4154 + - uid: 7580 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-180.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5014 + color: '#990000FF' + - uid: 7581 components: - type: Transform rot: 1.5707963267948966 rad @@ -49126,15 +48780,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5026 + - uid: 7582 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5171 + color: '#990000FF' + - uid: 7583 components: - type: Transform rot: 1.5707963267948966 rad @@ -49142,7 +48796,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5175 + - uid: 7584 components: - type: Transform rot: 1.5707963267948966 rad @@ -49150,13 +48804,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5320 + - uid: 7585 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-249.5 parent: 2 - - uid: 5367 + - uid: 7586 components: - type: Transform rot: -1.5707963267948966 rad @@ -49164,50 +48818,50 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6796 + - uid: 7587 components: - type: Transform pos: -19.5,-257.5 parent: 2 - - uid: 8789 + - uid: 7588 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-251.5 parent: 2 - - uid: 10694 + - uid: 7589 components: - type: Transform pos: -7.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10928 + color: '#990000FF' + - uid: 7590 components: - type: Transform pos: 8.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11916 + color: '#990000FF' + - uid: 7591 components: - type: Transform pos: -19.5,-255.5 parent: 2 - - uid: 12016 + - uid: 7592 components: - type: Transform pos: -19.5,-260.5 parent: 2 - - uid: 12218 + - uid: 7593 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12389 + color: '#990000FF' + - uid: 7594 components: - type: Transform rot: 1.5707963267948966 rad @@ -49215,7 +48869,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12405 + - uid: 7595 components: - type: Transform rot: 1.5707963267948966 rad @@ -49223,15 +48877,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12517 + - uid: 7596 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12907 + color: '#990000FF' + - uid: 7597 components: - type: Transform rot: -1.5707963267948966 rad @@ -49239,29 +48893,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13103 + - uid: 7598 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13104 + color: '#990000FF' + - uid: 7599 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14298 + color: '#990000FF' + - uid: 7600 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-263.5 parent: 2 - - uid: 14451 + - uid: 7601 components: - type: Transform rot: -1.5707963267948966 rad @@ -49271,443 +48925,410 @@ entities: color: '#FF0000FF' - proto: GasPipeBend entities: - - uid: 735 + - uid: 7602 components: - type: Transform pos: 2.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 738 + color: '#990000FF' + - uid: 7603 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 853 + color: '#990000FF' + - uid: 7604 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 854 + color: '#0055CCFF' + - uid: 7605 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 869 + color: '#0055CCFF' + - uid: 7606 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 873 - components: - - type: Transform - pos: 1.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 930 + color: '#0055CCFF' + - uid: 7607 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 981 + color: '#990000FF' + - uid: 7608 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1021 + color: '#0055CCFF' + - uid: 7609 components: - type: Transform pos: 3.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1107 + color: '#990000FF' + - uid: 7610 components: - type: Transform pos: -5.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1149 + color: '#990000FF' + - uid: 7611 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1200 + color: '#990000FF' + - uid: 7612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7613 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1202 + color: '#990000FF' + - uid: 7614 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1396 + color: '#990000FF' + - uid: 7615 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1670 + color: '#990000FF' + - uid: 7616 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1994 + color: '#0055CCFF' + - uid: 7617 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-170.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2925 + color: '#990000FF' + - uid: 7619 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-243.5 parent: 2 - - uid: 2957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-170.5 - parent: 2 - - uid: 3361 + - uid: 7621 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3409 + color: '#0055CCFF' + - uid: 7622 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3450 + color: '#0055CCFF' + - uid: 7623 components: - type: Transform pos: 5.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3505 + color: '#0055CCFF' + - uid: 7624 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3506 + color: '#990000FF' + - uid: 7625 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3531 + color: '#990000FF' + - uid: 7626 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3562 + color: '#990000FF' + - uid: 7627 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3610 + color: '#990000FF' + - uid: 7628 components: - type: Transform pos: 6.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3636 + color: '#990000FF' + - uid: 7629 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3882 + color: '#990000FF' + - uid: 7630 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-17.5 parent: 2 - - uid: 3955 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7631 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4054 + color: '#990000FF' + - uid: 7632 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4113 + color: '#990000FF' + - uid: 7633 components: - type: Transform pos: -17.5,-249.5 parent: 2 - - uid: 4547 + - uid: 7634 components: - type: Transform pos: 4.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4984 + color: '#990000FF' + - uid: 7635 components: - type: Transform pos: 16.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5101 + color: '#990000FF' + - uid: 7636 components: - type: Transform - pos: -4.5,-197.5 + rot: 3.141592653589793 rad + pos: -2.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5311 + color: '#990000FF' + - uid: 7637 components: - type: Transform - pos: 5.5,-162.5 + pos: -4.5,-197.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5318 - components: - - type: Transform - pos: 5.5,-175.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5345 + - uid: 7638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-172.5 + pos: 5.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5379 + color: '#990000FF' + - uid: 7639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-220.5 + pos: 5.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5381 + color: '#0055CCFF' + - uid: 7640 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-229.5 + pos: 4.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5502 + color: '#990000FF' + - uid: 7641 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-247.5 parent: 2 - - uid: 5959 + - uid: 7642 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-247.5 parent: 2 - - uid: 6069 + - uid: 7643 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-247.5 parent: 2 - - uid: 6630 + - uid: 7644 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-261.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6694 + color: '#0055CCFF' + - uid: 7645 components: - type: Transform pos: 17.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6888 + color: '#990000FF' + - uid: 7646 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-250.5 parent: 2 - - uid: 7197 + - uid: 7647 components: - type: Transform pos: -18.5,-243.5 parent: 2 - - uid: 7360 + - uid: 7648 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-258.5 parent: 2 - - uid: 7433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-249.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7485 + - uid: 7649 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7813 + color: '#0055CCFF' + - uid: 7650 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-256.5 parent: 2 - - uid: 7905 + - uid: 7651 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8047 + color: '#990000FF' + - uid: 7652 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8086 + color: '#990000FF' + - uid: 7653 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8090 + color: '#990000FF' + - uid: 7654 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8267 + color: '#990000FF' + - uid: 7655 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-261.5 parent: 2 - - uid: 8480 + - uid: 7656 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-247.5 parent: 2 - - uid: 9520 + - uid: 7657 components: - type: Transform pos: 5.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10079 + color: '#0055CCFF' + - uid: 7658 components: - type: Transform pos: 9.5,-114.5 parent: 2 - - uid: 11214 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7659 components: - type: Transform rot: 3.141592653589793 rad @@ -49715,101 +49336,101 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 11253 + - uid: 7660 components: - type: Transform pos: 7.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12062 + color: '#0055CCFF' + - uid: 7661 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12150 + color: '#990000FF' + - uid: 7662 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12244 + color: '#990000FF' + - uid: 7663 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-286.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12245 + color: '#990000FF' + - uid: 7664 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-286.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12383 + color: '#990000FF' + - uid: 7665 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12521 + color: '#0055CCFF' + - uid: 7666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-314.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7667 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12529 + color: '#990000FF' + - uid: 7668 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12565 + color: '#990000FF' + - uid: 7669 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12566 + color: '#0055CCFF' + - uid: 7670 components: - type: Transform pos: 8.5,-301.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-298.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12623 + color: '#990000FF' + - uid: 7671 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12712 + color: '#990000FF' + - uid: 7672 components: - type: Transform rot: 3.141592653589793 rad @@ -49817,107 +49438,108 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 12807 + - uid: 7673 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12831 + color: '#990000FF' + - uid: 7674 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12842 + color: '#990000FF' + - uid: 7675 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12843 + color: '#0055CCFF' + - uid: 7676 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12844 + color: '#0055CCFF' + - uid: 7677 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12879 + color: '#0055CCFF' + - uid: 7678 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-360.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12981 + color: '#0055CCFF' + - uid: 7679 components: - type: Transform - pos: 1.5,-359.5 + rot: -1.5707963267948966 rad + pos: 7.5,-367.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12982 + color: '#990000FF' + - uid: 7680 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-359.5 + pos: 1.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13035 + color: '#0055CCFF' + - uid: 7681 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13143 + color: '#990000FF' + - uid: 7682 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14306 + color: '#0055CCFF' + - uid: 7683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-367.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7684 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-263.5 parent: 2 - - uid: 14423 + - uid: 7685 components: - type: Transform pos: 18.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14425 + - uid: 7686 components: - type: Transform rot: 3.141592653589793 rad @@ -49925,7 +49547,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14437 + - uid: 7687 components: - type: Transform rot: 3.141592653589793 rad @@ -49933,7 +49555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14442 + - uid: 7688 components: - type: Transform rot: 3.141592653589793 rad @@ -49941,1069 +49563,1074 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14607 + - uid: 7689 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-252.5 parent: 2 - - uid: 14815 + - uid: 7690 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14816 + color: '#0055CCFF' + - uid: 7691 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14836 + color: '#0055CCFF' + - uid: 7692 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14864 + color: '#0055CCFF' + - uid: 7693 components: - type: Transform pos: -3.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14865 + color: '#0055CCFF' + - uid: 7694 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14895 + color: '#0055CCFF' + - uid: 7695 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15042 + color: '#0055CCFF' + - uid: 7696 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15101 + color: '#0055CCFF' + - uid: 7697 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15102 + color: '#0055CCFF' + - uid: 7698 components: - type: Transform pos: 5.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15111 + color: '#0055CCFF' + - uid: 7699 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15126 + color: '#0055CCFF' + - uid: 7700 components: - type: Transform pos: 5.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-273.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15200 + color: '#0055CCFF' + - uid: 7701 components: - type: Transform pos: 5.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16488 + color: '#0055CCFF' + - uid: 7702 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16489 + color: '#990000FF' + - uid: 7703 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16687 + color: '#990000FF' + - uid: 7704 components: - type: Transform pos: -3.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 8124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-124.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8138 + components: + - type: Transform + pos: -2.5,-169.5 + parent: 2 + - uid: 9221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-170.5 + parent: 2 + - uid: 13633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-170.5 + parent: 2 - proto: GasPipeFourway entities: - - uid: 615 + - uid: 7705 components: - type: Transform pos: 2.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 846 + color: '#990000FF' + - uid: 7706 components: - type: Transform pos: 1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 860 + color: '#0055CCFF' + - uid: 7707 components: - type: Transform pos: 1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1261 + color: '#0055CCFF' + - uid: 7708 components: - type: Transform pos: 0.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1302 + color: '#0055CCFF' + - uid: 7709 components: - type: Transform pos: -0.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1370 + color: '#990000FF' + - uid: 7710 components: - type: Transform pos: 0.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3273 + color: '#0055CCFF' + - uid: 7711 components: - type: Transform pos: -3.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3335 + color: '#990000FF' + - uid: 7712 components: - type: Transform pos: 0.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3350 + color: '#0055CCFF' + - uid: 7713 components: - type: Transform pos: 0.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3375 + color: '#0055CCFF' + - uid: 7714 components: - type: Transform pos: 0.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3419 + color: '#0055CCFF' + - uid: 7715 components: - type: Transform pos: 1.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3957 + color: '#0055CCFF' + - uid: 7716 components: - type: Transform pos: 4.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4011 + color: '#990000FF' + - uid: 7717 components: - type: Transform pos: -0.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4119 + color: '#990000FF' + - uid: 7718 components: - type: Transform pos: 0.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4529 + color: '#0055CCFF' + - uid: 7719 components: - type: Transform pos: 0.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4615 + color: '#0055CCFF' + - uid: 7720 components: - type: Transform pos: 0.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4666 + color: '#0055CCFF' + - uid: 7721 components: - type: Transform pos: 0.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4748 + color: '#0055CCFF' + - uid: 7722 components: - type: Transform pos: -4.5,-200.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5052 + - uid: 7723 components: - type: Transform pos: 0.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5084 + color: '#0055CCFF' + - uid: 7724 components: - type: Transform pos: 1.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5263 + color: '#990000FF' + - uid: 7725 components: - type: Transform pos: 1.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5304 + color: '#990000FF' + - uid: 7726 components: - type: Transform pos: 0.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5926 + color: '#0055CCFF' + - uid: 7727 components: - type: Transform pos: 0.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6693 + color: '#0055CCFF' + - uid: 7728 components: - type: Transform pos: 0.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7204 + color: '#0055CCFF' + - uid: 7729 components: - type: Transform pos: 0.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7822 + color: '#0055CCFF' + - uid: 7730 + components: + - type: Transform + pos: 1.5,-168.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7731 components: - type: Transform pos: 0.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7956 + color: '#0055CCFF' + - uid: 7732 components: - type: Transform pos: -3.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9809 + color: '#990000FF' + - uid: 7733 + components: + - type: Transform + pos: 0.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7734 components: - type: Transform pos: 0.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9816 + color: '#0055CCFF' + - uid: 7735 components: - type: Transform pos: -3.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12441 + color: '#0055CCFF' + - uid: 7736 + components: + - type: Transform + pos: 17.5,-248.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7737 components: - type: Transform pos: -0.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12722 + color: '#990000FF' + - uid: 7738 components: - type: Transform pos: 1.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12746 + color: '#990000FF' + - uid: 7739 components: - type: Transform pos: 0.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12755 + color: '#0055CCFF' + - uid: 7740 components: - type: Transform pos: 1.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12768 + color: '#990000FF' + - uid: 7741 components: - type: Transform pos: -4.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12796 + color: '#990000FF' + - uid: 7742 components: - type: Transform pos: 1.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12797 + color: '#990000FF' + - uid: 7743 components: - type: Transform pos: -4.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12949 + color: '#990000FF' + - uid: 7744 components: - type: Transform pos: 4.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12968 + color: '#0055CCFF' + - uid: 7745 components: - type: Transform pos: 1.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasPipeStraight entities: - - uid: 444 + - uid: 7618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-171.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: 1.5,-359.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7747 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 533 + color: '#990000FF' + - uid: 7748 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 594 + color: '#990000FF' + - uid: 7749 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 595 + color: '#990000FF' + - uid: 7750 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 602 + color: '#990000FF' + - uid: 7751 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 612 + color: '#990000FF' + - uid: 7752 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 624 + color: '#990000FF' + - uid: 7753 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 628 + color: '#990000FF' + - uid: 7754 components: - type: Transform pos: 6.5,-16.5 parent: 2 - - uid: 629 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7755 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 630 + color: '#990000FF' + - uid: 7756 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 635 + color: '#990000FF' + - uid: 7757 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 660 + color: '#990000FF' + - uid: 7758 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 673 + color: '#990000FF' + - uid: 7759 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 685 + color: '#990000FF' + - uid: 7760 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 686 + color: '#990000FF' + - uid: 7761 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 709 + color: '#990000FF' + - uid: 7762 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 715 + color: '#990000FF' + - uid: 7763 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 717 + color: '#990000FF' + - uid: 7764 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 718 + color: '#990000FF' + - uid: 7765 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 719 + color: '#990000FF' + - uid: 7766 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 721 + color: '#990000FF' + - uid: 7767 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 722 + color: '#990000FF' + - uid: 7768 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 723 + color: '#990000FF' + - uid: 7769 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 724 + color: '#990000FF' + - uid: 7770 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 725 + color: '#990000FF' + - uid: 7771 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 731 + color: '#990000FF' + - uid: 7772 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 732 + color: '#990000FF' + - uid: 7773 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 733 + color: '#990000FF' + - uid: 7774 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 736 + color: '#990000FF' + - uid: 7775 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 739 + color: '#990000FF' + - uid: 7776 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 740 + color: '#990000FF' + - uid: 7777 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 743 + color: '#990000FF' + - uid: 7778 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 744 + color: '#990000FF' + - uid: 7779 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 748 + color: '#990000FF' + - uid: 7780 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 749 + color: '#990000FF' + - uid: 7781 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 765 + color: '#990000FF' + - uid: 7782 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 766 + color: '#990000FF' + - uid: 7783 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 767 + color: '#990000FF' + - uid: 7784 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 768 + color: '#990000FF' + - uid: 7785 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 789 + color: '#990000FF' + - uid: 7786 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 794 + color: '#0055CCFF' + - uid: 7787 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 812 + color: '#0055CCFF' + - uid: 7788 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 813 + color: '#0055CCFF' + - uid: 7789 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 814 + color: '#0055CCFF' + - uid: 7790 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 818 + color: '#0055CCFF' + - uid: 7791 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 819 + color: '#0055CCFF' + - uid: 7792 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 820 + color: '#0055CCFF' + - uid: 7793 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 823 + color: '#0055CCFF' + - uid: 7794 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 840 + color: '#0055CCFF' + - uid: 7795 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 841 + color: '#0055CCFF' + - uid: 7796 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 842 + color: '#0055CCFF' + - uid: 7797 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 847 + color: '#0055CCFF' + - uid: 7798 components: - type: Transform pos: 1.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 848 + color: '#0055CCFF' + - uid: 7799 components: - type: Transform pos: 1.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 849 + color: '#0055CCFF' + - uid: 7800 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 850 + color: '#0055CCFF' + - uid: 7801 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 851 + color: '#0055CCFF' + - uid: 7802 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 852 + color: '#0055CCFF' + - uid: 7803 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 858 + color: '#0055CCFF' + - uid: 7804 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 859 + color: '#0055CCFF' + - uid: 7805 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 861 + color: '#0055CCFF' + - uid: 7806 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 862 + color: '#0055CCFF' + - uid: 7807 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 863 + color: '#0055CCFF' + - uid: 7808 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 864 + color: '#0055CCFF' + - uid: 7809 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 865 + color: '#0055CCFF' + - uid: 7810 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 868 + color: '#0055CCFF' + - uid: 7811 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 872 + color: '#0055CCFF' + - uid: 7812 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 874 + color: '#0055CCFF' + - uid: 7813 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 877 + color: '#0055CCFF' + - uid: 7814 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 878 + color: '#0055CCFF' + - uid: 7815 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 920 + color: '#0055CCFF' + - uid: 7816 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 922 + color: '#990000FF' + - uid: 7817 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 933 + color: '#0055CCFF' + - uid: 7818 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 973 + color: '#990000FF' + - uid: 7819 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 988 + color: '#990000FF' + - uid: 7820 components: - type: Transform - pos: 0.5,-22.5 + rot: 1.5707963267948966 rad + pos: 0.5,-220.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 990 + - uid: 7821 components: - type: Transform - pos: 0.5,-23.5 + rot: 3.141592653589793 rad + pos: 0.5,-228.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 992 + color: '#0055CCFF' + - uid: 7822 components: - type: Transform pos: 0.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 995 + color: '#0055CCFF' + - uid: 7823 components: - type: Transform pos: 0.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1005 + color: '#0055CCFF' + - uid: 7824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-271.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7825 components: - type: Transform rot: -1.5707963267948966 rad @@ -51011,3989 +50638,3749 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1038 + - uid: 7826 components: - type: Transform pos: 0.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1039 + color: '#0055CCFF' + - uid: 7827 components: - type: Transform pos: 0.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1040 - components: - - type: Transform - pos: 0.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1041 + color: '#0055CCFF' + - uid: 7828 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-161.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1042 + color: '#990000FF' + - uid: 7829 components: - type: Transform pos: 0.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1043 - components: - - type: Transform - pos: 0.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1044 + color: '#0055CCFF' + - uid: 7830 components: - type: Transform - pos: 0.5,-34.5 + rot: -1.5707963267948966 rad + pos: -0.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1045 + color: '#0055CCFF' + - uid: 7831 components: - type: Transform pos: 0.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1046 + color: '#0055CCFF' + - uid: 7832 components: - type: Transform pos: 0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1047 + color: '#0055CCFF' + - uid: 7833 components: - type: Transform pos: 0.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1048 + color: '#0055CCFF' + - uid: 7834 components: - type: Transform pos: 0.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1049 + color: '#0055CCFF' + - uid: 7835 components: - type: Transform pos: 0.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1051 + color: '#0055CCFF' + - uid: 7836 components: - type: Transform pos: 0.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1054 + color: '#0055CCFF' + - uid: 7837 components: - type: Transform pos: 0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1055 + color: '#0055CCFF' + - uid: 7838 components: - type: Transform pos: 0.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1056 + color: '#0055CCFF' + - uid: 7839 components: - type: Transform pos: 0.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1058 + color: '#0055CCFF' + - uid: 7840 components: - type: Transform pos: 0.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1059 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1060 + color: '#0055CCFF' + - uid: 7841 components: - type: Transform pos: 0.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1061 - components: - - type: Transform - pos: 0.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1062 + color: '#0055CCFF' + - uid: 7842 components: - type: Transform pos: 0.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1065 + color: '#0055CCFF' + - uid: 7843 components: - type: Transform pos: 0.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1069 + color: '#0055CCFF' + - uid: 7844 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1109 + color: '#990000FF' + - uid: 7845 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1118 + color: '#990000FF' + - uid: 7846 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1135 + color: '#0055CCFF' + - uid: 7847 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1136 + color: '#990000FF' + - uid: 7848 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1137 + color: '#990000FF' + - uid: 7849 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1147 + color: '#0055CCFF' + - uid: 7850 components: - type: Transform pos: -0.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1150 + color: '#990000FF' + - uid: 7851 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1151 + color: '#990000FF' + - uid: 7852 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1152 + color: '#990000FF' + - uid: 7853 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1153 + color: '#990000FF' + - uid: 7854 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1154 + color: '#990000FF' + - uid: 7855 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1157 + color: '#990000FF' + - uid: 7856 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1159 + color: '#990000FF' + - uid: 7857 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1160 + color: '#990000FF' + - uid: 7858 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1161 + color: '#990000FF' + - uid: 7859 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1162 + color: '#990000FF' + - uid: 7860 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1163 + color: '#0055CCFF' + - uid: 7861 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1164 + color: '#0055CCFF' + - uid: 7862 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1165 + color: '#0055CCFF' + - uid: 7863 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1166 + color: '#0055CCFF' + - uid: 7864 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1168 + color: '#0055CCFF' + - uid: 7865 components: - type: Transform pos: -0.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1170 + color: '#990000FF' + - uid: 7866 components: - type: Transform pos: -0.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1171 + color: '#990000FF' + - uid: 7867 components: - type: Transform pos: -0.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1173 + color: '#990000FF' + - uid: 7868 components: - type: Transform pos: -0.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1175 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1176 + color: '#990000FF' + - uid: 7869 components: - type: Transform pos: -0.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1182 + color: '#990000FF' + - uid: 7870 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1183 + color: '#0055CCFF' + - uid: 7871 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1184 + color: '#0055CCFF' + - uid: 7872 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1185 + color: '#0055CCFF' + - uid: 7873 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1187 + color: '#0055CCFF' + - uid: 7874 components: - type: Transform pos: -4.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1189 + color: '#0055CCFF' + - uid: 7875 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1190 + color: '#990000FF' + - uid: 7876 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1193 + color: '#990000FF' + - uid: 7877 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1194 + color: '#990000FF' + - uid: 7878 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1195 + color: '#990000FF' + - uid: 7879 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1196 + color: '#990000FF' + - uid: 7880 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1197 + color: '#990000FF' + - uid: 7881 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1198 + color: '#990000FF' + - uid: 7882 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1199 + color: '#990000FF' + - uid: 7883 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1203 + color: '#990000FF' + - uid: 7884 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1204 + color: '#990000FF' + - uid: 7885 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1206 + color: '#990000FF' + - uid: 7886 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1208 + color: '#990000FF' + - uid: 7887 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1214 + color: '#990000FF' + - uid: 7888 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1217 - components: - - type: Transform - pos: -0.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1219 + color: '#990000FF' + - uid: 7889 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1220 + color: '#990000FF' + - uid: 7890 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1232 + color: '#990000FF' + - uid: 7891 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1233 + color: '#0055CCFF' + - uid: 7892 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1234 + color: '#0055CCFF' + - uid: 7893 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1235 + color: '#0055CCFF' + - uid: 7894 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1236 + color: '#0055CCFF' + - uid: 7895 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1251 + color: '#990000FF' + - uid: 7896 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1252 + color: '#990000FF' + - uid: 7897 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1253 + color: '#990000FF' + - uid: 7898 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1254 + color: '#990000FF' + - uid: 7899 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1255 + color: '#990000FF' + - uid: 7900 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1258 + color: '#990000FF' + - uid: 7901 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1260 + color: '#990000FF' + - uid: 7902 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1263 + color: '#990000FF' + - uid: 7903 components: - type: Transform pos: -4.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1265 + color: '#990000FF' + - uid: 7904 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1268 + color: '#0055CCFF' + - uid: 7905 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1271 + color: '#990000FF' + - uid: 7906 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1275 + color: '#990000FF' + - uid: 7907 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1280 + color: '#0055CCFF' + - uid: 7908 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1281 + color: '#990000FF' + - uid: 7909 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1282 + color: '#0055CCFF' + - uid: 7910 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1284 + color: '#0055CCFF' + - uid: 7911 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1287 + color: '#990000FF' + - uid: 7912 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1290 + color: '#990000FF' + - uid: 7913 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1291 + color: '#990000FF' + - uid: 7914 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1293 + color: '#0055CCFF' + - uid: 7915 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1294 + color: '#990000FF' + - uid: 7916 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1295 + color: '#990000FF' + - uid: 7917 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1296 + color: '#990000FF' + - uid: 7918 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1297 + color: '#990000FF' + - uid: 7919 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1298 + color: '#990000FF' + - uid: 7920 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1300 + color: '#990000FF' + - uid: 7921 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1303 + color: '#990000FF' + - uid: 7922 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1304 + color: '#990000FF' + - uid: 7923 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1305 + color: '#990000FF' + - uid: 7924 components: - type: Transform pos: 0.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1306 - components: - - type: Transform - pos: 0.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1307 + color: '#0055CCFF' + - uid: 7925 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1308 + color: '#0055CCFF' + - uid: 7926 components: - type: Transform pos: 0.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1309 + color: '#0055CCFF' + - uid: 7927 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1310 + color: '#990000FF' + - uid: 7928 components: - type: Transform pos: 0.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1311 + color: '#0055CCFF' + - uid: 7929 components: - type: Transform pos: 0.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1312 + color: '#0055CCFF' + - uid: 7930 components: - type: Transform pos: 0.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1313 + color: '#0055CCFF' + - uid: 7931 components: - type: Transform pos: 0.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1314 + color: '#0055CCFF' + - uid: 7932 components: - type: Transform pos: 0.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1317 + color: '#0055CCFF' + - uid: 7933 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1318 + color: '#0055CCFF' + - uid: 7934 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1319 + color: '#0055CCFF' + - uid: 7935 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1320 + color: '#0055CCFF' + - uid: 7936 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1321 + color: '#990000FF' + - uid: 7937 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1322 + color: '#990000FF' + - uid: 7938 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1330 + color: '#990000FF' + - uid: 7939 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1331 + color: '#990000FF' + - uid: 7940 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1338 + color: '#990000FF' + - uid: 7941 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1340 + color: '#990000FF' + - uid: 7942 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1346 + color: '#0055CCFF' + - uid: 7943 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1356 + color: '#990000FF' + - uid: 7944 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1357 + color: '#990000FF' + - uid: 7945 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1361 + color: '#990000FF' + - uid: 7946 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1363 + color: '#0055CCFF' + - uid: 7947 components: - type: Transform pos: 0.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1364 + color: '#0055CCFF' + - uid: 7948 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1366 + color: '#0055CCFF' + - uid: 7949 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1371 + color: '#0055CCFF' + - uid: 7950 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1376 + color: '#0055CCFF' + - uid: 7951 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1377 + color: '#990000FF' + - uid: 7952 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1379 + color: '#0055CCFF' + - uid: 7953 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1387 + color: '#0055CCFF' + - uid: 7954 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1388 + color: '#990000FF' + - uid: 7955 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1390 + color: '#990000FF' + - uid: 7956 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1391 + color: '#990000FF' + - uid: 7957 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1392 + color: '#990000FF' + - uid: 7958 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1393 + color: '#0055CCFF' + - uid: 7959 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1395 + color: '#0055CCFF' + - uid: 7960 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1397 + color: '#0055CCFF' + - uid: 7961 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1404 + color: '#0055CCFF' + - uid: 7962 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1405 + color: '#990000FF' + - uid: 7963 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1410 + color: '#990000FF' + - uid: 7964 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1411 + color: '#0055CCFF' + - uid: 7965 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1412 + color: '#0055CCFF' + - uid: 7966 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1414 + color: '#0055CCFF' + - uid: 7967 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1424 + color: '#0055CCFF' + - uid: 7968 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1512 + color: '#0055CCFF' + - uid: 7969 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7970 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1575 + color: '#0055CCFF' + - uid: 7971 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-288.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1680 + color: '#990000FF' + - uid: 7972 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1770 + color: '#0055CCFF' + - uid: 7973 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1841 + color: '#0055CCFF' + - uid: 7974 components: - type: Transform pos: -4.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1961 + color: '#0055CCFF' + - uid: 7975 components: - type: Transform pos: -4.5,-134.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2170 + color: '#0055CCFF' + - uid: 7976 components: - type: Transform pos: -4.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2357 + color: '#0055CCFF' + - uid: 7977 components: - type: Transform pos: -17.5,-258.5 parent: 2 - - uid: 2399 + - uid: 7978 components: - type: Transform pos: -17.5,-239.5 parent: 2 - - uid: 2403 + - uid: 7979 components: - type: Transform pos: -16.5,-239.5 parent: 2 - - uid: 2481 + - uid: 7980 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-245.5 parent: 2 - - uid: 2919 + - uid: 7981 components: - type: Transform pos: -17.5,-250.5 parent: 2 - - uid: 3025 + - uid: 7982 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3028 + color: '#990000FF' + - uid: 7983 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-258.5 parent: 2 - - uid: 3039 + - uid: 7984 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3041 + color: '#990000FF' + - uid: 7985 components: - type: Transform pos: -4.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3135 + color: '#990000FF' + - uid: 7986 components: - type: Transform - pos: -9.5,-253.5 + rot: 3.141592653589793 rad + pos: 0.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3144 + color: '#0055CCFF' + - uid: 7987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-260.5 + pos: -9.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3145 + color: '#990000FF' + - uid: 7988 components: - type: Transform - pos: 0.5,-168.5 + rot: -1.5707963267948966 rad + pos: -2.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3165 + color: '#0055CCFF' + - uid: 7989 components: - type: Transform pos: -18.5,-239.5 parent: 2 - - uid: 3197 + - uid: 7990 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-251.5 parent: 2 - - uid: 3198 + - uid: 7991 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-253.5 parent: 2 - - uid: 3215 + - uid: 7992 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-251.5 parent: 2 - - uid: 3251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3258 + - uid: 7993 components: - type: Transform pos: -4.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3265 + color: '#990000FF' + - uid: 7994 components: - type: Transform pos: -7.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3266 + color: '#990000FF' + - uid: 7995 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3267 + color: '#990000FF' + - uid: 7996 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3268 + color: '#990000FF' + - uid: 7997 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3269 + color: '#990000FF' + - uid: 7998 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3275 + color: '#990000FF' + - uid: 7999 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3276 + color: '#990000FF' + - uid: 8000 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-84.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3277 + color: '#990000FF' + - uid: 8001 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3280 + color: '#990000FF' + - uid: 8002 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3282 + color: '#990000FF' + - uid: 8003 components: - type: Transform pos: -4.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3286 + color: '#990000FF' + - uid: 8004 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3287 + color: '#990000FF' + - uid: 8005 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3289 + color: '#990000FF' + - uid: 8006 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3290 + color: '#990000FF' + - uid: 8007 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3291 + color: '#990000FF' + - uid: 8008 components: - type: Transform pos: 1.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3292 + color: '#990000FF' + - uid: 8009 components: - type: Transform pos: 1.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3294 + color: '#990000FF' + - uid: 8010 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3295 + color: '#990000FF' + - uid: 8011 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3296 + color: '#990000FF' + - uid: 8012 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3297 + color: '#990000FF' + - uid: 8013 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3298 + color: '#990000FF' + - uid: 8014 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3299 + color: '#990000FF' + - uid: 8015 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3300 + color: '#990000FF' + - uid: 8016 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3301 + color: '#990000FF' + - uid: 8017 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3302 + color: '#990000FF' + - uid: 8018 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3303 + color: '#990000FF' + - uid: 8019 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3304 + color: '#990000FF' + - uid: 8020 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3305 + color: '#990000FF' + - uid: 8021 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-86.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-85.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3308 + color: '#990000FF' + - uid: 8022 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-84.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3312 + color: '#990000FF' + - uid: 8023 components: - type: Transform pos: -4.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3313 + color: '#990000FF' + - uid: 8024 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3315 + color: '#990000FF' + - uid: 8025 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3316 + color: '#990000FF' + - uid: 8026 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3317 + color: '#990000FF' + - uid: 8027 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3318 + color: '#990000FF' + - uid: 8028 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3320 + color: '#990000FF' + - uid: 8029 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3321 + color: '#990000FF' + - uid: 8030 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3322 + color: '#990000FF' + - uid: 8031 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3324 + color: '#990000FF' + - uid: 8032 components: - type: Transform pos: -0.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3325 + color: '#990000FF' + - uid: 8033 components: - type: Transform pos: -0.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3327 + color: '#990000FF' + - uid: 8034 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3328 + color: '#0055CCFF' + - uid: 8035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-77.5 + pos: 4.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3329 + color: '#990000FF' + - uid: 8036 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3330 + color: '#0055CCFF' + - uid: 8037 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3336 + color: '#0055CCFF' + - uid: 8038 components: - type: Transform pos: 0.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3337 + color: '#0055CCFF' + - uid: 8039 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3338 + color: '#0055CCFF' + - uid: 8040 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3339 + color: '#0055CCFF' + - uid: 8041 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3340 + color: '#0055CCFF' + - uid: 8042 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3341 + color: '#0055CCFF' + - uid: 8043 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3342 + color: '#0055CCFF' + - uid: 8044 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3343 + color: '#0055CCFF' + - uid: 8045 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3344 + color: '#0055CCFF' + - uid: 8046 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3345 + color: '#0055CCFF' + - uid: 8047 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-84.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3346 + color: '#0055CCFF' + - uid: 8048 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3347 + color: '#0055CCFF' + - uid: 8049 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3348 + color: '#0055CCFF' + - uid: 8050 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3349 + color: '#0055CCFF' + - uid: 8051 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3356 + color: '#0055CCFF' + - uid: 8052 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3357 + color: '#0055CCFF' + - uid: 8053 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3358 + color: '#0055CCFF' + - uid: 8054 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3359 + color: '#0055CCFF' + - uid: 8055 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3360 + color: '#0055CCFF' + - uid: 8056 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3362 + color: '#0055CCFF' + - uid: 8057 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3365 + color: '#0055CCFF' + - uid: 8058 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3366 + color: '#0055CCFF' + - uid: 8059 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3367 + color: '#0055CCFF' + - uid: 8060 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3368 + color: '#0055CCFF' + - uid: 8061 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3369 + color: '#0055CCFF' + - uid: 8062 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3370 + color: '#0055CCFF' + - uid: 8063 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3376 + color: '#0055CCFF' + - uid: 8064 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3377 + color: '#0055CCFF' + - uid: 8065 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3378 + color: '#0055CCFF' + - uid: 8066 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3379 + color: '#0055CCFF' + - uid: 8067 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3380 + color: '#0055CCFF' + - uid: 8068 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3381 + color: '#0055CCFF' + - uid: 8069 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3382 + color: '#0055CCFF' + - uid: 8070 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-101.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3383 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-102.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3384 + color: '#0055CCFF' + - uid: 8071 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-104.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3387 + color: '#0055CCFF' + - uid: 8072 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3388 + color: '#0055CCFF' + - uid: 8073 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3389 + color: '#0055CCFF' + - uid: 8074 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3390 + color: '#0055CCFF' + - uid: 8075 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3402 + color: '#0055CCFF' + - uid: 8076 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-105.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3404 + color: '#0055CCFF' + - uid: 8077 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-107.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3406 + color: '#0055CCFF' + - uid: 8078 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3411 + color: '#0055CCFF' + - uid: 8079 components: - type: Transform pos: 1.5,-124.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3412 + color: '#0055CCFF' + - uid: 8080 components: - type: Transform pos: 1.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3413 + color: '#0055CCFF' + - uid: 8081 components: - type: Transform pos: 1.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3414 + color: '#0055CCFF' + - uid: 8082 components: - type: Transform pos: 1.5,-121.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3416 + color: '#0055CCFF' + - uid: 8083 components: - type: Transform pos: 1.5,-119.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3417 + color: '#0055CCFF' + - uid: 8084 components: - type: Transform pos: 1.5,-118.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3418 + color: '#0055CCFF' + - uid: 8085 components: - type: Transform pos: 1.5,-117.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3420 + color: '#0055CCFF' + - uid: 8086 components: - type: Transform pos: 1.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3421 + color: '#0055CCFF' + - uid: 8087 components: - type: Transform pos: 1.5,-114.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3422 + color: '#0055CCFF' + - uid: 8088 components: - type: Transform pos: 1.5,-113.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3423 + color: '#0055CCFF' + - uid: 8089 components: - type: Transform pos: 1.5,-112.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3424 + color: '#0055CCFF' + - uid: 8090 components: - type: Transform pos: 1.5,-111.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3425 + color: '#0055CCFF' + - uid: 8091 components: - type: Transform pos: 1.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3427 + color: '#0055CCFF' + - uid: 8092 components: - type: Transform pos: 0.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3428 - components: - - type: Transform - pos: 0.5,-129.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3429 + color: '#0055CCFF' + - uid: 8093 components: - type: Transform pos: 0.5,-128.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3430 + color: '#0055CCFF' + - uid: 8094 components: - type: Transform pos: 0.5,-130.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3431 - components: - - type: Transform - pos: 0.5,-131.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3432 + color: '#0055CCFF' + - uid: 8095 components: - type: Transform pos: 0.5,-132.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3433 + color: '#0055CCFF' + - uid: 8096 components: - type: Transform pos: 0.5,-134.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3434 + color: '#0055CCFF' + - uid: 8097 components: - type: Transform pos: 0.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3440 + color: '#0055CCFF' + - uid: 8098 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3442 + color: '#0055CCFF' + - uid: 8099 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3443 + color: '#0055CCFF' + - uid: 8100 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3445 + color: '#0055CCFF' + - uid: 8101 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3446 + color: '#0055CCFF' + - uid: 8102 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3447 + color: '#0055CCFF' + - uid: 8103 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3449 + color: '#0055CCFF' + - uid: 8104 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3453 + color: '#0055CCFF' + - uid: 8105 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3454 + color: '#0055CCFF' + - uid: 8106 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3455 + color: '#0055CCFF' + - uid: 8107 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3456 + color: '#0055CCFF' + - uid: 8108 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3458 + color: '#0055CCFF' + - uid: 8109 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3459 + color: '#0055CCFF' + - uid: 8110 components: - type: Transform pos: -6.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3460 + color: '#0055CCFF' + - uid: 8111 components: - type: Transform pos: -6.5,-111.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3461 - components: - - type: Transform - pos: -6.5,-112.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3462 + color: '#0055CCFF' + - uid: 8113 components: - type: Transform pos: -6.5,-113.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3463 + color: '#0055CCFF' + - uid: 8114 components: - type: Transform pos: -6.5,-114.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3464 - components: - - type: Transform - pos: -6.5,-115.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3465 + color: '#0055CCFF' + - uid: 8116 components: - type: Transform pos: -6.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3466 + color: '#0055CCFF' + - uid: 8117 components: - type: Transform pos: -6.5,-117.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3467 - components: - - type: Transform - pos: -6.5,-118.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3468 + color: '#0055CCFF' + - uid: 8119 components: - type: Transform pos: -6.5,-119.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3469 + color: '#0055CCFF' + - uid: 8120 components: - type: Transform pos: -6.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3470 - components: - - type: Transform - pos: -6.5,-121.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3471 + color: '#0055CCFF' + - uid: 8122 components: - type: Transform pos: -6.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3472 + color: '#0055CCFF' + - uid: 8123 components: - type: Transform pos: -6.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3473 - components: - - type: Transform - pos: -6.5,-124.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3479 - components: - - type: Transform - pos: 1.5,-167.5 - parent: 2 - - uid: 3488 + color: '#0055CCFF' + - uid: 8125 components: - type: Transform pos: 15.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3510 + color: '#0055CCFF' + - uid: 8126 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-124.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3511 + color: '#990000FF' + - uid: 8127 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3512 + color: '#990000FF' + - uid: 8128 components: - type: Transform pos: -8.5,-121.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3514 + color: '#990000FF' + - uid: 8129 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3516 + color: '#990000FF' + - uid: 8130 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-118.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3517 + color: '#990000FF' + - uid: 8131 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-117.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3519 + color: '#990000FF' + - uid: 8132 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3520 + color: '#990000FF' + - uid: 8133 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-114.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3522 + color: '#990000FF' + - uid: 8134 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-112.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3523 + color: '#990000FF' + - uid: 8135 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-111.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3528 + color: '#990000FF' + - uid: 8136 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3529 + color: '#990000FF' + - uid: 8137 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-169.5 - parent: 2 - - uid: 3558 + color: '#990000FF' + - uid: 8139 components: - type: Transform pos: 15.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3563 + color: '#0055CCFF' + - uid: 8140 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3564 + color: '#990000FF' + - uid: 8141 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-124.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3565 + color: '#990000FF' + - uid: 8142 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3567 + color: '#990000FF' + - uid: 8143 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-121.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3569 + color: '#990000FF' + - uid: 8144 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-119.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3570 + color: '#990000FF' + - uid: 8145 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-118.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3572 + color: '#990000FF' + - uid: 8146 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-117.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3574 + color: '#990000FF' + - uid: 8147 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3575 + color: '#990000FF' + - uid: 8148 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3577 + color: '#990000FF' + - uid: 8149 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-113.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3578 + color: '#990000FF' + - uid: 8150 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-112.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3579 + color: '#990000FF' + - uid: 8151 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-111.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3580 + color: '#990000FF' + - uid: 8152 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3581 + color: '#990000FF' + - uid: 8153 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3587 + color: '#990000FF' + - uid: 8154 components: - type: Transform pos: -0.5,-121.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3588 + color: '#990000FF' + - uid: 8155 components: - type: Transform pos: -0.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3589 - components: - - type: Transform - pos: -0.5,-124.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3590 + color: '#990000FF' + - uid: 8156 components: - type: Transform pos: -0.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3591 + color: '#990000FF' + - uid: 8157 components: - type: Transform pos: -0.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3592 + color: '#990000FF' + - uid: 8158 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3593 + color: '#990000FF' + - uid: 8159 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3594 + color: '#990000FF' + - uid: 8160 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3595 + color: '#990000FF' + - uid: 8161 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3596 + color: '#990000FF' + - uid: 8162 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3597 + color: '#990000FF' + - uid: 8163 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3607 + color: '#990000FF' + - uid: 8164 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3609 + color: '#990000FF' + - uid: 8165 components: - type: Transform pos: -9.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3611 + color: '#990000FF' + - uid: 8166 components: - type: Transform pos: -9.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3612 + color: '#990000FF' + - uid: 8167 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3613 + color: '#990000FF' + - uid: 8168 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3614 + color: '#990000FF' + - uid: 8169 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3615 + color: '#990000FF' + - uid: 8170 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3617 + color: '#990000FF' + - uid: 8171 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3618 + color: '#990000FF' + - uid: 8172 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3620 + color: '#990000FF' + - uid: 8173 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-107.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3624 + color: '#990000FF' + - uid: 8174 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-119.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3628 + color: '#990000FF' + - uid: 8175 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-118.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3629 + color: '#990000FF' + - uid: 8176 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3634 + color: '#990000FF' + - uid: 8177 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3635 + color: '#990000FF' + - uid: 8178 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3638 + color: '#990000FF' + - uid: 8179 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3642 + color: '#990000FF' + - uid: 8180 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3643 + color: '#0055CCFF' + - uid: 8181 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3644 + color: '#990000FF' + - uid: 8182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-260.5 + rot: 1.5707963267948966 rad + pos: 2.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3648 + color: '#0055CCFF' + - uid: 8183 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-138.5 + pos: 3.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3649 + color: '#0055CCFF' + - uid: 8184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-138.5 + rot: 3.141592653589793 rad + pos: 0.5,-168.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3663 + color: '#0055CCFF' + - uid: 8185 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3670 + color: '#0055CCFF' + - uid: 8186 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3766 + color: '#0055CCFF' + - uid: 8187 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3789 + color: '#990000FF' + - uid: 8188 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3790 + color: '#0055CCFF' + - uid: 8189 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-260.5 parent: 2 - - uid: 3849 + - uid: 8190 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3875 + color: '#0055CCFF' + - uid: 8191 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3921 + color: '#990000FF' + - uid: 8192 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-137.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3922 + color: '#0055CCFF' + - uid: 8193 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-144.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3924 + color: '#990000FF' + - uid: 8194 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3925 + color: '#0055CCFF' + - uid: 8195 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-141.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3926 + color: '#0055CCFF' + - uid: 8196 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-142.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3927 + color: '#0055CCFF' + - uid: 8197 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-143.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3928 + color: '#0055CCFF' + - uid: 8198 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-144.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3929 + color: '#0055CCFF' + - uid: 8199 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-145.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3931 + color: '#0055CCFF' + - uid: 8200 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-147.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3932 + color: '#0055CCFF' + - uid: 8201 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3934 + color: '#0055CCFF' + - uid: 8202 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3935 + color: '#0055CCFF' + - uid: 8203 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-150.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3937 + color: '#0055CCFF' + - uid: 8204 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-153.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3939 + color: '#0055CCFF' + - uid: 8205 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-155.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-156.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3941 + color: '#0055CCFF' + - uid: 8206 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-157.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-158.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3943 + color: '#0055CCFF' + - uid: 8207 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-159.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3945 + color: '#0055CCFF' + - uid: 8208 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-161.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3946 + color: '#0055CCFF' + - uid: 8209 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3951 + color: '#0055CCFF' + - uid: 8210 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3956 + color: '#990000FF' + - uid: 8211 components: - type: Transform pos: 4.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3958 + color: '#990000FF' + - uid: 8212 components: - type: Transform pos: 4.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3959 + color: '#990000FF' + - uid: 8213 components: - type: Transform pos: 4.5,-137.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3960 + color: '#990000FF' + - uid: 8214 components: - type: Transform pos: 4.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3963 + color: '#990000FF' + - uid: 8215 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3964 + color: '#990000FF' + - uid: 8216 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3965 + color: '#990000FF' + - uid: 8217 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3966 + color: '#990000FF' + - uid: 8218 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3967 + color: '#990000FF' + - uid: 8219 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3968 + color: '#990000FF' + - uid: 8220 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3969 + color: '#990000FF' + - uid: 8221 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3974 + color: '#990000FF' + - uid: 8222 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-134.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3975 + color: '#990000FF' + - uid: 8223 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3976 + color: '#990000FF' + - uid: 8224 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3979 + color: '#990000FF' + - uid: 8225 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-145.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3983 + color: '#990000FF' + - uid: 8226 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3985 + color: '#990000FF' + - uid: 8227 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3986 + color: '#990000FF' + - uid: 8228 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3989 + color: '#0055CCFF' + - uid: 8229 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3990 + color: '#990000FF' + - uid: 8230 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-141.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3991 + color: '#990000FF' + - uid: 8231 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-142.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3992 + color: '#990000FF' + - uid: 8232 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-143.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3995 + color: '#990000FF' + - uid: 8233 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-147.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3997 + color: '#990000FF' + - uid: 8234 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3999 + color: '#990000FF' + - uid: 8235 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-150.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4001 + color: '#990000FF' + - uid: 8236 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4002 + color: '#990000FF' + - uid: 8237 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4005 + color: '#990000FF' + - uid: 8238 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4006 + color: '#990000FF' + - uid: 8239 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4007 + color: '#990000FF' + - uid: 8240 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4008 + color: '#990000FF' + - uid: 8241 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4010 + color: '#990000FF' + - uid: 8242 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4014 + color: '#990000FF' + - uid: 8243 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-153.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4015 + color: '#990000FF' + - uid: 8244 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-136.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4019 + color: '#990000FF' + - uid: 8245 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-260.5 parent: 2 - - uid: 4024 + - uid: 8246 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4025 + color: '#0055CCFF' + - uid: 8247 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4026 + color: '#0055CCFF' + - uid: 8248 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4027 + color: '#0055CCFF' + - uid: 8249 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4028 + color: '#0055CCFF' + - uid: 8250 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4029 + color: '#0055CCFF' + - uid: 8251 components: - type: Transform pos: -9.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4030 + color: '#990000FF' + - uid: 8252 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-137.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4032 + color: '#0055CCFF' + - uid: 8253 components: - type: Transform pos: -4.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4034 + color: '#0055CCFF' + - uid: 8254 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4035 + color: '#990000FF' + - uid: 8255 components: - type: Transform pos: 1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4036 + color: '#0055CCFF' + - uid: 8256 components: - type: Transform pos: -5.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4038 + color: '#990000FF' + - uid: 8257 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4039 + color: '#0055CCFF' + - uid: 8258 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4052 + color: '#990000FF' + - uid: 8259 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4116 + color: '#0055CCFF' + - uid: 8260 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-171.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4117 + color: '#0055CCFF' + - uid: 8261 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4118 + color: '#0055CCFF' + - uid: 8262 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-173.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4120 + color: '#0055CCFF' + - uid: 8263 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4121 + color: '#0055CCFF' + - uid: 8264 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-176.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4122 + color: '#0055CCFF' + - uid: 8265 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-177.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-178.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4124 + color: '#0055CCFF' + - uid: 8266 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4125 + color: '#0055CCFF' + - uid: 8267 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-180.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4126 + color: '#0055CCFF' + - uid: 8268 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-182.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-183.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4128 + color: '#0055CCFF' + - uid: 8269 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-184.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-185.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4130 + color: '#0055CCFF' + - uid: 8270 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-186.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4132 + color: '#0055CCFF' + - uid: 8271 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-188.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4135 + color: '#0055CCFF' + - uid: 8272 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4151 + color: '#0055CCFF' + - uid: 8273 components: - type: Transform pos: 1.5,-188.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4152 + color: '#990000FF' + - uid: 8274 components: - type: Transform pos: 1.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4153 + color: '#990000FF' + - uid: 8275 components: - type: Transform pos: -0.5,-180.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4156 + color: '#990000FF' + - uid: 8276 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4157 + color: '#990000FF' + - uid: 8277 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4158 + color: '#990000FF' + - uid: 8278 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4159 + color: '#990000FF' + - uid: 8279 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4160 + color: '#990000FF' + - uid: 8280 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4180 + color: '#990000FF' + - uid: 8281 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-245.5 parent: 2 - - uid: 4200 + - uid: 8282 components: - type: Transform pos: 15.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4201 + color: '#0055CCFF' + - uid: 8283 components: - type: Transform pos: 15.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4214 + color: '#0055CCFF' + - uid: 8284 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-164.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4215 + color: '#990000FF' + - uid: 8285 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-166.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4225 + color: '#990000FF' + - uid: 8286 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-164.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4305 + color: '#0055CCFF' + - uid: 8287 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4307 + color: '#990000FF' + - uid: 8288 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4357 + color: '#0055CCFF' + - uid: 8289 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4420 + color: '#0055CCFF' + - uid: 8290 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-201.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4514 + color: '#990000FF' + - uid: 8291 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4531 + color: '#990000FF' + - uid: 8292 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4532 + color: '#0055CCFF' + - uid: 8293 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4534 + color: '#0055CCFF' + - uid: 8294 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4536 + color: '#0055CCFF' + - uid: 8295 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4537 + color: '#990000FF' + - uid: 8296 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4538 + color: '#990000FF' + - uid: 8297 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-207.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4539 + color: '#990000FF' + - uid: 8298 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4540 + color: '#990000FF' + - uid: 8299 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4560 + color: '#990000FF' + - uid: 8300 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4561 + color: '#0055CCFF' + - uid: 8301 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4562 + color: '#0055CCFF' + - uid: 8302 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4563 + color: '#0055CCFF' + - uid: 8303 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-149.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4565 + color: '#0055CCFF' + - uid: 8304 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad pos: 3.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4566 + color: '#0055CCFF' + - uid: 8305 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4569 + color: '#0055CCFF' + - uid: 8306 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4578 + color: '#990000FF' + - uid: 8307 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-198.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4580 + color: '#990000FF' + - uid: 8308 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4581 + color: '#990000FF' + - uid: 8309 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-199.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4583 + color: '#990000FF' + - uid: 8310 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4585 + color: '#990000FF' + - uid: 8311 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4589 + color: '#990000FF' + - uid: 8312 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-194.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4590 + color: '#990000FF' + - uid: 8313 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-217.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4591 + color: '#0055CCFF' + - uid: 8314 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-218.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4592 + color: '#0055CCFF' + - uid: 8315 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-176.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-220.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-221.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4598 + color: '#990000FF' + - uid: 8316 components: - type: Transform rot: -1.5707963267948966 rad @@ -55001,7 +54388,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4599 + - uid: 8317 components: - type: Transform rot: -1.5707963267948966 rad @@ -55009,7 +54396,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4600 + - uid: 8318 components: - type: Transform rot: -1.5707963267948966 rad @@ -55017,132 +54404,132 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4601 + - uid: 8319 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-213.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4602 + color: '#0055CCFF' + - uid: 8320 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-207.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4603 + color: '#0055CCFF' + - uid: 8321 components: - type: Transform pos: -19.5,-239.5 parent: 2 - - uid: 4604 + - uid: 8322 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-196.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4605 + color: '#0055CCFF' + - uid: 8323 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-193.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4606 + color: '#0055CCFF' + - uid: 8324 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4607 + color: '#0055CCFF' + - uid: 8325 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4609 + color: '#0055CCFF' + - uid: 8326 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-191.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4610 + color: '#0055CCFF' + - uid: 8327 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-204.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4611 + color: '#0055CCFF' + - uid: 8328 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-203.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4613 + color: '#0055CCFF' + - uid: 8329 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-209.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4639 + color: '#0055CCFF' + - uid: 8330 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4659 + color: '#990000FF' + - uid: 8331 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-196.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4660 + color: '#990000FF' + - uid: 8332 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-195.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4661 + color: '#990000FF' + - uid: 8333 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-192.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4663 + color: '#990000FF' + - uid: 8334 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-191.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4664 + color: '#990000FF' + - uid: 8335 components: - type: Transform anchored: False @@ -55154,111 +54541,103 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 4665 + - uid: 8336 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4667 + color: '#990000FF' + - uid: 8337 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4669 + color: '#990000FF' + - uid: 8338 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-203.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4671 + color: '#990000FF' + - uid: 8339 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4708 + color: '#990000FF' + - uid: 8340 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4709 + color: '#0055CCFF' + - uid: 8341 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4740 + color: '#990000FF' + - uid: 8342 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4741 + color: '#0055CCFF' + - uid: 8343 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4743 + color: '#0055CCFF' + - uid: 8344 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-195.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4744 + color: '#0055CCFF' + - uid: 8345 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-192.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-194.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4746 + color: '#0055CCFF' + - uid: 8346 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-211.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4747 + color: '#0055CCFF' + - uid: 8347 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-212.5 + pos: 0.5,-220.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4749 + color: '#0055CCFF' + - uid: 8348 components: - type: Transform rot: -1.5707963267948966 rad @@ -55266,83 +54645,61 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4778 + - uid: 8349 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4779 + color: '#0055CCFF' + - uid: 8350 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4849 + color: '#990000FF' + - uid: 8351 components: - type: Transform pos: 17.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4896 + color: '#0055CCFF' + - uid: 8352 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-198.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4924 - components: - - type: Transform - pos: 1.5,-193.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4945 + color: '#0055CCFF' + - uid: 8353 components: - type: Transform pos: 0.5,-170.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4947 - components: - - type: Transform - pos: 0.5,-167.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-210.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4983 + color: '#0055CCFF' + - uid: 8354 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-201.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4999 + color: '#0055CCFF' + - uid: 8355 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-204.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5033 + color: '#990000FF' + - uid: 8356 components: - type: Transform rot: -1.5707963267948966 rad @@ -55350,7 +54707,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5034 + - uid: 8357 components: - type: Transform rot: -1.5707963267948966 rad @@ -55358,7 +54715,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5035 + - uid: 8358 components: - type: Transform rot: -1.5707963267948966 rad @@ -55366,371 +54723,331 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5038 + - uid: 8359 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-215.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5039 + color: '#0055CCFF' + - uid: 8360 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-216.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5044 + color: '#0055CCFF' + - uid: 8361 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-222.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5045 + color: '#0055CCFF' + - uid: 8362 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-223.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5046 + color: '#0055CCFF' + - uid: 8363 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-224.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5047 + color: '#0055CCFF' + - uid: 8364 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-225.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5048 + color: '#0055CCFF' + - uid: 8365 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-226.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-227.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-228.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5051 + color: '#0055CCFF' + - uid: 8366 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5053 + color: '#0055CCFF' + - uid: 8367 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-231.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5054 + color: '#0055CCFF' + - uid: 8368 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-232.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5055 + color: '#0055CCFF' + - uid: 8369 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-233.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5056 + color: '#0055CCFF' + - uid: 8370 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-234.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5058 + color: '#0055CCFF' + - uid: 8371 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-236.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-237.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5060 + color: '#0055CCFF' + - uid: 8372 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-238.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-239.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5062 + color: '#0055CCFF' + - uid: 8373 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-240.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5064 + color: '#0055CCFF' + - uid: 8374 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-242.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5074 + color: '#0055CCFF' + - uid: 8375 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5075 + color: '#0055CCFF' + - uid: 8376 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5076 + color: '#0055CCFF' + - uid: 8377 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5078 + color: '#0055CCFF' + - uid: 8378 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-190.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5090 + color: '#990000FF' + - uid: 8379 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5091 + color: '#0055CCFF' + - uid: 8380 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5098 + color: '#0055CCFF' + - uid: 8381 components: - type: Transform pos: -4.5,-199.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5099 + - uid: 8382 components: - type: Transform pos: -4.5,-198.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5104 + - uid: 8383 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5105 + color: '#0055CCFF' + - uid: 8384 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5106 + color: '#0055CCFF' + - uid: 8385 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5109 + color: '#0055CCFF' + - uid: 8386 components: - type: Transform pos: 17.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5113 + color: '#0055CCFF' + - uid: 8387 components: - type: Transform pos: -4.5,-203.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5114 + color: '#0055CCFF' + - uid: 8388 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5115 + color: '#0055CCFF' + - uid: 8389 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5116 + color: '#0055CCFF' + - uid: 8390 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5117 + color: '#0055CCFF' + - uid: 8391 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5138 + color: '#0055CCFF' + - uid: 8392 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5139 + color: '#0055CCFF' + - uid: 8393 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5141 + color: '#0055CCFF' + - uid: 8394 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5142 + color: '#0055CCFF' + - uid: 8395 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5143 + color: '#0055CCFF' + - uid: 8396 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5145 + color: '#0055CCFF' + - uid: 8397 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5146 + color: '#0055CCFF' + - uid: 8398 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5147 + color: '#0055CCFF' + - uid: 8399 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5166 + color: '#0055CCFF' + - uid: 8400 components: - type: Transform rot: -1.5707963267948966 rad @@ -55738,15 +55055,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5167 + - uid: 8401 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5168 + color: '#990000FF' + - uid: 8402 components: - type: Transform rot: -1.5707963267948966 rad @@ -55754,7 +55071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5169 + - uid: 8403 components: - type: Transform rot: -1.5707963267948966 rad @@ -55762,7 +55079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5191 + - uid: 8404 components: - type: Transform rot: -1.5707963267948966 rad @@ -55770,7 +55087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5192 + - uid: 8405 components: - type: Transform rot: -1.5707963267948966 rad @@ -55778,7 +55095,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5193 + - uid: 8406 components: - type: Transform rot: -1.5707963267948966 rad @@ -55786,383 +55103,343 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-220.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5195 + - uid: 8407 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5196 + color: '#990000FF' + - uid: 8408 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5197 + color: '#990000FF' + - uid: 8409 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-229.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5248 + color: '#990000FF' + - uid: 8410 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5250 + color: '#990000FF' + - uid: 8411 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-178.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-177.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5254 + color: '#990000FF' + - uid: 8412 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5255 + color: '#0055CCFF' + - uid: 8413 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5257 + color: '#0055CCFF' + - uid: 8414 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5258 + color: '#0055CCFF' + - uid: 8415 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5264 + color: '#0055CCFF' + - uid: 8416 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5265 + color: '#990000FF' + - uid: 8417 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5266 + color: '#990000FF' + - uid: 8418 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5267 + color: '#990000FF' + - uid: 8419 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5268 + color: '#990000FF' + - uid: 8420 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5269 + color: '#990000FF' + - uid: 8421 components: - type: Transform pos: 1.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5270 + color: '#990000FF' + - uid: 8422 components: - type: Transform pos: 1.5,-173.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5271 + color: '#990000FF' + - uid: 8423 components: - type: Transform pos: 1.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5272 + color: '#990000FF' + - uid: 8424 components: - type: Transform pos: 1.5,-171.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5273 + color: '#990000FF' + - uid: 8425 components: - type: Transform pos: 1.5,-170.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-175.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5285 + color: '#990000FF' + - uid: 8426 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5286 + color: '#0055CCFF' + - uid: 8427 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5287 + color: '#0055CCFF' + - uid: 8428 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5292 + color: '#0055CCFF' + - uid: 8429 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5297 + color: '#0055CCFF' + - uid: 8430 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-166.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5298 + color: '#0055CCFF' + - uid: 8431 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-166.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5299 + color: '#0055CCFF' + - uid: 8432 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-168.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5305 + color: '#990000FF' + - uid: 8433 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5306 + color: '#0055CCFF' + - uid: 8434 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5308 + color: '#0055CCFF' + - uid: 8435 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5309 + color: '#990000FF' + - uid: 8436 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5310 + color: '#990000FF' + - uid: 8437 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5314 + color: '#990000FF' + - uid: 8438 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-175.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5316 + color: '#0055CCFF' + - uid: 8439 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-176.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5336 + color: '#0055CCFF' + - uid: 8440 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5339 + color: '#990000FF' + - uid: 8441 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-260.5 parent: 2 - - uid: 5341 + - uid: 8442 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5342 + color: '#990000FF' + - uid: 8443 components: - type: Transform pos: 4.5,-173.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5368 + color: '#990000FF' + - uid: 8444 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5369 + color: '#990000FF' + - uid: 8445 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-234.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5370 + color: '#990000FF' + - uid: 8446 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-233.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5371 + color: '#990000FF' + - uid: 8447 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-232.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5372 + color: '#990000FF' + - uid: 8448 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5373 + color: '#990000FF' + - uid: 8449 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-231.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5374 + color: '#990000FF' + - uid: 8450 components: - type: Transform rot: 3.141592653589793 rad @@ -56170,7 +55447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5375 + - uid: 8451 components: - type: Transform rot: 3.141592653589793 rad @@ -56178,7 +55455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5376 + - uid: 8452 components: - type: Transform rot: 3.141592653589793 rad @@ -56186,7 +55463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5377 + - uid: 8453 components: - type: Transform rot: 3.141592653589793 rad @@ -56194,7 +55471,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5378 + - uid: 8454 components: - type: Transform rot: 3.141592653589793 rad @@ -56202,1228 +55479,1146 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-220.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5401 + - uid: 8455 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5418 + color: '#0055CCFF' + - uid: 8456 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-249.5 parent: 2 - - uid: 5486 + - uid: 8457 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5662 + color: '#990000FF' + - uid: 8458 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-244.5 parent: 2 - - uid: 6046 + - uid: 8459 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-245.5 parent: 2 - - uid: 6061 + - uid: 8460 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-245.5 parent: 2 - - uid: 6255 + - uid: 8461 components: - type: Transform pos: -15.5,-244.5 parent: 2 - - uid: 6389 + - uid: 8462 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-114.5 parent: 2 - - uid: 6677 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-366.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8464 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6696 + color: '#0055CCFF' + - uid: 8465 components: - type: Transform pos: 0.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6698 + color: '#0055CCFF' + - uid: 8466 components: - type: Transform pos: 0.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6700 + color: '#0055CCFF' + - uid: 8467 components: - type: Transform pos: 0.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6702 + color: '#0055CCFF' + - uid: 8468 components: - type: Transform pos: 0.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6705 + color: '#0055CCFF' + - uid: 8469 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6708 + color: '#0055CCFF' + - uid: 8470 components: - type: Transform pos: 0.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6709 + color: '#0055CCFF' + - uid: 8471 components: - type: Transform pos: 0.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6710 + color: '#0055CCFF' + - uid: 8472 components: - type: Transform pos: 16.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6715 + color: '#990000FF' + - uid: 8473 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6716 + color: '#0055CCFF' + - uid: 8474 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6717 + color: '#990000FF' + - uid: 8475 components: - type: Transform pos: 0.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6718 + color: '#0055CCFF' + - uid: 8476 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6724 + color: '#990000FF' + - uid: 8477 components: - type: Transform pos: -0.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-256.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6729 + color: '#990000FF' + - uid: 8478 components: - type: Transform pos: -0.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6730 - components: - - type: Transform - pos: 0.5,-253.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6742 + color: '#990000FF' + - uid: 8479 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6744 + color: '#990000FF' + - uid: 8480 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6800 + color: '#990000FF' + - uid: 8481 components: - type: Transform pos: -9.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6812 + color: '#990000FF' + - uid: 8482 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6820 + color: '#990000FF' + - uid: 8483 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6824 - components: - - type: Transform - pos: -0.5,-255.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6825 + color: '#990000FF' + - uid: 8484 components: - type: Transform pos: -0.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6826 + color: '#990000FF' + - uid: 8485 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6830 + color: '#990000FF' + - uid: 8486 components: - type: Transform pos: -0.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6832 + color: '#990000FF' + - uid: 8487 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6835 + color: '#990000FF' + - uid: 8488 components: - type: Transform pos: 0.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6838 + color: '#0055CCFF' + - uid: 8489 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6839 + color: '#0055CCFF' + - uid: 8490 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-248.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6844 + color: '#0055CCFF' + - uid: 8491 components: - type: Transform pos: 0.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6846 + color: '#0055CCFF' + - uid: 8492 components: - type: Transform pos: 16.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6847 + color: '#990000FF' + - uid: 8493 components: - type: Transform pos: 16.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6848 + color: '#990000FF' + - uid: 8494 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6849 + color: '#0055CCFF' + - uid: 8495 components: - type: Transform pos: 0.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6850 + color: '#0055CCFF' + - uid: 8496 components: - type: Transform pos: 0.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6851 + color: '#0055CCFF' + - uid: 8497 components: - type: Transform pos: 0.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6854 + color: '#0055CCFF' + - uid: 8498 components: - type: Transform pos: 16.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6859 + color: '#990000FF' + - uid: 8499 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6860 + color: '#990000FF' + - uid: 8500 components: - type: Transform pos: 15.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6890 + color: '#0055CCFF' + - uid: 8501 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-253.5 parent: 2 - - uid: 6891 + - uid: 8502 components: - type: Transform pos: -9.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6910 + color: '#990000FF' + - uid: 8503 components: - type: Transform pos: -9.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-171.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7203 + color: '#990000FF' + - uid: 8505 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-199.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7213 + color: '#0055CCFF' + - uid: 8506 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-245.5 parent: 2 - - uid: 7239 + - uid: 8507 components: - type: Transform pos: 16.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7361 + color: '#990000FF' + - uid: 8508 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7376 + color: '#990000FF' + - uid: 8509 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7417 + color: '#0055CCFF' + - uid: 8510 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7429 + color: '#990000FF' + - uid: 8511 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-253.5 parent: 2 - - uid: 7442 + - uid: 8512 components: - type: Transform pos: 17.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7448 + color: '#0055CCFF' + - uid: 8513 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7460 + color: '#990000FF' + - uid: 8514 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7482 + color: '#990000FF' + - uid: 8515 components: - type: Transform pos: 0.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7491 + color: '#0055CCFF' + - uid: 8516 components: - type: Transform pos: 4.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7493 + color: '#990000FF' + - uid: 8517 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7495 + color: '#990000FF' + - uid: 8518 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7501 + color: '#0055CCFF' + - uid: 8519 components: - type: Transform pos: 0.5,-263.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7502 - components: - - type: Transform - pos: 0.5,-264.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7559 + color: '#0055CCFF' + - uid: 8520 components: - type: Transform pos: 15.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7561 + color: '#0055CCFF' + - uid: 8521 components: - type: Transform pos: -0.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7564 + color: '#990000FF' + - uid: 8522 components: - type: Transform pos: 16.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7565 + color: '#990000FF' + - uid: 8523 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7567 + color: '#990000FF' + - uid: 8524 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7571 + color: '#0055CCFF' + - uid: 8525 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7573 + color: '#0055CCFF' + - uid: 8526 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7574 + color: '#0055CCFF' + - uid: 8527 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7578 + color: '#0055CCFF' + - uid: 8528 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7582 + color: '#0055CCFF' + - uid: 8529 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7768 + color: '#0055CCFF' + - uid: 8530 components: - type: Transform pos: 0.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7774 + color: '#0055CCFF' + - uid: 8531 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7816 + color: '#0055CCFF' + - uid: 8532 components: - type: Transform pos: 15.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7819 + color: '#0055CCFF' + - uid: 8533 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7825 + color: '#990000FF' + - uid: 8534 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7826 + color: '#0055CCFF' + - uid: 8535 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7845 + color: '#0055CCFF' + - uid: 8536 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7849 + color: '#0055CCFF' + - uid: 8537 components: - type: Transform pos: -9.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7854 + color: '#990000FF' + - uid: 8538 components: - type: Transform pos: -9.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7856 + color: '#990000FF' + - uid: 8539 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7870 + color: '#990000FF' + - uid: 8540 components: - type: Transform pos: -9.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7872 + color: '#990000FF' + - uid: 8541 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7887 + color: '#990000FF' + - uid: 8542 components: - type: Transform pos: 5.5,-177.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7907 + color: '#0055CCFF' + - uid: 8543 components: - type: Transform pos: -17.5,-256.5 parent: 2 - - uid: 7911 + - uid: 8544 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7944 + color: '#990000FF' + - uid: 8545 components: - type: Transform pos: -15.5,-246.5 parent: 2 - - uid: 7947 + - uid: 8546 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-260.5 parent: 2 - - uid: 7949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-171.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7952 + - uid: 8548 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-245.5 parent: 2 - - uid: 8010 + - uid: 8549 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8013 + color: '#0055CCFF' + - uid: 8550 components: - type: Transform pos: 16.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8014 + color: '#990000FF' + - uid: 8551 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8015 + color: '#0055CCFF' + - uid: 8552 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8016 + color: '#990000FF' + - uid: 8553 components: - type: Transform pos: 17.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8027 + color: '#0055CCFF' + - uid: 8554 components: - type: Transform pos: 16.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8029 + color: '#990000FF' + - uid: 8555 components: - type: Transform pos: -0.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8031 + color: '#990000FF' + - uid: 8556 components: - type: Transform pos: -0.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8032 + color: '#990000FF' + - uid: 8557 components: - type: Transform pos: -0.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8035 + color: '#990000FF' + - uid: 8558 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8039 + color: '#990000FF' + - uid: 8559 components: - type: Transform pos: 4.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8040 + color: '#990000FF' + - uid: 8560 components: - type: Transform pos: -0.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-261.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8042 + color: '#990000FF' + - uid: 8561 components: - type: Transform pos: 4.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8043 + color: '#990000FF' + - uid: 8562 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8044 + color: '#990000FF' + - uid: 8563 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8046 + color: '#990000FF' + - uid: 8564 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8060 - components: - - type: Transform - pos: 15.5,-255.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8061 + color: '#990000FF' + - uid: 8565 components: - type: Transform pos: 15.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8062 + color: '#0055CCFF' + - uid: 8566 components: - type: Transform pos: 15.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8067 + color: '#0055CCFF' + - uid: 8567 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8068 + color: '#0055CCFF' + - uid: 8568 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8069 + color: '#0055CCFF' + - uid: 8569 components: - type: Transform pos: -0.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8077 + color: '#990000FF' + - uid: 8570 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8079 + color: '#0055CCFF' + - uid: 8571 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8082 + color: '#990000FF' + - uid: 8572 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8084 + color: '#990000FF' + - uid: 8573 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8085 + color: '#0055CCFF' + - uid: 8574 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8087 + color: '#990000FF' + - uid: 8575 components: - type: Transform pos: 15.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8088 + color: '#0055CCFF' + - uid: 8576 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8099 + color: '#990000FF' + - uid: 8577 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8126 + color: '#0055CCFF' + - uid: 8578 components: - type: Transform pos: 1.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8148 + color: '#990000FF' + - uid: 8579 components: - type: Transform pos: -19.5,-245.5 parent: 2 - - uid: 8160 + - uid: 8580 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8161 + color: '#990000FF' + - uid: 8581 components: - type: Transform pos: -0.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8162 + color: '#990000FF' + - uid: 8582 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8164 + color: '#0055CCFF' + - uid: 8583 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8181 + color: '#990000FF' + - uid: 8584 components: - type: Transform pos: 15.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8189 + color: '#0055CCFF' + - uid: 8585 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8190 + color: '#990000FF' + - uid: 8586 components: - type: Transform pos: 15.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8207 + color: '#0055CCFF' + - uid: 8587 components: - type: Transform pos: 15.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8210 + color: '#0055CCFF' + - uid: 8588 components: - type: Transform pos: -17.5,-261.5 parent: 2 - - uid: 8212 + - uid: 8589 components: - type: Transform pos: -0.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-257.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8249 + color: '#990000FF' + - uid: 8590 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8250 + color: '#990000FF' + - uid: 8591 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8375 + color: '#990000FF' + - uid: 8592 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8419 + color: '#0055CCFF' + - uid: 8593 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8487 + color: '#0055CCFF' + - uid: 8594 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8643 + color: '#990000FF' + - uid: 8595 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8747 + color: '#0055CCFF' + - uid: 8596 components: - type: Transform pos: 0.5,-269.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8783 + color: '#0055CCFF' + - uid: 8597 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-266.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8853 + color: '#990000FF' + - uid: 8598 components: - type: Transform pos: 1.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8858 + color: '#990000FF' + - uid: 8599 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8861 + color: '#0055CCFF' + - uid: 8600 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8862 + color: '#0055CCFF' + - uid: 8601 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8872 + color: '#0055CCFF' + - uid: 8602 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-265.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8875 + color: '#0055CCFF' + - uid: 8603 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-267.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8884 + color: '#0055CCFF' + - uid: 8604 components: - type: Transform pos: 1.5,-269.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8886 + color: '#990000FF' + - uid: 8605 components: - type: Transform pos: 1.5,-270.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8887 + color: '#990000FF' + - uid: 8606 components: - type: Transform pos: 0.5,-270.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8893 + color: '#0055CCFF' + - uid: 8607 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8899 + color: '#0055CCFF' + - uid: 8608 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-252.5 parent: 2 - - uid: 8903 + - uid: 8609 components: - type: Transform pos: 16.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8909 + color: '#990000FF' + - uid: 8610 components: - type: Transform pos: 16.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8922 + color: '#990000FF' + - uid: 8611 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-254.5 parent: 2 - - uid: 8967 + - uid: 8612 components: - type: Transform rot: 3.141592653589793 rad @@ -57431,231 +56626,229 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 9477 + - uid: 8613 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-14.5 parent: 2 - - uid: 9847 - components: + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8614 + components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9848 + color: '#0055CCFF' + - uid: 8615 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10012 + color: '#0055CCFF' + - uid: 8616 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10082 + color: '#0055CCFF' + - uid: 8617 components: - type: Transform pos: 9.5,-115.5 parent: 2 - - uid: 10087 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8618 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-114.5 parent: 2 - - uid: 10571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-345.5 - parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10711 + color: '#990000FF' + - uid: 8619 components: - type: Transform pos: 6.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10714 + color: '#990000FF' + - uid: 8620 components: - type: Transform pos: 6.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10715 + color: '#990000FF' + - uid: 8621 components: - type: Transform pos: 6.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10756 + color: '#990000FF' + - uid: 8622 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10760 + color: '#0055CCFF' + - uid: 8623 components: - type: Transform pos: -17.5,-262.5 parent: 2 - - uid: 10800 + - uid: 8624 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10963 + color: '#0055CCFF' + - uid: 8625 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10971 + color: '#0055CCFF' + - uid: 8626 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10996 + color: '#0055CCFF' + - uid: 8627 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11121 + color: '#0055CCFF' + - uid: 8628 components: - type: Transform pos: 0.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11187 + color: '#0055CCFF' + - uid: 8629 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11222 + color: '#0055CCFF' + - uid: 8630 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-313.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11425 + color: '#990000FF' + - uid: 8631 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11433 + color: '#0055CCFF' + - uid: 8632 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11550 + color: '#0055CCFF' + - uid: 8633 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11551 + color: '#0055CCFF' + - uid: 8634 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-250.5 parent: 2 - - uid: 11885 + - uid: 8635 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11888 + color: '#0055CCFF' + - uid: 8636 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-257.5 parent: 2 - - uid: 11889 + - uid: 8637 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-255.5 parent: 2 - - uid: 11890 + - uid: 8638 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-255.5 parent: 2 - - uid: 11891 + - uid: 8639 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-255.5 parent: 2 - - uid: 11938 + - uid: 8640 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-256.5 parent: 2 - - uid: 11939 + - uid: 8641 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-257.5 parent: 2 - - uid: 11946 + - uid: 8642 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-257.5 parent: 2 - - uid: 12031 + - uid: 8643 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-261.5 parent: 2 - - uid: 12052 + - uid: 8644 components: - type: Transform rot: -1.5707963267948966 rad @@ -57663,752 +56856,681 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 12135 + - uid: 8645 components: - type: Transform pos: 1.5,-242.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12141 + color: '#990000FF' + - uid: 8646 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12234 + color: '#0055CCFF' + - uid: 8647 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12235 + color: '#990000FF' + - uid: 8648 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12238 + color: '#990000FF' + - uid: 8649 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-285.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12248 + color: '#990000FF' + - uid: 8650 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-272.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-274.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12252 + color: '#0055CCFF' + - uid: 8651 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-275.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12253 + color: '#0055CCFF' + - uid: 8652 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-276.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12255 + color: '#0055CCFF' + - uid: 8653 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-278.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12256 + color: '#0055CCFF' + - uid: 8654 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-279.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12257 + color: '#0055CCFF' + - uid: 8655 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-280.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12258 + color: '#0055CCFF' + - uid: 8656 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-281.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12259 + color: '#0055CCFF' + - uid: 8657 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12260 + color: '#0055CCFF' + - uid: 8658 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12262 + color: '#0055CCFF' + - uid: 8659 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-285.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-286.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12265 + color: '#0055CCFF' + - uid: 8660 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-288.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12267 + color: '#0055CCFF' + - uid: 8661 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-290.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-291.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12269 + color: '#0055CCFF' + - uid: 8662 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-292.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-293.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12271 + color: '#0055CCFF' + - uid: 8663 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-294.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12272 + color: '#0055CCFF' + - uid: 8664 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12274 + color: '#990000FF' + - uid: 8665 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-296.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12277 + color: '#0055CCFF' + - uid: 8666 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12278 + color: '#990000FF' + - uid: 8667 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12279 + color: '#990000FF' + - uid: 8668 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12280 + color: '#990000FF' + - uid: 8669 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12281 + color: '#990000FF' + - uid: 8670 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12283 + color: '#990000FF' + - uid: 8671 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12284 + color: '#990000FF' + - uid: 8672 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12285 + color: '#990000FF' + - uid: 8673 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12286 + color: '#990000FF' + - uid: 8674 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12288 + color: '#990000FF' + - uid: 8675 components: - type: Transform pos: -5.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12289 + color: '#990000FF' + - uid: 8676 components: - type: Transform pos: -5.5,-281.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12290 + color: '#990000FF' + - uid: 8677 components: - type: Transform pos: -5.5,-280.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12291 + color: '#990000FF' + - uid: 8678 components: - type: Transform pos: -5.5,-279.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12292 + color: '#990000FF' + - uid: 8679 components: - type: Transform pos: -5.5,-278.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12293 + color: '#990000FF' + - uid: 8680 components: - type: Transform pos: -5.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12294 + color: '#990000FF' + - uid: 8681 components: - type: Transform pos: -5.5,-276.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12295 + color: '#990000FF' + - uid: 8682 components: - type: Transform pos: -5.5,-275.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12299 + color: '#990000FF' + - uid: 8683 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12300 + color: '#0055CCFF' + - uid: 8684 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12301 + color: '#0055CCFF' + - uid: 8685 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12302 + color: '#0055CCFF' + - uid: 8686 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12303 + color: '#0055CCFF' + - uid: 8687 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12304 + color: '#0055CCFF' + - uid: 8688 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12307 + color: '#0055CCFF' + - uid: 8689 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-281.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12308 + color: '#990000FF' + - uid: 8690 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-280.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12309 + color: '#990000FF' + - uid: 8691 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-279.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12310 + color: '#990000FF' + - uid: 8692 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-278.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12311 + color: '#990000FF' + - uid: 8693 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12312 + color: '#990000FF' + - uid: 8694 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-276.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12313 + color: '#990000FF' + - uid: 8695 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-275.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12314 + color: '#990000FF' + - uid: 8696 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-274.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12315 + color: '#990000FF' + - uid: 8697 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-272.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12318 + color: '#990000FF' + - uid: 8698 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12319 + color: '#990000FF' + - uid: 8699 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12321 + color: '#990000FF' + - uid: 8700 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12323 + color: '#990000FF' + - uid: 8701 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12327 + color: '#0055CCFF' + - uid: 8702 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12328 + color: '#0055CCFF' + - uid: 8703 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12329 + color: '#0055CCFF' + - uid: 8704 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12330 + color: '#0055CCFF' + - uid: 8705 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12337 + color: '#0055CCFF' + - uid: 8706 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12344 + color: '#0055CCFF' + - uid: 8707 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12346 + color: '#0055CCFF' + - uid: 8708 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12347 + color: '#0055CCFF' + - uid: 8709 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12348 + color: '#0055CCFF' + - uid: 8710 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12350 + color: '#0055CCFF' + - uid: 8711 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12351 + color: '#990000FF' + - uid: 8712 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-286.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-285.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12353 + color: '#990000FF' + - uid: 8713 components: - type: Transform pos: -0.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12354 + color: '#990000FF' + - uid: 8714 components: - type: Transform pos: -0.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12357 + color: '#990000FF' + - uid: 8715 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12358 + color: '#0055CCFF' + - uid: 8716 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12359 + color: '#0055CCFF' + - uid: 8717 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12360 + color: '#0055CCFF' + - uid: 8718 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12361 + color: '#0055CCFF' + - uid: 8719 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12365 + color: '#0055CCFF' + - uid: 8720 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12366 + color: '#0055CCFF' + - uid: 8721 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12370 + color: '#0055CCFF' + - uid: 8722 components: - type: Transform pos: 1.5,-296.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12377 + color: '#990000FF' + - uid: 8723 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12378 + color: '#0055CCFF' + - uid: 8724 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-297.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12380 + color: '#990000FF' + - uid: 8725 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12384 + color: '#0055CCFF' + - uid: 8726 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12392 + color: '#0055CCFF' + - uid: 8727 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12396 + color: '#990000FF' + - uid: 8728 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-320.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-318.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12401 + color: '#990000FF' + - uid: 8729 components: - type: Transform pos: 0.5,-320.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12402 + color: '#0055CCFF' + - uid: 8730 components: - type: Transform pos: 0.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12403 - components: - - type: Transform - pos: 0.5,-318.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12406 + color: '#0055CCFF' + - uid: 8731 components: - type: Transform rot: 1.5707963267948966 rad @@ -58416,7 +57538,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12407 + - uid: 8732 components: - type: Transform rot: 1.5707963267948966 rad @@ -58424,2550 +57546,2421 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12414 + - uid: 8733 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-315.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12418 + color: '#0055CCFF' + - uid: 8734 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12419 + color: '#0055CCFF' + - uid: 8735 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12420 + color: '#0055CCFF' + - uid: 8736 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-317.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12421 + color: '#990000FF' + - uid: 8737 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-316.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12424 + color: '#990000FF' + - uid: 8738 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12425 + color: '#0055CCFF' + - uid: 8739 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12426 + color: '#990000FF' + - uid: 8740 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-316.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12427 + color: '#0055CCFF' + - uid: 8741 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-317.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12431 + color: '#0055CCFF' + - uid: 8742 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12436 + color: '#990000FF' + - uid: 8743 + components: + - type: Transform + pos: -0.5,-318.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8744 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12437 + color: '#990000FF' + - uid: 8745 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12438 + color: '#990000FF' + - uid: 8746 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12443 + color: '#990000FF' + - uid: 8747 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-312.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12445 + color: '#990000FF' + - uid: 8748 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12446 + color: '#990000FF' + - uid: 8749 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12447 + color: '#990000FF' + - uid: 8750 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12448 + color: '#990000FF' + - uid: 8751 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12449 + color: '#0055CCFF' + - uid: 8752 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12450 + color: '#0055CCFF' + - uid: 8753 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12451 + color: '#0055CCFF' + - uid: 8754 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12452 + color: '#0055CCFF' + - uid: 8755 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-312.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12454 + color: '#0055CCFF' + - uid: 8756 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-313.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12455 + color: '#0055CCFF' + - uid: 8757 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12456 + color: '#0055CCFF' + - uid: 8758 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12457 + color: '#990000FF' + - uid: 8759 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12458 + color: '#990000FF' + - uid: 8760 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12459 + color: '#990000FF' + - uid: 8761 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12461 + color: '#990000FF' + - uid: 8762 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12462 + color: '#990000FF' + - uid: 8763 components: - type: Transform pos: -0.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12463 + color: '#990000FF' + - uid: 8764 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12464 + color: '#0055CCFF' + - uid: 8765 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12465 + color: '#0055CCFF' + - uid: 8766 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12466 + color: '#0055CCFF' + - uid: 8767 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12467 + color: '#0055CCFF' + - uid: 8768 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12468 + color: '#0055CCFF' + - uid: 8769 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12477 + color: '#0055CCFF' + - uid: 8770 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12478 + color: '#0055CCFF' + - uid: 8771 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12479 + color: '#990000FF' + - uid: 8772 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12480 + color: '#990000FF' + - uid: 8773 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12481 + color: '#990000FF' + - uid: 8774 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12482 + color: '#0055CCFF' + - uid: 8775 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12483 + color: '#0055CCFF' + - uid: 8776 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12484 + color: '#990000FF' + - uid: 8777 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12485 + color: '#990000FF' + - uid: 8778 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12487 + color: '#990000FF' + - uid: 8779 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12488 + color: '#0055CCFF' + - uid: 8780 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12492 + color: '#0055CCFF' + - uid: 8781 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12493 + color: '#0055CCFF' + - uid: 8782 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12497 + color: '#990000FF' + - uid: 8783 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12499 + color: '#990000FF' + - uid: 8784 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12505 + color: '#990000FF' + - uid: 8785 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12506 + color: '#0055CCFF' + - uid: 8786 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12511 + color: '#990000FF' + - uid: 8787 components: - type: Transform pos: -0.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12512 + color: '#990000FF' + - uid: 8788 components: - type: Transform pos: -0.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12513 + color: '#990000FF' + - uid: 8789 components: - type: Transform pos: 0.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12519 + color: '#0055CCFF' + - uid: 8790 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-319.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12526 + color: '#990000FF' + - uid: 8791 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12527 + color: '#990000FF' + - uid: 8792 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12533 + color: '#990000FF' + - uid: 8793 components: - type: Transform pos: 10.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12534 + color: '#0055CCFF' + - uid: 8794 components: - type: Transform pos: 10.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12536 + color: '#0055CCFF' + - uid: 8795 components: - type: Transform pos: 10.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12537 + color: '#0055CCFF' + - uid: 8796 components: - type: Transform pos: 10.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12547 + color: '#0055CCFF' + - uid: 8797 components: - type: Transform pos: 7.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12548 + color: '#0055CCFF' + - uid: 8798 components: - type: Transform pos: 7.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12549 + color: '#0055CCFF' + - uid: 8799 components: - type: Transform pos: 7.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12551 + color: '#0055CCFF' + - uid: 8800 components: - type: Transform pos: 8.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12552 + color: '#990000FF' + - uid: 8801 components: - type: Transform pos: 8.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12553 + color: '#990000FF' + - uid: 8802 components: - type: Transform pos: 8.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12555 + color: '#990000FF' + - uid: 8803 components: - type: Transform pos: 8.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12556 + color: '#990000FF' + - uid: 8804 components: - type: Transform pos: 8.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12557 + color: '#990000FF' + - uid: 8805 components: - type: Transform pos: 8.5,-302.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12559 + color: '#990000FF' + - uid: 8806 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-301.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12561 + color: '#990000FF' + - uid: 8807 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12574 + color: '#0055CCFF' + - uid: 8808 components: - type: Transform pos: -0.5,-299.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12575 + color: '#990000FF' + - uid: 8809 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12583 + color: '#0055CCFF' + - uid: 8810 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12584 + color: '#0055CCFF' + - uid: 8811 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12586 + color: '#990000FF' + - uid: 8812 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12589 + color: '#0055CCFF' + - uid: 8813 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12590 + color: '#0055CCFF' + - uid: 8814 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12591 + color: '#990000FF' + - uid: 8815 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-302.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12592 + color: '#990000FF' + - uid: 8816 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-302.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12593 + color: '#0055CCFF' + - uid: 8817 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-301.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12594 + color: '#0055CCFF' + - uid: 8818 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-300.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12595 + color: '#0055CCFF' + - uid: 8819 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-299.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12596 + color: '#0055CCFF' + - uid: 8820 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12600 + color: '#0055CCFF' + - uid: 8821 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-301.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12601 + color: '#990000FF' + - uid: 8822 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-300.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12616 + color: '#990000FF' + - uid: 8823 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12617 + color: '#990000FF' + - uid: 8824 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12619 + color: '#990000FF' + - uid: 8825 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12620 + color: '#990000FF' + - uid: 8826 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12622 + color: '#990000FF' + - uid: 8827 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12642 + color: '#990000FF' + - uid: 8828 components: - type: Transform pos: 0.5,-322.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12643 - components: - - type: Transform - pos: 0.5,-323.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12644 + color: '#0055CCFF' + - uid: 8829 components: - type: Transform pos: 0.5,-324.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12645 - components: - - type: Transform - pos: 0.5,-325.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12646 - components: - - type: Transform - pos: 0.5,-329.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12647 + color: '#0055CCFF' + - uid: 8830 components: - type: Transform pos: 0.5,-326.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12656 + color: '#0055CCFF' + - uid: 8831 components: - type: Transform pos: 1.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12657 - components: - - type: Transform - pos: 1.5,-329.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12715 + color: '#990000FF' + - uid: 8832 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12716 + color: '#0055CCFF' + - uid: 8833 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12717 + color: '#0055CCFF' + - uid: 8834 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12719 + color: '#0055CCFF' + - uid: 8835 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12723 + color: '#990000FF' + - uid: 8836 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12724 + color: '#990000FF' + - uid: 8837 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12725 + color: '#990000FF' + - uid: 8838 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12726 + color: '#990000FF' + - uid: 8839 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12727 + color: '#990000FF' + - uid: 8840 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12728 + color: '#990000FF' + - uid: 8841 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12729 + color: '#990000FF' + - uid: 8842 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12730 + color: '#990000FF' + - uid: 8843 components: - type: Transform pos: 0.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12732 + color: '#0055CCFF' + - uid: 8844 components: - type: Transform pos: 0.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12733 + color: '#0055CCFF' + - uid: 8845 components: - type: Transform pos: 0.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12734 + color: '#0055CCFF' + - uid: 8846 components: - type: Transform pos: 0.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12735 + color: '#0055CCFF' + - uid: 8847 components: - type: Transform pos: 0.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12736 + color: '#0055CCFF' + - uid: 8848 components: - type: Transform pos: 0.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12737 + color: '#0055CCFF' + - uid: 8849 components: - type: Transform pos: 0.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12738 + color: '#0055CCFF' + - uid: 8850 components: - type: Transform pos: 0.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12739 + color: '#0055CCFF' + - uid: 8851 components: - type: Transform pos: 0.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12740 + color: '#0055CCFF' + - uid: 8852 components: - type: Transform pos: 0.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12741 - components: - - type: Transform - pos: 0.5,-342.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12742 + color: '#0055CCFF' + - uid: 8853 components: - type: Transform pos: 0.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12743 - components: - - type: Transform - pos: 0.5,-344.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12744 + color: '#0055CCFF' + - uid: 8854 components: - type: Transform pos: 0.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12745 + color: '#0055CCFF' + - uid: 8855 components: - type: Transform pos: 0.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12747 + color: '#0055CCFF' + - uid: 8856 components: - type: Transform pos: 0.5,-349.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12748 + color: '#0055CCFF' + - uid: 8857 components: - type: Transform pos: 0.5,-350.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12749 + color: '#0055CCFF' + - uid: 8858 components: - type: Transform pos: 0.5,-351.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12750 + color: '#0055CCFF' + - uid: 8859 components: - type: Transform pos: 0.5,-352.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12751 + color: '#0055CCFF' + - uid: 8860 components: - type: Transform pos: 0.5,-353.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12753 + color: '#0055CCFF' + - uid: 8861 components: - type: Transform pos: 0.5,-355.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12756 + color: '#0055CCFF' + - uid: 8862 components: - type: Transform pos: 1.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12757 + color: '#990000FF' + - uid: 8863 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12758 + color: '#990000FF' + - uid: 8864 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12759 + color: '#990000FF' + - uid: 8865 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12760 + color: '#990000FF' + - uid: 8866 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12761 + color: '#990000FF' + - uid: 8867 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12762 + color: '#990000FF' + - uid: 8868 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12763 + color: '#990000FF' + - uid: 8869 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12764 + color: '#990000FF' + - uid: 8870 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12765 + color: '#990000FF' + - uid: 8871 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12766 + color: '#990000FF' + - uid: 8872 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12767 + color: '#990000FF' + - uid: 8873 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12769 + color: '#990000FF' + - uid: 8874 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12770 + color: '#990000FF' + - uid: 8875 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12778 + color: '#990000FF' + - uid: 8876 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12779 + color: '#990000FF' + - uid: 8877 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12780 + color: '#990000FF' + - uid: 8878 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12781 + color: '#990000FF' + - uid: 8879 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12783 + color: '#990000FF' + - uid: 8880 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12784 + color: '#990000FF' + - uid: 8881 components: - type: Transform pos: 1.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12785 + color: '#990000FF' + - uid: 8882 components: - type: Transform pos: 1.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12786 + color: '#990000FF' + - uid: 8883 components: - type: Transform pos: 1.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12787 + color: '#990000FF' + - uid: 8884 components: - type: Transform pos: 1.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12788 + color: '#990000FF' + - uid: 8885 components: - type: Transform pos: 1.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12789 + color: '#990000FF' + - uid: 8886 components: - type: Transform pos: 1.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12790 + color: '#990000FF' + - uid: 8887 components: - type: Transform pos: -4.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12791 + color: '#990000FF' + - uid: 8888 components: - type: Transform pos: -4.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12792 + color: '#990000FF' + - uid: 8889 components: - type: Transform pos: -4.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12793 + color: '#990000FF' + - uid: 8890 components: - type: Transform pos: -4.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12794 + color: '#990000FF' + - uid: 8891 components: - type: Transform pos: -4.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12795 + color: '#990000FF' + - uid: 8892 components: - type: Transform pos: -4.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12799 + color: '#990000FF' + - uid: 8893 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12800 + color: '#990000FF' + - uid: 8894 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12802 + color: '#990000FF' + - uid: 8895 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12803 + color: '#990000FF' + - uid: 8896 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12804 + color: '#990000FF' + - uid: 8897 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12805 + color: '#990000FF' + - uid: 8898 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-344.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-345.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12809 + color: '#990000FF' + - uid: 8899 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12810 + color: '#990000FF' + - uid: 8900 components: - type: Transform pos: -0.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12814 + color: '#990000FF' + - uid: 8901 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12815 + color: '#990000FF' + - uid: 8902 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12816 + color: '#990000FF' + - uid: 8903 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12826 + color: '#990000FF' + - uid: 8904 components: - type: Transform pos: 6.5,-15.5 parent: 2 - - uid: 12827 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8905 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12828 + color: '#990000FF' + - uid: 8906 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12829 + color: '#990000FF' + - uid: 8907 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12830 + color: '#990000FF' + - uid: 8908 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12832 + color: '#990000FF' + - uid: 8909 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-344.5 + pos: 1.5,-167.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12833 + color: '#990000FF' + - uid: 8910 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12834 + color: '#0055CCFF' + - uid: 8911 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12835 + color: '#0055CCFF' + - uid: 8912 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12836 + color: '#0055CCFF' + - uid: 8913 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12839 + color: '#0055CCFF' + - uid: 8914 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12840 + color: '#0055CCFF' + - uid: 8915 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12845 + color: '#0055CCFF' + - uid: 8916 components: - type: Transform pos: -6.5,-329.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12846 + color: '#0055CCFF' + - uid: 8917 components: - type: Transform pos: -6.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12847 + color: '#0055CCFF' + - uid: 8918 components: - type: Transform pos: -6.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12848 + color: '#0055CCFF' + - uid: 8919 components: - type: Transform pos: -6.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12849 + color: '#0055CCFF' + - uid: 8920 components: - type: Transform pos: -6.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12850 + color: '#0055CCFF' + - uid: 8921 components: - type: Transform pos: 7.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12851 + color: '#0055CCFF' + - uid: 8922 components: - type: Transform pos: 7.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12852 + color: '#0055CCFF' + - uid: 8923 components: - type: Transform pos: 7.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12853 + color: '#0055CCFF' + - uid: 8924 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12856 + color: '#0055CCFF' + - uid: 8925 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12857 + color: '#0055CCFF' + - uid: 8926 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12858 + color: '#0055CCFF' + - uid: 8927 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12859 + color: '#0055CCFF' + - uid: 8928 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12860 + color: '#0055CCFF' + - uid: 8929 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12861 + color: '#0055CCFF' + - uid: 8930 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12862 + color: '#0055CCFF' + - uid: 8931 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12863 + color: '#0055CCFF' + - uid: 8932 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12865 + color: '#0055CCFF' + - uid: 8933 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-344.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12867 + color: '#0055CCFF' + - uid: 8934 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-336.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12876 + color: '#0055CCFF' + - uid: 8935 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-344.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12877 + color: '#0055CCFF' + - uid: 8936 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12878 + color: '#0055CCFF' + - uid: 8937 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12882 + color: '#0055CCFF' + - uid: 8938 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12883 + color: '#0055CCFF' + - uid: 8939 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12884 + color: '#0055CCFF' + - uid: 8940 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12885 + color: '#0055CCFF' + - uid: 8941 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12888 + color: '#0055CCFF' + - uid: 8942 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12889 + color: '#0055CCFF' + - uid: 8943 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12890 + color: '#0055CCFF' + - uid: 8944 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12891 + color: '#0055CCFF' + - uid: 8945 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12892 + color: '#0055CCFF' + - uid: 8946 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12894 + color: '#0055CCFF' + - uid: 8947 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12899 + color: '#0055CCFF' + - uid: 8948 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12903 + color: '#0055CCFF' + - uid: 8949 components: - type: Transform pos: 7.5,-329.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12904 + color: '#0055CCFF' + - uid: 8950 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12905 + color: '#0055CCFF' + - uid: 8951 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12909 + color: '#0055CCFF' + - uid: 8952 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12916 + color: '#0055CCFF' + - uid: 8953 components: - type: Transform pos: 1.5,-355.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12917 + color: '#990000FF' + - uid: 8954 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12921 + color: '#990000FF' + - uid: 8955 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-356.5 + pos: -0.5,-220.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12922 + - uid: 8956 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-358.5 + pos: -0.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12923 + color: '#0055CCFF' + - uid: 8957 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-358.5 + pos: 3.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12924 + color: '#0055CCFF' + - uid: 8958 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-358.5 + pos: 2.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12925 + color: '#0055CCFF' + - uid: 8959 components: - type: Transform pos: 1.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12927 + color: '#990000FF' + - uid: 8960 components: - type: Transform pos: 0.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12930 + color: '#0055CCFF' + - uid: 8961 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12931 + color: '#990000FF' + - uid: 8962 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12936 + color: '#990000FF' + - uid: 8963 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12937 + color: '#0055CCFF' + - uid: 8964 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12939 + color: '#0055CCFF' + - uid: 8965 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12940 + color: '#990000FF' + - uid: 8966 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12942 + color: '#990000FF' + - uid: 8967 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12950 + color: '#990000FF' + - uid: 8968 components: - type: Transform pos: -3.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12955 + color: '#0055CCFF' + - uid: 8969 components: - type: Transform pos: -3.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12956 + color: '#0055CCFF' + - uid: 8970 components: - type: Transform pos: -3.5,-367.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12957 - components: - - type: Transform - pos: -3.5,-368.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12958 + color: '#0055CCFF' + - uid: 8971 components: - type: Transform pos: -3.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12959 + color: '#0055CCFF' + - uid: 8972 components: - type: Transform pos: 4.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12960 - components: - - type: Transform - pos: 4.5,-368.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12961 + color: '#0055CCFF' + - uid: 8973 components: - type: Transform pos: 4.5,-367.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12962 + color: '#0055CCFF' + - uid: 8974 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12963 + color: '#0055CCFF' + - uid: 8975 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12964 + color: '#0055CCFF' + - uid: 8976 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12965 + color: '#0055CCFF' + - uid: 8977 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12966 + color: '#0055CCFF' + - uid: 8978 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12967 + color: '#0055CCFF' + - uid: 8979 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12969 + color: '#0055CCFF' + - uid: 8980 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12970 + color: '#0055CCFF' + - uid: 8981 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12971 + color: '#0055CCFF' + - uid: 8982 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12972 + color: '#0055CCFF' + - uid: 8983 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12973 + color: '#0055CCFF' + - uid: 8984 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12974 + color: '#0055CCFF' + - uid: 8985 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12975 + color: '#0055CCFF' + - uid: 8986 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12976 + color: '#0055CCFF' + - uid: 8987 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12977 + color: '#0055CCFF' + - uid: 8988 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12978 + color: '#0055CCFF' + - uid: 8989 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12979 + color: '#0055CCFF' + - uid: 8990 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13009 + color: '#0055CCFF' + - uid: 8991 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13010 + color: '#990000FF' + - uid: 8992 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-359.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13011 + color: '#990000FF' + - uid: 8993 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13013 + color: '#990000FF' + - uid: 8994 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13015 + color: '#990000FF' + - uid: 8995 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13016 + color: '#990000FF' + - uid: 8996 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-361.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13018 + color: '#990000FF' + - uid: 8997 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13019 + color: '#990000FF' + - uid: 8998 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13020 + color: '#990000FF' + - uid: 8999 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-361.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13023 + color: '#990000FF' + - uid: 9000 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-361.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13025 + color: '#990000FF' + - uid: 9001 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13028 + color: '#990000FF' + - uid: 9002 components: - type: Transform pos: -6.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13030 + color: '#990000FF' + - uid: 9003 components: - type: Transform pos: 7.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13046 + color: '#990000FF' + - uid: 9004 components: - type: Transform pos: 0.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13048 + color: '#990000FF' + - uid: 9005 components: - type: Transform pos: 0.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13049 + color: '#990000FF' + - uid: 9006 components: - type: Transform pos: 0.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13050 - components: - - type: Transform - pos: 0.5,-365.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13051 + color: '#990000FF' + - uid: 9007 components: - type: Transform pos: 0.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13058 + color: '#990000FF' + - uid: 9008 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-364.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13060 + color: '#990000FF' + - uid: 9009 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13062 + color: '#990000FF' + - uid: 9010 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-364.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13065 + color: '#990000FF' + - uid: 9011 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13070 + color: '#990000FF' + - uid: 9012 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-367.5 + pos: 7.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13071 + color: '#990000FF' + - uid: 9013 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-368.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13084 + color: '#990000FF' + - uid: 9014 components: - type: Transform pos: -4.5,-370.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13085 + color: '#990000FF' + - uid: 9015 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13086 + color: '#990000FF' + - uid: 9016 components: - type: Transform pos: 5.5,-370.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13089 + color: '#990000FF' + - uid: 9017 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13090 + color: '#990000FF' + - uid: 9018 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13091 + color: '#990000FF' + - uid: 9019 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13092 + color: '#990000FF' + - uid: 9020 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13095 + color: '#990000FF' + - uid: 9021 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13096 + color: '#990000FF' + - uid: 9022 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13097 + color: '#990000FF' + - uid: 9023 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13098 + color: '#990000FF' + - uid: 9024 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13099 + color: '#990000FF' + - uid: 9025 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13101 + color: '#990000FF' + - uid: 9026 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13102 + color: '#990000FF' + - uid: 9027 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13138 + color: '#990000FF' + - uid: 9028 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13139 + color: '#0055CCFF' + - uid: 9029 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13140 + color: '#0055CCFF' + - uid: 9030 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13141 + color: '#0055CCFF' + - uid: 9031 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13142 + color: '#0055CCFF' + - uid: 9032 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13144 + color: '#0055CCFF' + - uid: 9033 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13228 + color: '#0055CCFF' + - uid: 9034 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13229 + color: '#990000FF' + - uid: 9035 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13230 + color: '#990000FF' + - uid: 9036 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13231 + color: '#990000FF' + - uid: 9037 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13232 + color: '#990000FF' + - uid: 9038 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13233 + color: '#0055CCFF' + - uid: 9039 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13234 + color: '#0055CCFF' + - uid: 9040 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13235 + color: '#0055CCFF' + - uid: 9041 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13245 + color: '#0055CCFF' + - uid: 9042 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13273 + color: '#0055CCFF' + - uid: 9043 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-263.5 parent: 2 - - uid: 13296 + - uid: 9044 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13428 + color: '#990000FF' + - uid: 9045 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-263.5 parent: 2 - - uid: 13470 + - uid: 9046 components: - type: Transform rot: 3.141592653589793 rad @@ -60975,7 +59968,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 13473 + - uid: 9047 components: - type: Transform rot: 3.141592653589793 rad @@ -60983,7 +59976,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 13997 + - uid: 9048 components: - type: Transform rot: 3.141592653589793 rad @@ -60991,28 +59984,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 14299 + - uid: 9049 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14302 + color: '#990000FF' + - uid: 9050 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-263.5 parent: 2 - - uid: 14304 + - uid: 9051 components: - type: Transform pos: 16.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14424 + color: '#990000FF' + - uid: 9052 components: - type: Transform rot: -1.5707963267948966 rad @@ -61020,7 +60013,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14444 + - uid: 9053 components: - type: Transform rot: -1.5707963267948966 rad @@ -61028,311 +60021,295 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14577 + - uid: 9054 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-261.5 parent: 2 - - uid: 14579 + - uid: 9055 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-251.5 parent: 2 - - uid: 14580 + - uid: 9056 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14581 + color: '#0055CCFF' + - uid: 9057 components: - type: Transform pos: -17.5,-252.5 parent: 2 - - uid: 14807 + - uid: 9058 + components: + - type: Transform + pos: 1.5,-166.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9059 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14808 + color: '#0055CCFF' + - uid: 9060 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14809 + color: '#0055CCFF' + - uid: 9061 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14810 + color: '#0055CCFF' + - uid: 9062 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14811 + color: '#0055CCFF' + - uid: 9063 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14812 + color: '#0055CCFF' + - uid: 9064 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14813 + color: '#0055CCFF' + - uid: 9065 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14814 + color: '#0055CCFF' + - uid: 9066 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14817 + color: '#0055CCFF' + - uid: 9067 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14818 + color: '#0055CCFF' + - uid: 9068 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14819 + color: '#0055CCFF' + - uid: 9069 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14820 + color: '#0055CCFF' + - uid: 9070 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14821 + color: '#0055CCFF' + - uid: 9071 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14822 + color: '#0055CCFF' + - uid: 9072 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14823 + color: '#0055CCFF' + - uid: 9073 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14824 + color: '#0055CCFF' + - uid: 9074 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14829 + color: '#0055CCFF' + - uid: 9075 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14830 + color: '#0055CCFF' + - uid: 9076 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14831 + color: '#0055CCFF' + - uid: 9077 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14832 + color: '#0055CCFF' + - uid: 9078 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14833 + color: '#0055CCFF' + - uid: 9079 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14834 + color: '#0055CCFF' + - uid: 9080 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14838 + color: '#0055CCFF' + - uid: 9081 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14839 + color: '#0055CCFF' + - uid: 9082 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14840 + color: '#0055CCFF' + - uid: 9083 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14841 + color: '#0055CCFF' + - uid: 9084 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14843 + color: '#0055CCFF' + - uid: 9085 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14844 + color: '#0055CCFF' + - uid: 9086 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14845 + color: '#0055CCFF' + - uid: 9087 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14846 + color: '#0055CCFF' + - uid: 9088 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14863 - components: - - type: Transform - pos: -3.5,-107.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14866 + color: '#0055CCFF' + - uid: 9089 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-105.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14867 + color: '#0055CCFF' + - uid: 9090 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-104.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14868 + color: '#0055CCFF' + - uid: 9091 components: - type: Transform rot: 3.141592653589793 rad @@ -61340,7 +60317,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14869 + - uid: 9092 components: - type: Transform rot: 3.141592653589793 rad @@ -61348,7 +60325,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14870 + - uid: 9093 components: - type: Transform rot: 3.141592653589793 rad @@ -61356,7 +60333,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14871 + - uid: 9094 components: - type: Transform rot: 3.141592653589793 rad @@ -61364,7 +60341,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14872 + - uid: 9095 components: - type: Transform rot: 3.141592653589793 rad @@ -61372,7 +60349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14873 + - uid: 9096 components: - type: Transform anchored: False @@ -61384,21 +60361,21 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 14892 + - uid: 9097 components: - type: Transform pos: -4.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14894 + color: '#0055CCFF' + - uid: 9098 components: - type: Transform pos: -4.5,-131.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14896 + color: '#0055CCFF' + - uid: 9099 components: - type: Transform rot: 3.141592653589793 rad @@ -61406,7 +60383,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14897 + - uid: 9100 components: - type: Transform rot: 3.141592653589793 rad @@ -61414,7 +60391,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14898 + - uid: 9101 components: - type: Transform rot: 3.141592653589793 rad @@ -61422,7 +60399,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14899 + - uid: 9102 components: - type: Transform rot: 3.141592653589793 rad @@ -61430,7 +60407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14900 + - uid: 9103 components: - type: Transform rot: 3.141592653589793 rad @@ -61438,7 +60415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14901 + - uid: 9104 components: - type: Transform rot: 3.141592653589793 rad @@ -61446,7 +60423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14902 + - uid: 9105 components: - type: Transform rot: 3.141592653589793 rad @@ -61454,1987 +60431,2701 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 15043 + - uid: 9106 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-189.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15045 + color: '#0055CCFF' + - uid: 9107 components: - type: Transform pos: -4.5,-188.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15046 + color: '#0055CCFF' + - uid: 9108 components: - type: Transform pos: -4.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15047 + color: '#0055CCFF' + - uid: 9109 components: - type: Transform pos: -4.5,-186.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15048 + color: '#0055CCFF' + - uid: 9110 components: - type: Transform pos: -4.5,-185.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15099 + color: '#0055CCFF' + - uid: 9111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-190.5 + rot: 1.5707963267948966 rad + pos: 5.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15100 + color: '#990000FF' + - uid: 9112 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-190.5 + pos: 7.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15103 + color: '#0055CCFF' + - uid: 9113 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-189.5 + pos: 6.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15104 + color: '#0055CCFF' + - uid: 9114 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-158.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15105 + color: '#0055CCFF' + - uid: 9115 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-159.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15106 + color: '#0055CCFF' + - uid: 9116 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15107 + color: '#0055CCFF' + - uid: 9117 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-161.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15108 + color: '#0055CCFF' + - uid: 9118 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15109 + color: '#0055CCFF' + - uid: 9119 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15110 + color: '#0055CCFF' + - uid: 9120 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15120 + color: '#0055CCFF' + - uid: 9121 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-156.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15121 + color: '#0055CCFF' + - uid: 9122 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-155.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15122 + color: '#0055CCFF' + - uid: 9123 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15123 + color: '#0055CCFF' + - uid: 9124 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-153.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15124 + color: '#0055CCFF' + - uid: 9125 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-152.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15166 + color: '#0055CCFF' + - uid: 9126 components: - type: Transform pos: 5.5,-272.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15179 + color: '#0055CCFF' + - uid: 9127 components: - type: Transform pos: 5.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15180 + color: '#0055CCFF' + - uid: 9128 components: - type: Transform pos: 5.5,-270.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15181 + color: '#0055CCFF' + - uid: 9129 components: - type: Transform pos: 5.5,-269.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15182 + color: '#0055CCFF' + - uid: 9130 components: - type: Transform pos: 5.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15183 + color: '#0055CCFF' + - uid: 9131 components: - type: Transform pos: 5.5,-267.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15184 + color: '#0055CCFF' + - uid: 9132 components: - type: Transform pos: 5.5,-266.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15196 + color: '#0055CCFF' + - uid: 9133 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15197 + color: '#0055CCFF' + - uid: 9134 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15198 + color: '#0055CCFF' + - uid: 9135 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15199 + color: '#0055CCFF' + - uid: 9136 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15201 + color: '#0055CCFF' + - uid: 9137 components: - type: Transform pos: 5.5,-288.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15202 + color: '#0055CCFF' + - uid: 9138 components: - type: Transform pos: 5.5,-289.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15203 + color: '#0055CCFF' + - uid: 9139 components: - type: Transform pos: 5.5,-290.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15204 + color: '#0055CCFF' + - uid: 9140 components: - type: Transform pos: 5.5,-291.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15205 + color: '#0055CCFF' + - uid: 9141 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-326.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15206 + color: '#0055CCFF' + - uid: 9142 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-325.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16480 + color: '#0055CCFF' + - uid: 9143 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16481 + color: '#990000FF' + - uid: 9144 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16485 + color: '#990000FF' + - uid: 9145 components: - type: Transform pos: -3.5,-173.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16486 + color: '#990000FF' + - uid: 9146 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-174.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16503 + color: '#990000FF' + - uid: 9147 components: - type: Transform pos: 1.5,-169.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16684 + color: '#990000FF' + - uid: 9148 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16685 + color: '#0055CCFF' + - uid: 9149 components: - type: Transform pos: -3.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16686 + color: '#0055CCFF' + - uid: 9150 components: - type: Transform pos: -3.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16868 + color: '#0055CCFF' + - uid: 9151 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16978 + color: '#0055CCFF' + - uid: 9152 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16980 + color: '#990000FF' + - uid: 9153 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16982 + color: '#990000FF' + - uid: 9154 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16983 + color: '#990000FF' + - uid: 9155 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16984 + color: '#0055CCFF' + - uid: 9156 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16985 + color: '#0055CCFF' + - uid: 9157 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16986 + color: '#0055CCFF' + - uid: 9158 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16987 + color: '#0055CCFF' + - uid: 9159 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16989 + color: '#0055CCFF' + - uid: 9160 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16992 + color: '#0055CCFF' + - uid: 9161 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16993 + color: '#0055CCFF' + - uid: 9162 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16994 + color: '#0055CCFF' + - uid: 9163 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 9220 + components: + - type: Transform + pos: 0.5,-169.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - - uid: 438 + - uid: 7620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-169.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-112.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-115.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-118.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-121.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9164 + components: + - type: Transform + pos: 1.5,-358.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-124.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-119.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9167 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 584 + color: '#990000FF' + - uid: 9168 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 714 + color: '#0055CCFF' + - uid: 9169 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 741 + color: '#990000FF' + - uid: 9170 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 760 + color: '#990000FF' + - uid: 9171 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 785 + color: '#990000FF' + - uid: 9172 components: - type: Transform pos: 0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 809 + color: '#0055CCFF' + - uid: 9173 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 816 + color: '#0055CCFF' + - uid: 9174 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1008 + color: '#0055CCFF' + - uid: 9175 + components: + - type: Transform + pos: -0.5,-297.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-319.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-318.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9179 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1026 + color: '#990000FF' + - uid: 9180 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1053 + color: '#0055CCFF' + - uid: 9181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-220.5 + parent: 2 + - uid: 9182 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1067 + color: '#0055CCFF' + - uid: 9183 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1148 + color: '#0055CCFF' + - uid: 9184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-249.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9185 components: - type: Transform pos: -0.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1174 + color: '#990000FF' + - uid: 9186 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1180 + color: '#990000FF' + - uid: 9187 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1181 + color: '#0055CCFF' + - uid: 9188 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1188 + color: '#0055CCFF' + - uid: 9189 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1209 + color: '#990000FF' + - uid: 9190 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1256 + color: '#990000FF' + - uid: 9191 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1262 + color: '#0055CCFF' + - uid: 9192 components: - type: Transform pos: -0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1267 + color: '#990000FF' + - uid: 9193 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1269 + color: '#990000FF' + - uid: 9194 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1273 + color: '#990000FF' + - uid: 9195 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1289 + color: '#0055CCFF' + - uid: 9196 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1301 + color: '#990000FF' + - uid: 9197 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1337 + color: '#990000FF' + - uid: 9198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9199 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1355 + color: '#990000FF' + - uid: 9200 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1360 + color: '#0055CCFF' + - uid: 9201 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1362 + color: '#990000FF' + - uid: 9202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-68.5 + pos: -0.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1365 + color: '#990000FF' + - uid: 9203 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1374 + color: '#0055CCFF' + - uid: 9204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-138.5 + rot: -1.5707963267948966 rad + pos: 0.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1386 + color: '#0055CCFF' + - uid: 9205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9206 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1418 + color: '#990000FF' + - uid: 9207 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1660 + color: '#0055CCFF' + - uid: 9208 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1679 + color: '#0055CCFF' + - uid: 9209 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1738 + color: '#0055CCFF' + - uid: 9210 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1857 + color: '#0055CCFF' + - uid: 9211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9212 components: - type: Transform pos: -0.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2098 + color: '#990000FF' + - uid: 9213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9214 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-132.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2243 + color: '#0055CCFF' + - uid: 9215 components: - type: Transform pos: -3.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2892 + color: '#990000FF' + - uid: 9216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-289.5 + rot: -1.5707963267948966 rad + pos: 0.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2913 + color: '#0055CCFF' + - uid: 9217 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-169.5 + pos: 0.5,-289.5 parent: 2 - - uid: 2916 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9219 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-200.5 parent: 2 - - uid: 2923 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-169.5 + rot: 3.141592653589793 rad + pos: -2.5,-170.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2938 + - uid: 9223 components: - type: Transform - pos: -1.5,-169.5 + rot: -1.5707963267948966 rad + pos: 0.5,-48.5 parent: 2 - - uid: 3009 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-169.5 + rot: 1.5707963267948966 rad + pos: 0.5,-50.5 parent: 2 - - uid: 3264 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9225 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3283 + color: '#990000FF' + - uid: 9226 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3288 + color: '#990000FF' + - uid: 9227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9228 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3293 + color: '#990000FF' + - uid: 9229 components: - type: Transform pos: 4.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3311 + color: '#990000FF' + - uid: 9230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-86.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9232 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3319 + color: '#990000FF' + - uid: 9233 components: - type: Transform pos: -0.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3323 + color: '#990000FF' + - uid: 9234 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3331 + color: '#990000FF' + - uid: 9235 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3334 + color: '#0055CCFF' + - uid: 9236 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3363 + color: '#0055CCFF' + - uid: 9237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-102.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-104.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-131.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9240 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3386 + color: '#0055CCFF' + - uid: 9241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-129.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9242 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3401 + color: '#0055CCFF' + - uid: 9243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-260.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9244 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3407 + color: '#0055CCFF' + - uid: 9245 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3408 + color: '#0055CCFF' + - uid: 9246 components: - type: Transform pos: 1.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3410 + color: '#0055CCFF' + - uid: 9247 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3415 + color: '#0055CCFF' + - uid: 9248 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3426 + color: '#0055CCFF' + - uid: 9249 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-127.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3435 + color: '#0055CCFF' + - uid: 9250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-158.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-156.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9252 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3439 + color: '#0055CCFF' + - uid: 9253 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3441 + color: '#0055CCFF' + - uid: 9254 components: - type: Transform pos: -6.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3444 + color: '#0055CCFF' + - uid: 9255 components: - type: Transform pos: -0.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3448 + color: '#0055CCFF' + - uid: 9256 components: - type: Transform pos: 3.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3509 + color: '#0055CCFF' + - uid: 9257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-183.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9258 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3515 + color: '#990000FF' + - uid: 9259 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-113.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3518 + color: '#990000FF' + - uid: 9260 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3521 + color: '#990000FF' + - uid: 9261 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-119.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3554 + color: '#990000FF' + - uid: 9262 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3568 + color: '#990000FF' + - uid: 9263 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3585 + color: '#990000FF' + - uid: 9264 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3586 + color: '#990000FF' + - uid: 9265 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3616 + color: '#990000FF' + - uid: 9266 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3633 + color: '#990000FF' + - uid: 9267 components: - type: Transform pos: -1.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3646 + color: '#990000FF' + - uid: 9268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-185.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9269 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-137.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3671 + color: '#990000FF' + - uid: 9270 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3759 + color: '#0055CCFF' + - uid: 9271 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3930 + color: '#0055CCFF' + - uid: 9272 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3933 + color: '#0055CCFF' + - uid: 9273 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3938 + color: '#0055CCFF' + - uid: 9274 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3962 + color: '#0055CCFF' + - uid: 9275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-221.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9276 components: - type: Transform pos: 4.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3970 + color: '#990000FF' + - uid: 9277 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3973 + color: '#990000FF' + - uid: 9278 components: - type: Transform pos: -0.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3984 + color: '#990000FF' + - uid: 9279 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3996 + color: '#990000FF' + - uid: 9280 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4023 + color: '#990000FF' + - uid: 9281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-194.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9283 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4053 + color: '#0055CCFF' + - uid: 9284 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4070 + color: '#990000FF' + - uid: 9285 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4111 + color: '#0055CCFF' + - uid: 9286 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-166.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4131 + color: '#0055CCFF' + - uid: 9287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-227.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9289 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4134 + color: '#0055CCFF' + - uid: 9290 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-181.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4141 + color: '#0055CCFF' + - uid: 9291 components: - type: Transform pos: -0.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4155 + color: '#990000FF' + - uid: 9292 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4454 + color: '#990000FF' + - uid: 9293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-229.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-237.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9295 components: - type: Transform pos: -4.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4640 + color: '#990000FF' + - uid: 9296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-239.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9297 + components: + - type: Transform + pos: 4.5,-229.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9298 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4683 + color: '#990000FF' + - uid: 9299 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4733 + color: '#0055CCFF' + - uid: 9300 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-114.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5000 + color: '#990000FF' + - uid: 9301 + components: + - type: Transform + pos: 3.5,-175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-256.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9303 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5037 + color: '#990000FF' + - uid: 9304 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-214.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5040 + color: '#0055CCFF' + - uid: 9305 components: - type: Transform pos: -0.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5112 + color: '#990000FF' + - uid: 9306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-274.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-291.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9308 components: - type: Transform pos: -4.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5122 + color: '#0055CCFF' + - uid: 9309 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-208.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5124 + color: '#0055CCFF' + - uid: 9310 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5200 + color: '#0055CCFF' + - uid: 9311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-293.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-272.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9313 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-241.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5201 + color: '#0055CCFF' + - uid: 9314 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-235.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5249 + color: '#0055CCFF' + - uid: 9315 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5276 + color: '#990000FF' + - uid: 9316 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-162.5 + pos: 0.5,-323.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5333 + color: '#0055CCFF' + - uid: 9317 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-174.5 + pos: 0.5,-325.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5352 + color: '#0055CCFF' + - uid: 9318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-342.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-162.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-344.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-345.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-344.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9323 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-259.5 parent: 2 - - uid: 5499 + - uid: 9324 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-243.5 parent: 2 - - uid: 5894 + - uid: 9325 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6041 + color: '#0055CCFF' + - uid: 9326 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-243.5 parent: 2 - - uid: 6654 + - uid: 9327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-248.5 + rot: 1.5707963267948966 rad + pos: 0.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6707 + color: '#0055CCFF' + - uid: 9328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-367.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9329 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-248.5 + pos: 5.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6831 + color: '#0055CCFF' + - uid: 9330 components: - type: Transform pos: -0.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6853 + color: '#990000FF' + - uid: 9331 + components: + - type: Transform + pos: 4.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9332 components: - type: Transform pos: 4.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6902 + color: '#990000FF' + - uid: 9333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-363.5 + pos: -2.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6907 + color: '#0055CCFF' + - uid: 9334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-168.5 + rot: -1.5707963267948966 rad + pos: -3.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7199 + color: '#0055CCFF' + - uid: 9335 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-246.5 parent: 2 - - uid: 7466 + - uid: 9336 + components: + - type: Transform + pos: -1.5,-175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9337 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7500 + color: '#990000FF' + - uid: 9338 + components: + - type: Transform + pos: 5.5,-138.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9339 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7549 + color: '#0055CCFF' + - uid: 9340 components: - type: Transform pos: 15.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7566 + color: '#0055CCFF' + - uid: 9341 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8011 + color: '#990000FF' + - uid: 9342 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8020 + color: '#990000FF' + - uid: 9343 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8038 + color: '#990000FF' + - uid: 9344 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8081 + color: '#990000FF' + - uid: 9345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9347 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8119 + color: '#990000FF' + - uid: 9348 components: - type: Transform pos: -6.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8151 + color: '#990000FF' + - uid: 9349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9350 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-245.5 parent: 2 - - uid: 8163 + - uid: 9351 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8365 + color: '#990000FF' + - uid: 9352 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8366 + color: '#0055CCFF' + - uid: 9353 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8777 + color: '#0055CCFF' + - uid: 9354 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8876 + color: '#0055CCFF' + - uid: 9355 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10151 + color: '#0055CCFF' + - uid: 9356 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10691 + color: '#0055CCFF' + - uid: 9357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-107.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9358 components: - type: Transform pos: 6.5,-14.5 parent: 2 - - uid: 10863 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9359 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12237 + color: '#990000FF' + - uid: 9360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-136.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-255.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9363 + components: + - type: Transform + pos: 4.5,-189.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9364 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12239 + color: '#990000FF' + - uid: 9365 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12242 + color: '#990000FF' + - uid: 9366 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12247 + color: '#990000FF' + - uid: 9367 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12249 + color: '#0055CCFF' + - uid: 9368 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12254 + color: '#990000FF' + - uid: 9369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-193.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9370 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12266 + color: '#0055CCFF' + - uid: 9371 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-295.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12276 + color: '#0055CCFF' + - uid: 9372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-177.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9373 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12282 + color: '#990000FF' + - uid: 9374 components: - type: Transform pos: -0.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12317 + color: '#990000FF' + - uid: 9375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-174.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9376 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12325 + color: '#990000FF' + - uid: 9377 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12331 + color: '#0055CCFF' + - uid: 9378 components: - type: Transform pos: 10.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12381 + color: '#0055CCFF' + - uid: 9379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-266.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9381 + components: + - type: Transform + pos: 5.5,-248.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9382 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-348.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12397 + color: '#0055CCFF' + - uid: 9383 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12400 + color: '#990000FF' + - uid: 9384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-336.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9385 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-321.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12422 + color: '#0055CCFF' + - uid: 9386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-273.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9387 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12439 + color: '#0055CCFF' + - uid: 9388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-286.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9389 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12442 + color: '#990000FF' + - uid: 9390 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12476 + color: '#0055CCFF' + - uid: 9391 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12486 + color: '#0055CCFF' + - uid: 9392 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12489 + color: '#0055CCFF' + - uid: 9393 components: - type: Transform pos: 6.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12494 + color: '#990000FF' + - uid: 9394 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12498 + color: '#990000FF' + - uid: 9395 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12531 + color: '#0055CCFF' + - uid: 9396 components: - type: Transform pos: 10.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12546 + color: '#0055CCFF' + - uid: 9397 components: - type: Transform pos: 7.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12573 + color: '#0055CCFF' + - uid: 9398 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12587 + color: '#990000FF' + - uid: 9399 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12588 + color: '#990000FF' + - uid: 9400 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12615 + color: '#0055CCFF' + - uid: 9401 components: - type: Transform pos: -0.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12648 + color: '#990000FF' + - uid: 9402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-298.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-329.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9404 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12650 + color: '#0055CCFF' + - uid: 9405 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12720 + color: '#0055CCFF' + - uid: 9406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-368.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-368.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9408 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12752 + color: '#990000FF' + - uid: 9409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-255.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9410 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-354.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12808 + color: '#0055CCFF' + - uid: 9411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9412 components: - type: Transform pos: -0.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12841 + color: '#990000FF' + - uid: 9413 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12866 + color: '#0055CCFF' + - uid: 9414 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12873 + color: '#0055CCFF' + - uid: 9415 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12928 + color: '#0055CCFF' + - uid: 9416 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12934 + color: '#0055CCFF' + - uid: 9417 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12941 + color: '#0055CCFF' + - uid: 9418 components: - type: Transform pos: -1.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12951 + color: '#990000FF' + - uid: 9419 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12953 + color: '#0055CCFF' + - uid: 9420 components: - type: Transform pos: 4.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12991 + color: '#0055CCFF' + - uid: 9421 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-357.5 + rot: 1.5707963267948966 rad + pos: 0.5,-178.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13008 + color: '#0055CCFF' + - uid: 9422 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-361.5 + pos: -1.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13014 + color: '#990000FF' + - uid: 9423 components: - type: Transform - pos: 0.5,-361.5 + rot: 3.141592653589793 rad + pos: 1.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13032 + color: '#990000FF' + - uid: 9424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-361.5 + rot: 3.141592653589793 rad + pos: -1.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13087 + color: '#990000FF' + - uid: 9425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-369.5 + pos: 0.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13093 + color: '#990000FF' + - uid: 9426 components: - type: Transform - pos: 5.5,-369.5 + rot: -1.5707963267948966 rad + pos: 16.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13100 + color: '#990000FF' + - uid: 9427 components: - type: Transform - pos: -4.5,-369.5 + rot: -1.5707963267948966 rad + pos: 7.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14448 + color: '#990000FF' + - uid: 9428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-62.5 + rot: 1.5707963267948966 rad + pos: 0.5,-264.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16981 + color: '#0055CCFF' + - uid: 9429 components: - type: Transform - pos: -9.5,-248.5 + rot: 3.141592653589793 rad + pos: -4.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPort - entities: - - uid: 5656 + color: '#990000FF' + - uid: 9430 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-246.5 + pos: -0.5,-285.5 parent: 2 - - uid: 7217 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9431 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-245.5 + pos: 1.5,-329.5 parent: 2 - - uid: 11217 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9432 components: - type: Transform - pos: 5.5,-355.5 + rot: 1.5707963267948966 rad + pos: -6.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 11218 + color: '#990000FF' + - uid: 9433 components: - type: Transform - pos: 4.5,-355.5 + rot: -1.5707963267948966 rad + pos: 0.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 11927 + color: '#990000FF' + - uid: 9434 components: - type: Transform - anchored: False + rot: 3.141592653589793 rad + pos: 0.5,-369.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9435 + components: + - type: Transform + pos: 5.5,-369.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9436 + components: + - type: Transform + pos: -4.5,-369.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9437 + components: + - type: Transform + pos: -2.5,-361.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9439 + components: + - type: Transform + pos: 3.5,-361.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-253.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-315.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-364.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9443 + components: + - type: Transform + pos: -9.5,-248.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-169.5 + parent: 2 +- proto: GasPort + entities: + - uid: 5634 + components: + - type: Transform + pos: -1.5,-168.5 + parent: 2 + - uid: 9444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-246.5 + parent: 2 + - uid: 9445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-245.5 + parent: 2 + - uid: 9446 + components: + - type: Transform + pos: 5.5,-355.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 9447 + components: + - type: Transform + pos: 4.5,-355.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 9448 + components: + - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: -20.5,-263.5 parent: 2 - type: Physics canCollide: True bodyType: Dynamic - - uid: 11930 + - uid: 9449 components: - type: Transform anchored: False @@ -63444,7 +63135,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 12412 + - uid: 9450 components: - type: Transform rot: -1.5707963267948966 rad @@ -63454,13 +63145,20 @@ entities: color: '#FEF101FF' - proto: GasPressurePump entities: - - uid: 2355 + - uid: 5635 + components: + - type: Transform + pos: -1.5,-169.5 + parent: 2 + - uid: 9451 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-260.5 parent: 2 - - uid: 2372 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9452 components: - type: MetaData name: Plasma Pump @@ -63468,7 +63166,7 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-250.5 parent: 2 - - uid: 2447 + - uid: 9453 components: - type: MetaData name: O2 pump @@ -63476,7 +63174,7 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-256.5 parent: 2 - - uid: 2450 + - uid: 9454 components: - type: MetaData name: N2 pump @@ -63484,7 +63182,7 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-258.5 parent: 2 - - uid: 2452 + - uid: 9455 components: - type: MetaData name: Co2 pump @@ -63492,21 +63190,15 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-252.5 parent: 2 - - uid: 2463 + - uid: 9456 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-259.5 parent: 2 - - uid: 3052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-169.5 - parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4108 + color: '#990000FF' + - uid: 9458 components: - type: Transform rot: 3.141592653589793 rad @@ -63515,20 +63207,20 @@ entities: - type: GasPressurePump targetPressure: 4500 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5500 + color: '#990000FF' + - uid: 9459 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-246.5 parent: 2 - - uid: 7747 + - uid: 9460 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-245.5 parent: 2 - - uid: 12409 + - uid: 9461 components: - type: Transform rot: -1.5707963267948966 rad @@ -63536,32 +63228,32 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12410 + - uid: 9462 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12908 + color: '#0055CCFF' + - uid: 9463 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasThermoMachineFreezer entities: - - uid: 3143 + - uid: 9464 components: - type: Transform pos: -4.5,-168.5 parent: 2 - proto: GasValve entities: - - uid: 5420 + - uid: 9465 components: - type: Transform rot: 1.5707963267948966 rad @@ -63569,49 +63261,67 @@ entities: parent: 2 - proto: GasVentPump entities: - - uid: 576 + - uid: 9466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-359.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 65 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9467 components: - type: Transform pos: -3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 807 + color: '#0055CCFF' + - uid: 9468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-17.5 + rot: -1.5707963267948966 rad + pos: 1.5,-344.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 838 + color: '#0055CCFF' + - uid: 9469 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-157.5 + rot: -1.5707963267948966 rad + pos: 1.5,-210.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 855 + color: '#0055CCFF' + - uid: 9470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9471 components: - type: Transform pos: -1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 856 + color: '#0055CCFF' + - uid: 9472 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 857 + color: '#0055CCFF' + - uid: 9473 components: - type: Transform rot: -1.5707963267948966 rad @@ -63619,53 +63329,37 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 + - 12 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 870 + color: '#0055CCFF' + - uid: 9474 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 884 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12935 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 905 + color: '#0055CCFF' + - uid: 9475 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 921 + color: '#0055CCFF' + - uid: 9476 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 5.5,-57.5 + pos: 6.5,-56.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 954 + color: '#0055CCFF' + - uid: 9477 components: - type: Transform rot: -1.5707963267948966 rad @@ -63673,72 +63367,71 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13110 + - 15 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 977 + color: '#0055CCFF' + - uid: 9478 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-30.5 + rot: -1.5707963267948966 rad + pos: 1.5,-291.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13109 + - 55 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1004 + color: '#0055CCFF' + - uid: 9479 components: - type: Transform - anchored: False - pos: 0.5,-22.5 + rot: 1.5707963267948966 rad + pos: -0.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1057 + color: '#0055CCFF' + - uid: 9480 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-160.5 + pos: -0.5,-227.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1123 + color: '#0055CCFF' + - uid: 9481 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-49.5 + pos: -3.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1138 + color: '#0055CCFF' + - uid: 9482 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1141 + color: '#0055CCFF' + - uid: 9483 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1238 + color: '#0055CCFF' + - uid: 9484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-298.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9485 components: - type: Transform rot: -1.5707963267948966 rad @@ -63746,10 +63439,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13117 + - 18 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1278 + color: '#0055CCFF' + - uid: 9486 components: - type: Transform rot: -1.5707963267948966 rad @@ -63757,68 +63450,49 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1279 + color: '#0055CCFF' + - uid: 9487 components: - type: Transform pos: -2.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1323 + color: '#0055CCFF' + - uid: 9488 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1325 + color: '#0055CCFF' + - uid: 9489 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1373 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1375 + color: '#0055CCFF' + - uid: 9490 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -2.5,-189.5 + rot: -1.5707963267948966 rad + pos: 2.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14727 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1382 + color: '#0055CCFF' + - uid: 9491 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1415 + color: '#0055CCFF' + - uid: 9492 components: - type: Transform rot: 1.5707963267948966 rad @@ -63826,29 +63500,29 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13124 + - 19 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1769 + color: '#0055CCFF' + - uid: 9493 components: - type: Transform - anchored: False - pos: 0.5,-68.5 + rot: -1.5707963267948966 rad + pos: 1.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1806 + color: '#0055CCFF' + - uid: 9494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-73.5 + rot: 1.5707963267948966 rad + pos: -0.5,-30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2076 + color: '#0055CCFF' + - uid: 9495 components: - type: Transform rot: 1.5707963267948966 rad @@ -63856,109 +63530,81 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13116 + - 17 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2415 + color: '#0055CCFF' + - uid: 9496 components: - type: Transform pos: -4.5,-324.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2638 + color: '#0055CCFF' + - uid: 9497 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-289.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3011 + color: '#0055CCFF' + - uid: 9498 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3018 + color: '#0055CCFF' + - uid: 9499 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3040 - components: - - type: Transform - anchored: False - pos: 0.5,-184.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3110 + color: '#0055CCFF' + - uid: 9500 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3333 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-76.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3351 + color: '#0055CCFF' + - uid: 9501 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 4.5,-81.5 + pos: 1.5,-56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13147 + - 16 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3352 + color: '#0055CCFF' + - uid: 9502 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -4.5,-81.5 + rot: -1.5707963267948966 rad + pos: 1.5,-77.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3371 + color: '#0055CCFF' + - uid: 9503 components: - type: Transform pos: -5.5,-86.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13151 + - 24 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3372 + color: '#0055CCFF' + - uid: 9504 components: - type: Transform rot: 1.5707963267948966 rad @@ -63966,10 +63612,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13152 + - 25 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3373 + color: '#0055CCFF' + - uid: 9505 components: - type: Transform anchored: False @@ -63981,23 +63627,23 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 3374 + - uid: 9506 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3391 + color: '#0055CCFF' + - uid: 9507 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3392 + color: '#0055CCFF' + - uid: 9508 components: - type: Transform rot: -1.5707963267948966 rad @@ -64005,30 +63651,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13148 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3393 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-103.5 - parent: 2 + - 22 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3403 + color: '#0055CCFF' + - uid: 9509 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3436 + color: '#0055CCFF' + - uid: 9510 components: - type: Transform rot: 3.141592653589793 rad @@ -64036,10 +63670,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3437 + color: '#0055CCFF' + - uid: 9511 components: - type: Transform rot: 1.5707963267948966 rad @@ -64047,37 +63681,34 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3438 + color: '#0055CCFF' + - uid: 9512 components: - type: Transform - anchored: False - pos: -3.5,-107.5 + rot: 1.5707963267948966 rad + pos: -0.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3451 + color: '#0055CCFF' + - uid: 9513 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3452 + color: '#0055CCFF' + - uid: 9514 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3457 + color: '#0055CCFF' + - uid: 9515 components: - type: Transform rot: 1.5707963267948966 rad @@ -64085,106 +63716,94 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13171 + - 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3474 + color: '#0055CCFF' + - uid: 9516 components: - type: Transform - anchored: False - pos: -6.5,-113.5 + rot: 1.5707963267948966 rad + pos: -7.5,-112.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3475 + color: '#0055CCFF' + - uid: 9517 components: - type: Transform - anchored: False - pos: -6.5,-116.5 + rot: 1.5707963267948966 rad + pos: -7.5,-115.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3476 + color: '#0055CCFF' + - uid: 9518 components: - type: Transform - anchored: False - pos: -6.5,-119.5 + rot: 1.5707963267948966 rad + pos: -7.5,-118.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3477 + color: '#0055CCFF' + - uid: 9519 components: - type: Transform - anchored: False - pos: -6.5,-122.5 + rot: 1.5707963267948966 rad + pos: -7.5,-121.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3478 + color: '#0055CCFF' + - uid: 9520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-125.5 + rot: 1.5707963267948966 rad + pos: -7.5,-124.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3480 + color: '#0055CCFF' + - uid: 9521 components: - type: Transform - pos: 0.5,-124.5 + rot: -1.5707963267948966 rad + pos: 1.5,-178.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 39 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3481 + color: '#0055CCFF' + - uid: 9522 components: - type: Transform - anchored: False - pos: 0.5,-130.5 + pos: 0.5,-124.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3482 + color: '#0055CCFF' + - uid: 9523 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3483 + color: '#0055CCFF' + - uid: 9524 components: - type: Transform rot: 1.5707963267948966 rad @@ -64192,10 +63811,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13165 + - 27 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3626 + color: '#0055CCFF' + - uid: 9525 components: - type: Transform rot: -1.5707963267948966 rad @@ -64203,52 +63822,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13166 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3650 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 5.5,-138.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13182 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4016 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-136.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13176 + - 28 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4018 + color: '#0055CCFF' + - uid: 9526 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 3.5,-138.5 + pos: 1.5,-194.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4020 + color: '#0055CCFF' + - uid: 9527 components: - type: Transform anchored: False @@ -64260,7 +63845,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 4031 + - uid: 9528 components: - type: Transform anchored: False @@ -64268,13 +63853,13 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13187 + - 36 - type: AtmosPipeColor color: '#0335FCFF' - type: Physics canCollide: True bodyType: Dynamic - - uid: 4033 + - uid: 9529 components: - type: Transform rot: 3.141592653589793 rad @@ -64282,95 +63867,95 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13185 + - 35 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4051 + color: '#0055CCFF' + - uid: 9530 components: - type: Transform pos: -4.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4072 + color: '#0055CCFF' + - uid: 9531 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4146 + color: '#0055CCFF' + - uid: 9532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9533 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4148 + color: '#0055CCFF' + - uid: 9534 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-181.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4195 + color: '#0055CCFF' + - uid: 9535 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4202 + color: '#0055CCFF' + - uid: 9536 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 15.5,-256.5 + rot: -1.5707963267948966 rad + pos: 1.5,-127.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15292 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4234 + color: '#0055CCFF' + - uid: 9537 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-127.5 + pos: 2.5,-88.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 23 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4360 + color: '#0055CCFF' + - uid: 9538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-88.5 + rot: 3.141592653589793 rad + pos: 4.5,-190.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13150 + - 44 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4558 + color: '#0055CCFF' + - uid: 9539 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 3.5,-152.5 + rot: 1.5707963267948966 rad + pos: -0.5,-221.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4559 + color: '#0055CCFF' + - uid: 9540 components: - type: Transform rot: 1.5707963267948966 rad @@ -64378,18 +63963,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13189 + - 37 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4567 + color: '#0055CCFF' + - uid: 9541 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4568 + color: '#0055CCFF' + - uid: 9542 components: - type: Transform rot: -1.5707963267948966 rad @@ -64397,10 +63982,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13180 + - 33 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4905 + color: '#0055CCFF' + - uid: 9543 components: - type: Transform rot: 3.141592653589793 rad @@ -64408,25 +63993,21 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4950 + color: '#0055CCFF' + - uid: 9544 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: 17.5,-248.5 + pos: -0.5,-253.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 + - 70 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4967 + color: '#0055CCFF' + - uid: 9545 components: - type: Transform rot: -1.5707963267948966 rad @@ -64434,64 +64015,78 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13244 + - 45 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4992 + color: '#0055CCFF' + - uid: 9546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-249.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9547 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5057 + color: '#0055CCFF' + - uid: 9548 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-241.5 + pos: -0.5,-266.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5063 + color: '#0055CCFF' + - uid: 9549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-235.5 + rot: 1.5707963267948966 rad + pos: -0.5,-241.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5082 + color: '#0055CCFF' + - uid: 9550 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 4.5,-189.5 + pos: 16.5,-255.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 + - 71 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5083 + color: '#0055CCFF' + - uid: 9551 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-194.5 + rot: -1.5707963267948966 rad + pos: 1.5,-235.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-264.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13249 + - 70 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5108 + color: '#0055CCFF' + - uid: 9553 components: - type: Transform rot: 1.5707963267948966 rad @@ -64499,10 +64094,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13251 + - 48 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5110 + color: '#0055CCFF' + - uid: 9554 components: - type: Transform rot: 1.5707963267948966 rad @@ -64510,10 +64105,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5121 + color: '#0055CCFF' + - uid: 9555 components: - type: Transform anchored: False @@ -64522,21 +64117,21 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor color: '#0335FCFF' - type: Physics canCollide: True bodyType: Dynamic - - uid: 5126 + - uid: 9556 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-208.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5127 + color: '#0055CCFF' + - uid: 9557 components: - type: Transform rot: -1.5707963267948966 rad @@ -64544,126 +64139,95 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13247 + - 46 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5153 + color: '#0055CCFF' + - uid: 9558 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-214.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5156 + color: '#0055CCFF' + - uid: 9559 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5160 + color: '#0055CCFF' + - uid: 9560 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5161 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-221.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5163 + color: '#0055CCFF' + - uid: 9561 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5164 + color: '#0055CCFF' + - uid: 9562 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5199 + color: '#0055CCFF' + - uid: 9563 components: - type: Transform - anchored: False - pos: 0.5,-228.5 + rot: 1.5707963267948966 rad + pos: -0.5,-286.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5251 + color: '#0055CCFF' + - uid: 9564 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-178.5 + rot: 1.5707963267948966 rad + pos: -0.5,-318.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13211 + - 57 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5260 + color: '#0055CCFF' + - uid: 9565 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 3.5,-175.5 + pos: -3.5,-314.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8201 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5261 + color: '#0055CCFF' + - uid: 9566 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: -1.5,-175.5 + pos: -0.5,-329.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13213 + - 61 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5288 + color: '#0055CCFF' + - uid: 9567 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5293 + color: '#0055CCFF' + - uid: 9568 components: - type: Transform anchored: False @@ -64675,7 +64239,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 5302 + - uid: 9569 components: - type: Transform rot: -1.5707963267948966 rad @@ -64683,112 +64247,136 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13218 + - 41 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5307 + color: '#0055CCFF' + - uid: 9570 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6036 + color: '#0055CCFF' + - uid: 9571 components: - type: Transform - anchored: False - pos: 0.5,-34.5 + rot: 1.5707963267948966 rad + pos: 6.5,-336.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-368.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13110 - - 13109 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 6727 + color: '#0055CCFF' + - uid: 9573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-368.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9574 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6904 + color: '#0055CCFF' + - uid: 9575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-107.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9576 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6905 + color: '#0055CCFF' + - uid: 9577 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-178.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6915 + color: '#0055CCFF' + - uid: 9578 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 1.5,-15.5 + pos: 3.5,-151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-68.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13105 + - 16 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 7504 + color: '#0055CCFF' + - uid: 9580 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7506 + color: '#0055CCFF' + - uid: 9581 components: - type: Transform - anchored: False rot: 3.141592653589793 rad - pos: 0.5,-265.5 + pos: 17.5,-249.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 7769 + color: '#0055CCFF' + - uid: 9582 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-263.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8066 + color: '#0055CCFF' + - uid: 9583 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -2.5,-260.5 + rot: -1.5707963267948966 rad + pos: 1.5,-156.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8070 + color: '#0055CCFF' + - uid: 9584 components: - type: Transform anchored: False @@ -64800,7 +64388,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 8071 + - uid: 9585 components: - type: Transform rot: -1.5707963267948966 rad @@ -64808,502 +64396,470 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15279 + - 68 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8113 + color: '#0055CCFF' + - uid: 9586 components: - type: Transform - anchored: False - pos: 0.5,-238.5 + rot: 1.5707963267948966 rad + pos: -0.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8123 + color: '#0055CCFF' + - uid: 9587 components: - type: Transform - anchored: False - pos: 0.5,-211.5 + rot: -1.5707963267948966 rad + pos: 1.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8157 + color: '#0055CCFF' + - uid: 9588 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8314 + color: '#0055CCFF' + - uid: 9589 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 8.5,-248.5 + rot: 3.141592653589793 rad + pos: -2.5,-190.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 + - 44 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8431 + color: '#0055CCFF' + - uid: 9590 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8877 + color: '#0055CCFF' + - uid: 9591 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-268.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10658 - components: - - type: Transform - anchored: False - pos: -6.5,-338.5 + pos: -0.5,-185.5 parent: 2 - type: DeviceNetwork deviceLists: - - 5925 + - 44 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 10811 + color: '#0055CCFF' + - uid: 9592 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-354.5 + pos: -0.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10869 + color: '#0055CCFF' + - uid: 9593 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-343.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10976 - components: - - type: Transform - anchored: False - pos: 7.5,-337.5 + pos: -0.5,-75.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12142 + color: '#0055CCFF' + - uid: 9594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 + rot: 3.141592653589793 rad + pos: 4.5,-82.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12273 + color: '#0055CCFF' + - uid: 9595 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-295.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-348.5 + pos: -5.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12305 + color: '#0055CCFF' + - uid: 9596 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-277.5 + pos: 1.5,-104.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13341 + - 22 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12333 + color: '#0055CCFF' + - uid: 9597 components: - type: Transform anchored: False - rot: -1.5707963267948966 rad - pos: 5.5,-273.5 + pos: -6.5,-338.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 + - 6 - type: AtmosPipeColor color: '#0335FCFF' - type: Physics canCollide: True bodyType: Dynamic - - uid: 12341 + - uid: 9598 components: - type: Transform - anchored: False - pos: 0.5,-274.5 + rot: 1.5707963267948966 rad + pos: -0.5,-131.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13317 + - 29 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12345 + color: '#0055CCFF' + - uid: 9599 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 2.5,-284.5 + rot: 1.5707963267948966 rad + pos: -0.5,-354.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12349 + color: '#0055CCFF' + - uid: 9600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-284.5 + rot: 1.5707963267948966 rad + pos: 6.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12356 + color: '#0055CCFF' + - uid: 9601 components: - type: Transform - anchored: False - pos: 0.5,-286.5 + rot: 3.141592653589793 rad + pos: 5.5,-139.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13333 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12362 + color: '#0055CCFF' + - uid: 9602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-287.5 + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13335 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12367 + color: '#0055CCFF' + - uid: 9603 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-271.5 + pos: -0.5,-295.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-348.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-277.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2277 + - 54 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12382 + color: '#0055CCFF' + - uid: 9606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9607 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-297.5 + pos: -0.5,-33.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12428 + color: '#0055CCFF' + - uid: 9608 components: - type: Transform anchored: False rot: -1.5707963267948966 rad - pos: -4.5,-315.5 + pos: 2.5,-284.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13374 - type: AtmosPipeColor color: '#0335FCFF' - type: Physics canCollide: True bodyType: Dynamic - - uid: 12429 + - uid: 9609 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-321.5 + pos: 5.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12430 + color: '#0055CCFF' + - uid: 9610 components: - type: Transform - anchored: False - pos: 0.5,-318.5 + rot: -1.5707963267948966 rad + pos: 1.5,-239.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13370 + - 67 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12470 + color: '#0055CCFF' + - uid: 9611 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-307.5 + pos: -0.5,-212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-287.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8432 + - 53 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12474 + color: '#0055CCFF' + - uid: 9613 components: - type: Transform - pos: 5.5,-265.5 + rot: 1.5707963267948966 rad + pos: -5.5,-271.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12501 + color: '#0055CCFF' + - uid: 9614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-297.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9615 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-306.5 + pos: 1.5,-321.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13365 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12508 + color: '#0055CCFF' + - uid: 9616 components: - type: Transform - pos: 6.5,-304.5 + rot: 1.5707963267948966 rad + pos: -6.5,-307.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13383 + - 8 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12540 + color: '#0055CCFF' + - uid: 9617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-311.5 + pos: 5.5,-265.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12568 + color: '#0055CCFF' + - uid: 9618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-311.5 + rot: -1.5707963267948966 rad + pos: 11.5,-306.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12577 + color: '#0055CCFF' + - uid: 9619 components: - type: Transform - pos: 9.5,-304.5 + pos: 6.5,-304.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 60 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12580 + color: '#0055CCFF' + - uid: 9620 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-303.5 + pos: -0.5,-293.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13382 + - 55 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12603 + color: '#0055CCFF' + - uid: 9621 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-330.5 + pos: -0.5,-325.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - 57 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12637 + color: '#0055CCFF' + - uid: 9622 components: - type: Transform - anchored: False - pos: 0.5,-292.5 + rot: 3.141592653589793 rad + pos: 10.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12641 + color: '#0055CCFF' + - uid: 9623 components: - type: Transform - anchored: False - pos: 0.5,-324.5 + rot: 1.5707963267948966 rad + pos: 6.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12652 + color: '#0055CCFF' + - uid: 9624 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -0.5,-327.5 + pos: 9.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12705 + color: '#0055CCFF' + - uid: 9625 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 0.5,-297.5 + rot: 1.5707963267948966 rad + pos: -2.5,-303.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13358 + - 59 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12718 + color: '#0055CCFF' + - uid: 9626 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-330.5 + pos: 4.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12754 + color: '#0055CCFF' + - uid: 9627 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 0.5,-356.5 + pos: 1.5,-342.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13421 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12895 + color: '#0055CCFF' + - uid: 9628 components: - type: Transform - anchored: False - pos: 0.5,-344.5 + rot: -1.5707963267948966 rad + pos: 1.5,-183.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12897 + color: '#0055CCFF' + - uid: 9629 components: - type: Transform - anchored: False - pos: 0.5,-340.5 + rot: 1.5707963267948966 rad + pos: -3.5,-330.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 11906 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12898 + color: '#0055CCFF' + - uid: 9630 components: - type: Transform - anchored: False - pos: 0.5,-329.5 + pos: 1.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 + - 11 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12918 + color: '#0055CCFF' + - uid: 9631 components: - type: Transform - anchored: False - pos: 0.5,-351.5 + rot: 1.5707963267948966 rad + pos: -0.5,-237.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12920 + color: '#0055CCFF' + - uid: 9632 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-345.5 + pos: 1.5,-323.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13402 + - 61 + - 57 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12932 + color: '#0055CCFF' + - uid: 9633 components: - type: Transform pos: 4.5,-357.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12943 + color: '#0055CCFF' + - uid: 9634 components: - type: Transform rot: 1.5707963267948966 rad @@ -65311,10 +64867,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12984 + color: '#0055CCFF' + - uid: 9635 components: - type: Transform rot: -1.5707963267948966 rad @@ -65322,10 +64878,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12985 + color: '#0055CCFF' + - uid: 9636 components: - type: Transform rot: -1.5707963267948966 rad @@ -65333,10 +64889,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12986 + color: '#0055CCFF' + - uid: 9637 components: - type: Transform rot: 3.141592653589793 rad @@ -65344,10 +64900,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13426 + - 64 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12987 + color: '#0055CCFF' + - uid: 9638 components: - type: Transform rot: 3.141592653589793 rad @@ -65355,10 +64911,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13426 + - 64 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12988 + color: '#0055CCFF' + - uid: 9639 components: - type: Transform rot: 1.5707963267948966 rad @@ -65366,10 +64922,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12989 + color: '#0055CCFF' + - uid: 9640 components: - type: Transform rot: 1.5707963267948966 rad @@ -65377,74 +64933,71 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12994 + color: '#0055CCFF' + - uid: 9641 components: - type: Transform pos: 1.5,-365.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13429 + - 65 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12997 + color: '#0055CCFF' + - uid: 9642 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-367.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 65 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13077 + color: '#0055CCFF' + - uid: 9643 components: - type: Transform - anchored: False - pos: -3.5,-368.5 + rot: 3.141592653589793 rad + pos: 3.5,-176.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13079 + color: '#0055CCFF' + - uid: 9644 components: - type: Transform - anchored: False - pos: 4.5,-368.5 + rot: -1.5707963267948966 rad + pos: 6.5,-273.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13145 + color: '#0055CCFF' + - uid: 9645 components: - type: Transform - pos: 6.5,-88.5 + rot: -1.5707963267948966 rad + pos: 1.5,-274.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13146 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13207 + color: '#0055CCFF' + - uid: 9646 components: - type: Transform - anchored: False - pos: 0.5,-167.5 + pos: 6.5,-88.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13209 + - 20 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13237 + color: '#0055CCFF' + - uid: 9647 components: - type: Transform rot: -1.5707963267948966 rad @@ -65452,134 +65005,182 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 + - 43 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14825 + color: '#0055CCFF' + - uid: 9648 components: - type: Transform pos: 5.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14826 + color: '#0055CCFF' + - uid: 9649 components: - type: Transform pos: -4.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14835 + color: '#0055CCFF' + - uid: 9650 components: - type: Transform pos: 5.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14847 + color: '#0055CCFF' + - uid: 9651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-345.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9652 components: - type: Transform pos: -4.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14848 + color: '#0055CCFF' + - uid: 9653 components: - type: Transform pos: 5.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14861 + color: '#0055CCFF' + - uid: 9654 components: - type: Transform pos: 5.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14862 + - uid: 9655 components: - type: Transform pos: -4.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14885 + color: '#0055CCFF' + - uid: 9656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-158.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9657 components: - type: Transform pos: -4.5,-130.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14889 + color: '#0055CCFF' + - uid: 9658 components: - type: Transform pos: 5.5,-130.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14950 + - uid: 9659 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-132.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15049 + color: '#0055CCFF' + - uid: 9660 components: - type: Transform pos: -4.5,-184.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15098 + color: '#0055CCFF' + - uid: 9661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9662 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15112 + color: '#0055CCFF' + - uid: 9663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9664 components: - type: Transform pos: -4.5,-157.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15119 + color: '#0055CCFF' + - uid: 9665 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-157.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15195 + color: '#0055CCFF' + - uid: 9666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-292.5 + rot: 1.5707963267948966 rad + pos: -0.5,-102.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15284 + color: '#0055CCFF' + - uid: 9667 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-254.5 + rot: -1.5707963267948966 rad + pos: 1.5,-129.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15282 + - 29 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 16679 + color: '#0055CCFF' + - uid: 9668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-292.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9669 components: - type: Transform rot: 1.5707963267948966 rad @@ -65587,10 +65188,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16990 + color: '#0055CCFF' + - uid: 9670 components: - type: Transform rot: 1.5707963267948966 rad @@ -65598,20 +65199,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 16971 + - 72 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 583 + - uid: 9671 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 611 + color: '#990000FF' + - uid: 9672 components: - type: Transform rot: 3.141592653589793 rad @@ -65619,149 +65220,152 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13105 + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 620 + color: '#990000FF' + - uid: 9673 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 645 + color: '#990000FF' + - uid: 9674 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 665 + color: '#990000FF' + - uid: 9675 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 742 + color: '#990000FF' + - uid: 9676 components: - type: Transform - pos: 5.5,1.5 + rot: 3.141592653589793 rad + pos: 4.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 747 + color: '#990000FF' + - uid: 9677 components: - type: Transform - anchored: False - pos: 2.5,-6.5 + pos: 5.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13080 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 751 + color: '#990000FF' + - uid: 9678 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 769 + color: '#990000FF' + - uid: 9679 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 770 + color: '#990000FF' + - uid: 9680 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1022 + color: '#990000FF' + - uid: 9681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-73.5 + rot: -1.5707963267948966 rad + pos: -5.5,-367.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1139 + color: '#990000FF' + - uid: 9682 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-29.5 + pos: -5.5,-364.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1155 + color: '#990000FF' + - uid: 9683 components: - type: Transform - anchored: False rot: 3.141592653589793 rad - pos: -0.5,-30.5 + pos: -0.5,-73.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13109 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1191 + color: '#990000FF' + - uid: 9684 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -0.5,-34.5 + rot: -1.5707963267948966 rad + pos: 6.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13110 - - 13109 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1201 + color: '#990000FF' + - uid: 9685 + components: + - type: Transform + pos: -3.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9686 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1207 + color: '#990000FF' + - uid: 9687 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1222 + color: '#990000FF' + - uid: 9688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-271.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9689 components: - type: Transform pos: 1.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1239 + color: '#990000FF' + - uid: 9690 components: - type: Transform rot: -1.5707963267948966 rad @@ -65769,40 +65373,40 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13110 + - 15 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1283 + color: '#990000FF' + - uid: 9691 components: - type: Transform pos: 6.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1292 + color: '#990000FF' + - uid: 9692 components: - type: Transform pos: 1.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1299 + color: '#990000FF' + - uid: 9693 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1324 + color: '#990000FF' + - uid: 9694 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1326 + color: '#990000FF' + - uid: 9695 components: - type: Transform rot: -1.5707963267948966 rad @@ -65810,18 +65414,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13117 + - 18 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1332 + color: '#990000FF' + - uid: 9696 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1378 + color: '#990000FF' + - uid: 9697 components: - type: Transform rot: 3.141592653589793 rad @@ -65829,18 +65433,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14727 + - 66 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1383 + color: '#990000FF' + - uid: 9698 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1409 + color: '#990000FF' + - uid: 9699 components: - type: Transform rot: 1.5707963267948966 rad @@ -65848,41 +65452,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13124 + - 19 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1612 + color: '#990000FF' + - uid: 9700 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-263.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1825 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12935 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 2797 + color: '#990000FF' + - uid: 9701 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-289.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3027 + color: '#990000FF' + - uid: 9702 components: - type: Transform rot: 3.141592653589793 rad @@ -65890,29 +65479,31 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 + - 8 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3120 + color: '#990000FF' + - uid: 9703 components: - type: Transform - anchored: False - pos: 1.5,-167.5 + rot: -1.5707963267948966 rad + pos: 0.5,-29.5 parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3261 + - type: DeviceNetwork + deviceLists: + - 14 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9704 components: - type: Transform pos: -7.5,-84.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13151 + - 24 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3262 + color: '#990000FF' + - uid: 9705 components: - type: Transform rot: 3.141592653589793 rad @@ -65920,26 +65511,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13151 + - 24 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3279 + color: '#990000FF' + - uid: 9706 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3281 + color: '#990000FF' + - uid: 9707 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3284 + color: '#990000FF' + - uid: 9708 components: - type: Transform rot: -1.5707963267948966 rad @@ -65947,24 +65538,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13152 + - 25 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3285 - components: - - type: Transform - pos: -3.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3309 + color: '#990000FF' + - uid: 9709 components: - type: Transform pos: 1.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3310 + color: '#990000FF' + - uid: 9710 components: - type: Transform rot: -1.5707963267948966 rad @@ -65972,10 +65556,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13147 + - 21 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3314 + color: '#990000FF' + - uid: 9711 components: - type: Transform rot: -1.5707963267948966 rad @@ -65983,18 +65567,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13148 + - 22 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3326 + color: '#990000FF' + - uid: 9712 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3513 + color: '#990000FF' + - uid: 9713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-168.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9714 components: - type: Transform rot: -1.5707963267948966 rad @@ -66002,10 +65594,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3549 + color: '#990000FF' + - uid: 9715 components: - type: Transform rot: -1.5707963267948966 rad @@ -66013,10 +65605,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3550 + color: '#990000FF' + - uid: 9716 components: - type: Transform rot: -1.5707963267948966 rad @@ -66024,10 +65616,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3551 + color: '#990000FF' + - uid: 9717 components: - type: Transform rot: -1.5707963267948966 rad @@ -66035,10 +65627,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3552 + color: '#990000FF' + - uid: 9718 components: - type: Transform rot: -1.5707963267948966 rad @@ -66046,10 +65638,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3553 + color: '#990000FF' + - uid: 9719 components: - type: Transform rot: -1.5707963267948966 rad @@ -66057,57 +65649,50 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3598 + color: '#990000FF' + - uid: 9720 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-127.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3599 + color: '#990000FF' + - uid: 9721 components: - type: Transform pos: -0.5,-117.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13171 + - 30 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3600 + color: '#990000FF' + - uid: 9722 components: - type: Transform - anchored: False - pos: -0.5,-120.5 + rot: -1.5707963267948966 rad + pos: 0.5,-119.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13165 + - 27 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3603 + color: '#990000FF' + - uid: 9723 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -0.5,-123.5 + rot: 1.5707963267948966 rad + pos: -1.5,-124.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3608 + color: '#990000FF' + - uid: 9724 components: - type: Transform rot: 1.5707963267948966 rad @@ -66115,10 +65700,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3622 + color: '#990000FF' + - uid: 9725 components: - type: Transform anchored: False @@ -66130,15 +65715,15 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 3623 + - uid: 9726 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3630 + color: '#990000FF' + - uid: 9727 components: - type: Transform rot: 3.141592653589793 rad @@ -66146,24 +65731,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3631 + color: '#990000FF' + - uid: 9728 components: - type: Transform pos: 1.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3632 + color: '#990000FF' + - uid: 9729 components: - type: Transform pos: -4.5,-107.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3637 + color: '#990000FF' + - uid: 9730 components: - type: Transform anchored: False @@ -66175,7 +65760,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 3647 + - uid: 9731 components: - type: Transform rot: -1.5707963267948966 rad @@ -66183,42 +65768,48 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13176 + - 31 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3672 + color: '#990000FF' + - uid: 9732 components: - type: Transform pos: 1.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3874 + color: '#990000FF' + - uid: 9733 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3944 + color: '#990000FF' + - uid: 9734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-221.5 + parent: 2 + - uid: 9735 components: - type: Transform pos: 1.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3954 + color: '#990000FF' + - uid: 9736 components: - type: Transform pos: 6.5,-138.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13182 + - 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3980 + color: '#990000FF' + - uid: 9737 components: - type: Transform rot: 3.141592653589793 rad @@ -66226,10 +65817,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13180 + - 33 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3982 + color: '#990000FF' + - uid: 9738 components: - type: Transform anchored: False @@ -66241,7 +65832,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 3993 + - uid: 9739 components: - type: Transform rot: 1.5707963267948966 rad @@ -66249,26 +65840,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13185 + - 35 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4012 + color: '#990000FF' + - uid: 9740 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4013 + color: '#990000FF' + - uid: 9741 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4037 + color: '#990000FF' + - uid: 9742 components: - type: Transform rot: 1.5707963267948966 rad @@ -66276,72 +65867,59 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13187 + - 36 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4050 + color: '#990000FF' + - uid: 9743 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4055 + color: '#990000FF' + - uid: 9744 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4056 + color: '#990000FF' + - uid: 9745 components: - type: Transform pos: -4.5,-54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13116 + - 17 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4149 + color: '#990000FF' + - uid: 9746 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-181.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4150 + color: '#990000FF' + - uid: 9747 components: - type: Transform pos: 1.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4171 + color: '#990000FF' + - uid: 9748 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-17.5 parent: 2 - - uid: 4508 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 4.5,-88.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13146 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4509 + color: '#990000FF' + - uid: 9749 components: - type: Transform rot: -1.5707963267948966 rad @@ -66349,18 +65927,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13150 + - 23 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4554 + color: '#990000FF' + - uid: 9750 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4556 + color: '#990000FF' + - uid: 9751 components: - type: Transform rot: 1.5707963267948966 rad @@ -66368,10 +65946,28 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13189 + - 37 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4670 + color: '#990000FF' + - uid: 9752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-177.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9753 + components: + - type: Transform + pos: -1.5,-173.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9754 components: - type: Transform rot: 3.141592653589793 rad @@ -66379,134 +65975,125 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4942 + - uid: 9755 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-235.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4943 + color: '#990000FF' + - uid: 9756 components: - type: Transform pos: 1.5,-214.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4981 + - uid: 9757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-205.5 + rot: -1.5707963267948966 rad + pos: 0.5,-255.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 70 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5068 + color: '#990000FF' + - uid: 9758 components: - type: Transform - pos: -2.5,-204.5 + rot: 1.5707963267948966 rad + pos: -4.5,-205.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5069 + color: '#990000FF' + - uid: 9759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-208.5 + rot: 1.5707963267948966 rad + pos: 15.5,-257.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5070 + color: '#990000FF' + - uid: 9760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-206.5 + pos: -2.5,-204.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13244 + - 49 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5072 + color: '#990000FF' + - uid: 9761 components: - type: Transform - anchored: False rot: 3.141592653589793 rad - pos: 1.5,-194.5 + pos: -0.5,-208.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13249 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5073 + color: '#990000FF' + - uid: 9762 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-190.5 + pos: 4.5,-206.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 + - 45 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5107 + color: '#990000FF' + - uid: 9763 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-197.5 + pos: -5.5,-344.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13251 + - 62 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5178 + color: '#990000FF' + - uid: 9764 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-229.5 + pos: 0.5,-285.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5179 + color: '#990000FF' + - uid: 9765 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: 4.5,-229.5 + pos: -5.5,-197.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 48 - type: AtmosPipeColor color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5185 + - uid: 9766 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 0.5,-229.5 + rot: -1.5707963267948966 rad + pos: -3.5,-229.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5188 + - uid: 9767 components: - type: Transform rot: 1.5707963267948966 rad @@ -66514,7 +66101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5189 + - uid: 9768 components: - type: Transform anchored: False @@ -66526,382 +66113,352 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 5190 + - uid: 9769 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 0.5,-220.5 + rot: 3.141592653589793 rad + pos: 1.5,-299.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5225 + color: '#990000FF' + - uid: 9770 components: - type: Transform pos: -6.5,-178.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5252 + color: '#990000FF' + - uid: 9771 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 1.5,-178.5 + pos: 1.5,-318.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13211 + - 57 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5275 + color: '#990000FF' + - uid: 9772 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -1.5,-174.5 + rot: -1.5707963267948966 rad + pos: 2.5,-329.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13213 + - 61 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5277 + color: '#990000FF' + - uid: 9773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-175.5 + rot: -1.5707963267948966 rad + pos: 3.5,-168.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8201 + - 41 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5301 + color: '#990000FF' + - uid: 9774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-163.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9775 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-168.5 + pos: 7.5,-172.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13218 + - 7 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5312 + color: '#990000FF' + - uid: 9776 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-163.5 + pos: -2.5,-362.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5346 + color: '#990000FF' + - uid: 9777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-172.5 + rot: 3.141592653589793 rad + pos: 3.5,-362.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8201 + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6198 + color: '#990000FF' + - uid: 9778 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7453 + color: '#990000FF' + - uid: 9779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-262.5 + pos: -4.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7476 + color: '#990000FF' + - uid: 9780 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 16.5,-256.5 + rot: 1.5707963267948966 rad + pos: -0.5,-365.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 + - 65 - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 7563 + color: '#990000FF' + - uid: 9781 components: - type: Transform - pos: 10.5,-253.5 + rot: 1.5707963267948966 rad + pos: 6.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7776 + color: '#990000FF' + - uid: 9782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-190.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9783 components: - type: Transform - anchored: False rot: 3.141592653589793 rad - pos: 18.5,-249.5 + pos: -0.5,-262.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-175.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 + - 7 - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 7823 + color: '#990000FF' + - uid: 9785 + components: + - type: Transform + pos: 10.5,-253.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9786 components: - type: Transform pos: -3.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7881 + color: '#990000FF' + - uid: 9787 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7882 + color: '#990000FF' + - uid: 9788 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8063 - components: - - type: Transform - pos: -3.5,-260.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8089 + color: '#990000FF' + - uid: 9789 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 8.5,-256.5 + rot: 3.141592653589793 rad + pos: -0.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 + - 11 - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8091 + color: '#990000FF' + - uid: 9790 components: - type: Transform pos: 4.5,-243.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15279 + - 68 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8209 + color: '#990000FF' + - uid: 9791 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8883 + color: '#990000FF' + - uid: 9792 components: - type: Transform pos: 1.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9953 + color: '#990000FF' + - uid: 9793 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10972 + color: '#990000FF' + - uid: 9794 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10973 + color: '#990000FF' + - uid: 9795 components: - type: Transform pos: 6.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11912 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -5.5,-361.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13421 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12134 + color: '#990000FF' + - uid: 9796 components: - type: Transform pos: 1.5,-241.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12224 + color: '#990000FF' + - uid: 9797 components: - type: Transform pos: 7.5,-281.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13341 + - 54 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12240 + color: '#990000FF' + - uid: 9798 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12246 + color: '#990000FF' + - uid: 9799 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12297 - components: - - type: Transform - pos: -5.5,-274.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2277 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12298 + color: '#990000FF' + - uid: 9800 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-284.5 + pos: -0.5,-228.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13335 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12322 + color: '#990000FF' + - uid: 9801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-271.5 + pos: -5.5,-274.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 + - 5 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12340 + color: '#990000FF' + - uid: 9802 components: - type: Transform - anchored: False - pos: 1.5,-274.5 + rot: 3.141592653589793 rad + pos: -5.5,-284.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13317 + - 53 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12355 + color: '#990000FF' + - uid: 9803 components: - type: Transform - anchored: False - pos: -0.5,-286.5 + pos: -2.5,-260.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13333 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12375 + color: '#990000FF' + - uid: 9804 components: - type: Transform pos: 1.5,-295.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12399 + color: '#990000FF' + - uid: 9805 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-321.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12433 + color: '#990000FF' + - uid: 9806 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-314.5 + pos: 0.5,-272.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13374 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12444 + color: '#990000FF' + - uid: 9807 components: - type: Transform pos: 4.5,-318.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 57 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12502 + color: '#990000FF' + - uid: 9808 components: - type: Transform rot: -1.5707963267948966 rad @@ -66909,33 +66466,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 + - 56 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12507 + color: '#990000FF' + - uid: 9809 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12530 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 0.5,-319.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13370 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12564 + color: '#990000FF' + - uid: 9810 components: - type: Transform rot: 1.5707963267948966 rad @@ -66943,10 +66485,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13383 + - 60 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12581 + color: '#990000FF' + - uid: 9811 components: - type: Transform rot: 1.5707963267948966 rad @@ -66954,263 +66496,190 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13382 + - 59 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12621 + color: '#990000FF' + - uid: 9812 components: - type: Transform pos: -5.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12653 - components: - - type: Transform - pos: 1.5,-327.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12704 + color: '#990000FF' + - uid: 9813 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 0.5,-298.5 + rot: 1.5707963267948966 rad + pos: 0.5,-345.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13358 + - 9 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12721 + color: '#990000FF' + - uid: 9814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-331.5 + pos: 1.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12782 + color: '#990000FF' + - uid: 9815 components: - type: Transform - pos: -4.5,-330.5 + rot: -1.5707963267948966 rad + pos: 4.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12798 + color: '#990000FF' + - uid: 9816 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-340.5 + pos: 1.5,-5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11906 - - 5925 + - 12 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12811 + color: '#990000FF' + - uid: 9817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-348.5 + pos: -4.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12812 + color: '#990000FF' + - uid: 9818 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: 0.5,-346.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12813 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -4.5,-344.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13402 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12896 - components: - - type: Transform - anchored: False - pos: 1.5,-329.5 + pos: -5.5,-340.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 + - 10 + - 6 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12914 + color: '#990000FF' + - uid: 9819 components: - type: Transform - pos: 1.5,-354.5 + rot: 3.141592653589793 rad + pos: -0.5,-348.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12933 + color: '#990000FF' + - uid: 9820 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-357.5 + pos: 0.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 14 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12944 + color: '#990000FF' + - uid: 9821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-357.5 + rot: -1.5707963267948966 rad + pos: 6.5,-86.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 21 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13039 + color: '#990000FF' + - uid: 9822 components: - type: Transform - pos: 7.5,-360.5 + rot: 1.5707963267948966 rad + pos: 0.5,-193.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13421 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13040 + color: '#990000FF' + - uid: 9823 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -6.5,-363.5 + pos: 1.5,-354.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13421 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13041 + color: '#990000FF' + - uid: 9824 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 7.5,-363.5 + rot: -1.5707963267948966 rad + pos: 5.5,-357.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13053 + color: '#990000FF' + - uid: 9825 components: - type: Transform - anchored: False - pos: 0.5,-365.5 + rot: 1.5707963267948966 rad + pos: -3.5,-357.5 parent: 2 - type: DeviceNetwork - deviceLists: - - 13429 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13055 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-367.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13067 + deviceLists: + - 63 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-366.5 + rot: -1.5707963267948966 rad + pos: 19.5,-249.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 71 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13068 + color: '#990000FF' + - uid: 9827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-366.5 + pos: 7.5,-360.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13081 + color: '#990000FF' + - uid: 9828 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 3.5,-361.5 + pos: 6.5,-255.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 71 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13082 + color: '#990000FF' + - uid: 9829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-315.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9830 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: -2.5,-361.5 + pos: 6.5,-367.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13088 + color: '#990000FF' + - uid: 9831 components: - type: Transform rot: 3.141592653589793 rad @@ -67218,10 +66687,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13426 + - 64 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13094 + color: '#990000FF' + - uid: 9832 components: - type: Transform rot: 3.141592653589793 rad @@ -67229,10 +66698,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13426 + - 64 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13236 + color: '#990000FF' + - uid: 9833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-367.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9834 components: - type: Transform rot: -1.5707963267948966 rad @@ -67240,57 +66717,32 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 + - 43 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14427 + color: '#990000FF' + - uid: 9835 components: - type: Transform pos: 14.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14428 + - uid: 9836 components: - type: Transform pos: 16.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15161 + - uid: 9837 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-116.5 parent: 2 - - uid: 15283 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -0.5,-257.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15282 - - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 16999 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -5.5,-248.5 - parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 17001 + color: '#990000FF' + - uid: 9838 components: - type: Transform rot: 1.5707963267948966 rad @@ -67298,3948 +66750,3948 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 16971 + - 72 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasVolumePump entities: - - uid: 2921 + - uid: 9839 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-246.5 parent: 2 - - uid: 7198 + - uid: 9840 components: - type: Transform pos: -16.5,-246.5 parent: 2 - proto: Gateway entities: - - uid: 2226 + - uid: 9841 components: - type: Transform pos: -0.5,-113.5 parent: 2 - - uid: 5317 + - uid: 9842 components: - type: Transform pos: -3.5,-254.5 parent: 2 - - uid: 10659 + - uid: 9843 components: - type: Transform pos: -4.5,-330.5 parent: 2 - - uid: 10754 + - uid: 9844 components: - type: Transform pos: 4.5,-15.5 parent: 2 - proto: Gauze entities: - - uid: 3682 + - uid: 9845 components: - type: Transform pos: 3.5643053,-171.28004 parent: 2 - - uid: 3697 + - uid: 9846 components: - type: Transform pos: 3.3926184,-171.42528 parent: 2 - proto: GeneratorBasic15kW entities: - - uid: 2465 + - uid: 9847 components: - type: Transform pos: 21.5,-308.5 parent: 2 - - uid: 2466 + - uid: 9848 components: - type: Transform pos: 21.5,-306.5 parent: 2 - proto: GravityGenerator entities: - - uid: 8925 + - uid: 9849 components: - type: Transform pos: 16.5,-264.5 parent: 2 - proto: Grille entities: - - uid: 4 + - uid: 9850 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 5 + - uid: 9851 components: - type: Transform pos: 0.5,4.5 parent: 2 - - uid: 6 + - uid: 9852 components: - type: Transform pos: 1.5,4.5 parent: 2 - - uid: 7 + - uid: 9853 components: - type: Transform pos: -1.5,3.5 parent: 2 - - uid: 8 + - uid: 9854 components: - type: Transform pos: 2.5,3.5 parent: 2 - - uid: 117 + - uid: 9855 components: - type: Transform pos: 7.5,-5.5 parent: 2 - - uid: 151 + - uid: 9856 components: - type: Transform pos: 7.5,-7.5 parent: 2 - - uid: 152 + - uid: 9857 components: - type: Transform pos: 7.5,-6.5 parent: 2 - - uid: 234 + - uid: 9858 components: - type: Transform pos: -6.5,-7.5 parent: 2 - - uid: 235 + - uid: 9859 components: - type: Transform pos: -6.5,-6.5 parent: 2 - - uid: 236 + - uid: 9860 components: - type: Transform pos: -6.5,-5.5 parent: 2 - - uid: 237 + - uid: 9861 components: - type: Transform pos: -6.5,-9.5 parent: 2 - - uid: 238 + - uid: 9862 components: - type: Transform pos: -6.5,-10.5 parent: 2 - - uid: 239 + - uid: 9863 components: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 365 + - uid: 9864 components: - type: Transform pos: 7.5,-8.5 parent: 2 - - uid: 386 + - uid: 9865 components: - type: Transform pos: 4.5,-0.5 parent: 2 - - uid: 388 + - uid: 9866 components: - type: Transform pos: 6.5,-0.5 parent: 2 - - uid: 509 + - uid: 9867 components: - type: Transform pos: 7.5,-39.5 parent: 2 - - uid: 511 + - uid: 9868 components: - type: Transform pos: 7.5,-41.5 parent: 2 - - uid: 512 + - uid: 9869 components: - type: Transform pos: 7.5,-38.5 parent: 2 - - uid: 531 + - uid: 9870 components: - type: Transform pos: -6.5,-39.5 parent: 2 - - uid: 586 + - uid: 9871 components: - type: Transform pos: 7.5,-40.5 parent: 2 - - uid: 912 + - uid: 9872 components: - type: Transform pos: -7.5,-66.5 parent: 2 - - uid: 919 + - uid: 9873 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,18.5 parent: 2 - - uid: 947 + - uid: 9874 components: - type: Transform pos: -7.5,-65.5 parent: 2 - - uid: 962 + - uid: 9875 components: - type: Transform pos: -7.5,-60.5 parent: 2 - - uid: 970 + - uid: 9876 components: - type: Transform pos: -7.5,-58.5 parent: 2 - - uid: 974 + - uid: 9877 components: - type: Transform pos: -7.5,-67.5 parent: 2 - - uid: 985 + - uid: 9878 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,14.5 parent: 2 - - uid: 1027 + - uid: 9879 components: - type: Transform pos: -7.5,-59.5 parent: 2 - - uid: 1064 + - uid: 9880 components: - type: Transform pos: -7.5,-57.5 parent: 2 - - uid: 1124 + - uid: 9881 components: - type: Transform pos: -7.5,-68.5 parent: 2 - - uid: 1143 + - uid: 9882 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,24.5 parent: 2 - - uid: 1225 + - uid: 9883 components: - type: Transform pos: 8.5,-68.5 parent: 2 - - uid: 1257 + - uid: 9884 components: - type: Transform pos: 5.5,-230.5 parent: 2 - - uid: 1381 + - uid: 9885 components: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 1422 + - uid: 9886 components: - type: Transform pos: 0.5,-83.5 parent: 2 - - uid: 1432 + - uid: 9887 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-285.5 parent: 2 - - uid: 1460 + - uid: 9888 components: - type: Transform pos: -4.5,-231.5 parent: 2 - - uid: 1479 + - uid: 9889 components: - type: Transform pos: 7.5,-61.5 parent: 2 - - uid: 1480 + - uid: 9890 components: - type: Transform pos: 8.5,-55.5 parent: 2 - - uid: 1481 + - uid: 9891 components: - type: Transform pos: 8.5,-56.5 parent: 2 - - uid: 1482 + - uid: 9892 components: - type: Transform pos: 8.5,-57.5 parent: 2 - - uid: 1500 + - uid: 9893 components: - type: Transform pos: -10.5,-87.5 parent: 2 - - uid: 1501 + - uid: 9894 components: - type: Transform pos: -10.5,-85.5 parent: 2 - - uid: 1503 + - uid: 9895 components: - type: Transform pos: -7.5,-90.5 parent: 2 - - uid: 1504 + - uid: 9896 components: - type: Transform pos: -7.5,-82.5 parent: 2 - - uid: 1520 + - uid: 9897 components: - type: Transform pos: 7.5,-82.5 parent: 2 - - uid: 1521 + - uid: 9898 components: - type: Transform pos: 7.5,-83.5 parent: 2 - - uid: 1522 + - uid: 9899 components: - type: Transform pos: 7.5,-84.5 parent: 2 - - uid: 1523 + - uid: 9900 components: - type: Transform pos: 7.5,-85.5 parent: 2 - - uid: 1524 + - uid: 9901 components: - type: Transform pos: 7.5,-87.5 parent: 2 - - uid: 1525 + - uid: 9902 components: - type: Transform pos: 7.5,-88.5 parent: 2 - - uid: 1526 + - uid: 9903 components: - type: Transform pos: 7.5,-89.5 parent: 2 - - uid: 1527 + - uid: 9904 components: - type: Transform pos: 7.5,-90.5 parent: 2 - - uid: 1528 + - uid: 9905 components: - type: Transform pos: 7.5,-91.5 parent: 2 - - uid: 1529 + - uid: 9906 components: - type: Transform pos: 7.5,-93.5 parent: 2 - - uid: 1530 + - uid: 9907 components: - type: Transform pos: 7.5,-94.5 parent: 2 - - uid: 1531 + - uid: 9908 components: - type: Transform pos: 7.5,-95.5 parent: 2 - - uid: 1532 + - uid: 9909 components: - type: Transform pos: 7.5,-96.5 parent: 2 - - uid: 1672 + - uid: 9910 components: - type: Transform pos: -6.5,-53.5 parent: 2 - - uid: 1673 + - uid: 9911 components: - type: Transform pos: -5.5,-52.5 parent: 2 - - uid: 1708 + - uid: 9912 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-74.5 parent: 2 - - uid: 1719 + - uid: 9913 components: - type: Transform pos: 0.5,-93.5 parent: 2 - - uid: 1727 + - uid: 9914 components: - type: Transform pos: 1.5,-93.5 parent: 2 - - uid: 1728 + - uid: 9915 components: - type: Transform pos: 1.5,-83.5 parent: 2 - - uid: 1771 + - uid: 9916 components: - type: Transform pos: 7.5,-62.5 parent: 2 - - uid: 1772 + - uid: 9917 components: - type: Transform pos: 7.5,-63.5 parent: 2 - - uid: 1773 + - uid: 9918 components: - type: Transform pos: 7.5,-64.5 parent: 2 - - uid: 1777 + - uid: 9919 components: - type: Transform pos: 8.5,-69.5 parent: 2 - - uid: 1963 + - uid: 9920 components: - type: Transform pos: -7.5,-139.5 parent: 2 - - uid: 1973 + - uid: 9921 components: - type: Transform pos: -9.5,-108.5 parent: 2 - - uid: 1975 + - uid: 9922 components: - type: Transform pos: -9.5,-109.5 parent: 2 - - uid: 1977 + - uid: 9923 components: - type: Transform pos: -9.5,-112.5 parent: 2 - - uid: 1978 + - uid: 9924 components: - type: Transform pos: -9.5,-113.5 parent: 2 - - uid: 1979 + - uid: 9925 components: - type: Transform pos: -9.5,-115.5 parent: 2 - - uid: 1980 + - uid: 9926 components: - type: Transform pos: -9.5,-116.5 parent: 2 - - uid: 1981 + - uid: 9927 components: - type: Transform pos: -9.5,-118.5 parent: 2 - - uid: 1982 + - uid: 9928 components: - type: Transform pos: -9.5,-119.5 parent: 2 - - uid: 1983 + - uid: 9929 components: - type: Transform pos: -9.5,-121.5 parent: 2 - - uid: 1984 + - uid: 9930 components: - type: Transform pos: -9.5,-122.5 parent: 2 - - uid: 1985 + - uid: 9931 components: - type: Transform pos: -9.5,-124.5 parent: 2 - - uid: 1986 + - uid: 9932 components: - type: Transform pos: -9.5,-125.5 parent: 2 - - uid: 2131 + - uid: 9933 components: - type: Transform pos: -15.5,-167.5 parent: 2 - - uid: 2148 + - uid: 9934 components: - type: Transform pos: -2.5,-121.5 parent: 2 - - uid: 2177 + - uid: 9935 components: - type: Transform pos: -1.5,-122.5 parent: 2 - - uid: 2180 + - uid: 9936 components: - type: Transform pos: -2.5,-120.5 parent: 2 - - uid: 2182 + - uid: 9937 components: - type: Transform pos: 0.5,-122.5 parent: 2 - - uid: 2183 + - uid: 9938 components: - type: Transform pos: 1.5,-122.5 parent: 2 - - uid: 2212 + - uid: 9939 components: - type: Transform pos: 7.5,-124.5 parent: 2 - - uid: 2215 + - uid: 9940 components: - type: Transform pos: 7.5,-123.5 parent: 2 - - uid: 2216 + - uid: 9941 components: - type: Transform pos: 7.5,-122.5 parent: 2 - - uid: 2287 + - uid: 9942 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,20.5 parent: 2 - - uid: 2360 + - uid: 9943 components: - type: Transform pos: -18.5,-249.5 parent: 2 - - uid: 2418 + - uid: 9944 components: - type: Transform pos: -9.5,-190.5 parent: 2 - - uid: 2474 + - uid: 9945 components: - type: Transform pos: 2.5,-175.5 parent: 2 - - uid: 2507 + - uid: 9946 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-73.5 parent: 2 - - uid: 2596 + - uid: 9947 components: - type: Transform pos: -4.5,-134.5 parent: 2 - - uid: 2599 + - uid: 9948 components: - type: Transform pos: -7.5,-140.5 parent: 2 - - uid: 2600 + - uid: 9949 components: - type: Transform pos: -7.5,-141.5 parent: 2 - - uid: 2601 + - uid: 9950 components: - type: Transform pos: -7.5,-150.5 parent: 2 - - uid: 2602 + - uid: 9951 components: - type: Transform pos: -7.5,-152.5 parent: 2 - - uid: 2657 + - uid: 9952 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-114.5 parent: 2 - - uid: 2747 + - uid: 9953 components: - type: Transform pos: 1.5,-143.5 parent: 2 - - uid: 2786 + - uid: 9954 components: - type: Transform pos: 7.5,-149.5 parent: 2 - - uid: 2789 + - uid: 9955 components: - type: Transform pos: 9.5,-145.5 parent: 2 - - uid: 2790 + - uid: 9956 components: - type: Transform pos: 9.5,-144.5 parent: 2 - - uid: 2795 + - uid: 9957 components: - type: Transform pos: 9.5,-139.5 parent: 2 - - uid: 2796 + - uid: 9958 components: - type: Transform pos: 9.5,-138.5 parent: 2 - - uid: 2839 + - uid: 9959 components: - type: Transform pos: 1.5,-144.5 parent: 2 - - uid: 2840 + - uid: 9960 components: - type: Transform pos: 1.5,-145.5 parent: 2 - - uid: 2959 + - uid: 9961 components: - type: Transform pos: -8.5,-173.5 parent: 2 - - uid: 2960 + - uid: 9962 components: - type: Transform pos: -8.5,-174.5 parent: 2 - - uid: 2961 + - uid: 9963 components: - type: Transform pos: -8.5,-175.5 parent: 2 - - uid: 2962 + - uid: 9964 components: - type: Transform pos: -8.5,-176.5 parent: 2 - - uid: 2967 + - uid: 9965 components: - type: Transform pos: 9.5,-176.5 parent: 2 - - uid: 2968 + - uid: 9966 components: - type: Transform pos: 9.5,-175.5 parent: 2 - - uid: 2969 + - uid: 9967 components: - type: Transform pos: 9.5,-174.5 parent: 2 - - uid: 2970 + - uid: 9968 components: - type: Transform pos: 9.5,-173.5 parent: 2 - - uid: 2975 + - uid: 9969 components: - type: Transform pos: 8.5,-168.5 parent: 2 - - uid: 2976 + - uid: 9970 components: - type: Transform pos: 8.5,-167.5 parent: 2 - - uid: 2977 + - uid: 9971 components: - type: Transform pos: 8.5,-166.5 parent: 2 - - uid: 3007 + - uid: 9972 components: - type: Transform pos: -10.5,-308.5 parent: 2 - - uid: 3535 + - uid: 9973 components: - type: Transform pos: 2.5,-173.5 parent: 2 - - uid: 3538 + - uid: 9974 components: - type: Transform pos: 2.5,-174.5 parent: 2 - - uid: 3541 + - uid: 9975 components: - type: Transform pos: 0.5,-200.5 parent: 2 - - uid: 3727 + - uid: 9976 components: - type: Transform pos: 4.5,-192.5 parent: 2 - - uid: 3728 + - uid: 9977 components: - type: Transform pos: 4.5,-193.5 parent: 2 - - uid: 3729 + - uid: 9978 components: - type: Transform pos: 4.5,-194.5 parent: 2 - - uid: 3741 + - uid: 9979 components: - type: Transform pos: 6.5,-339.5 parent: 2 - - uid: 3757 + - uid: 9980 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-246.5 parent: 2 - - uid: 3758 + - uid: 9981 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-245.5 parent: 2 - - uid: 3842 + - uid: 9982 components: - type: Transform pos: 9.5,-146.5 parent: 2 - - uid: 3853 + - uid: 9983 components: - type: Transform pos: -1.5,-206.5 parent: 2 - - uid: 3854 + - uid: 9984 components: - type: Transform pos: -1.5,-197.5 parent: 2 - - uid: 3856 + - uid: 9985 components: - type: Transform pos: -6.5,-205.5 parent: 2 - - uid: 3857 + - uid: 9986 components: - type: Transform pos: -6.5,-204.5 parent: 2 - - uid: 3858 + - uid: 9987 components: - type: Transform pos: -6.5,-202.5 parent: 2 - - uid: 3859 + - uid: 9988 components: - type: Transform pos: -6.5,-201.5 parent: 2 - - uid: 3872 + - uid: 9989 components: - type: Transform pos: -3.5,-204.5 parent: 2 - - uid: 3913 + - uid: 9990 components: - type: Transform pos: -7.5,-197.5 parent: 2 - - uid: 3914 + - uid: 9991 components: - type: Transform pos: -7.5,-196.5 parent: 2 - - uid: 3915 + - uid: 9992 components: - type: Transform pos: -7.5,-195.5 parent: 2 - - uid: 3987 + - uid: 9993 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,16.5 parent: 2 - - uid: 4187 + - uid: 9994 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-247.5 parent: 2 - - uid: 4252 + - uid: 9995 components: - type: Transform pos: -1.5,-224.5 parent: 2 - - uid: 4253 + - uid: 9996 components: - type: Transform pos: -1.5,-225.5 parent: 2 - - uid: 4268 + - uid: 9997 components: - type: Transform pos: 2.5,-225.5 parent: 2 - - uid: 4269 + - uid: 9998 components: - type: Transform pos: 2.5,-224.5 parent: 2 - - uid: 4278 + - uid: 9999 components: - type: Transform pos: 5.5,-231.5 parent: 2 - - uid: 4279 + - uid: 10000 components: - type: Transform pos: -4.5,-230.5 parent: 2 - - uid: 4287 + - uid: 10001 components: - type: Transform pos: -4.5,-219.5 parent: 2 - - uid: 4288 + - uid: 10002 components: - type: Transform pos: -4.5,-218.5 parent: 2 - - uid: 4289 + - uid: 10003 components: - type: Transform pos: -4.5,-217.5 parent: 2 - - uid: 4290 + - uid: 10004 components: - type: Transform pos: -3.5,-217.5 parent: 2 - - uid: 4330 + - uid: 10005 components: - type: Transform pos: -4.5,-232.5 parent: 2 - - uid: 4333 + - uid: 10006 components: - type: Transform pos: 5.5,-232.5 parent: 2 - - uid: 4334 + - uid: 10007 components: - type: Transform pos: 4.5,-232.5 parent: 2 - - uid: 4342 + - uid: 10008 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-218.5 parent: 2 - - uid: 4343 + - uid: 10009 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-221.5 parent: 2 - - uid: 4439 + - uid: 10010 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-217.5 parent: 2 - - uid: 4505 + - uid: 10011 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-219.5 parent: 2 - - uid: 4507 + - uid: 10012 components: - type: Transform pos: -3.5,-232.5 parent: 2 - - uid: 5079 + - uid: 10013 components: - type: Transform pos: 10.5,-119.5 parent: 2 - - uid: 5085 + - uid: 10014 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-339.5 parent: 2 - - uid: 5209 + - uid: 10015 components: - type: Transform pos: 20.5,-258.5 parent: 2 - - uid: 5282 + - uid: 10016 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-346.5 parent: 2 - - uid: 5291 + - uid: 10017 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-345.5 parent: 2 - - uid: 5501 + - uid: 10018 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-340.5 parent: 2 - - uid: 5842 + - uid: 10019 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-115.5 parent: 2 - - uid: 5852 + - uid: 10020 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-117.5 parent: 2 - - uid: 6626 + - uid: 10021 components: - type: Transform pos: 9.5,-147.5 parent: 2 - - uid: 6664 + - uid: 10022 components: - type: Transform pos: -9.5,-309.5 parent: 2 - - uid: 6665 + - uid: 10023 components: - type: Transform pos: -9.5,-308.5 parent: 2 - - uid: 6666 + - uid: 10024 components: - type: Transform pos: -9.5,-307.5 parent: 2 - - uid: 6685 + - uid: 10025 components: - type: Transform pos: -18.5,-343.5 parent: 2 - - uid: 6687 + - uid: 10026 components: - type: Transform pos: -18.5,-341.5 parent: 2 - - uid: 6695 + - uid: 10027 components: - type: Transform pos: -17.5,-347.5 parent: 2 - - uid: 6703 + - uid: 10028 components: - type: Transform pos: -19.5,-331.5 parent: 2 - - uid: 6706 + - uid: 10029 components: - type: Transform pos: -20.5,-330.5 parent: 2 - - uid: 6881 + - uid: 10030 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-301.5 parent: 2 - - uid: 6916 + - uid: 10031 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-241.5 parent: 2 - - uid: 7001 + - uid: 10032 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-242.5 parent: 2 - - uid: 7319 + - uid: 10033 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-60.5 parent: 2 - - uid: 7479 + - uid: 10034 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,20.5 parent: 2 - - uid: 7510 + - uid: 10035 components: - type: Transform pos: 12.5,-159.5 parent: 2 - - uid: 7511 + - uid: 10036 components: - type: Transform pos: 12.5,-160.5 parent: 2 - - uid: 7512 + - uid: 10037 components: - type: Transform pos: 18.5,-159.5 parent: 2 - - uid: 7513 + - uid: 10038 components: - type: Transform pos: 18.5,-160.5 parent: 2 - - uid: 7514 + - uid: 10039 components: - type: Transform pos: 18.5,-165.5 parent: 2 - - uid: 7515 + - uid: 10040 components: - type: Transform pos: 18.5,-166.5 parent: 2 - - uid: 7516 + - uid: 10041 components: - type: Transform pos: 12.5,-153.5 parent: 2 - - uid: 7517 + - uid: 10042 components: - type: Transform pos: 12.5,-152.5 parent: 2 - - uid: 7518 + - uid: 10043 components: - type: Transform pos: 18.5,-153.5 parent: 2 - - uid: 7519 + - uid: 10044 components: - type: Transform pos: 18.5,-152.5 parent: 2 - - uid: 7520 + - uid: 10045 components: - type: Transform pos: 18.5,-147.5 parent: 2 - - uid: 7523 + - uid: 10046 components: - type: Transform pos: 18.5,-144.5 parent: 2 - - uid: 7524 + - uid: 10047 components: - type: Transform pos: 12.5,-147.5 parent: 2 - - uid: 7525 + - uid: 10048 components: - type: Transform pos: 12.5,-146.5 parent: 2 - - uid: 7526 + - uid: 10049 components: - type: Transform pos: 12.5,-145.5 parent: 2 - - uid: 7527 + - uid: 10050 components: - type: Transform pos: 12.5,-144.5 parent: 2 - - uid: 7528 + - uid: 10051 components: - type: Transform pos: 12.5,-139.5 parent: 2 - - uid: 7529 + - uid: 10052 components: - type: Transform pos: 12.5,-138.5 parent: 2 - - uid: 7530 + - uid: 10053 components: - type: Transform pos: 18.5,-139.5 parent: 2 - - uid: 7531 + - uid: 10054 components: - type: Transform pos: 18.5,-138.5 parent: 2 - - uid: 7553 + - uid: 10055 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-147.5 parent: 2 - - uid: 7623 + - uid: 10056 components: - type: Transform pos: 20.5,-260.5 parent: 2 - - uid: 7667 + - uid: 10057 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-220.5 parent: 2 - - uid: 7691 + - uid: 10058 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-201.5 parent: 2 - - uid: 7692 + - uid: 10059 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-200.5 parent: 2 - - uid: 7693 + - uid: 10060 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-199.5 parent: 2 - - uid: 7694 + - uid: 10061 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-198.5 parent: 2 - - uid: 7695 + - uid: 10062 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-197.5 parent: 2 - - uid: 7696 + - uid: 10063 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-196.5 parent: 2 - - uid: 7697 + - uid: 10064 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-195.5 parent: 2 - - uid: 7698 + - uid: 10065 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-194.5 parent: 2 - - uid: 7796 + - uid: 10066 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-249.5 parent: 2 - - uid: 7844 + - uid: 10067 components: - type: Transform pos: -8.5,-191.5 parent: 2 - - uid: 7869 + - uid: 10068 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-254.5 parent: 2 - - uid: 7934 + - uid: 10069 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,20.5 parent: 2 - - uid: 8002 + - uid: 10070 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-256.5 parent: 2 - - uid: 8052 + - uid: 10071 components: - type: Transform pos: 20.5,-259.5 parent: 2 - - uid: 8096 + - uid: 10072 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,20.5 parent: 2 - - uid: 8127 + - uid: 10073 components: - type: Transform pos: -8.5,-190.5 parent: 2 - - uid: 8129 + - uid: 10074 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-257.5 parent: 2 - - uid: 8133 + - uid: 10075 components: - type: Transform pos: 14.5,-245.5 parent: 2 - - uid: 8165 + - uid: 10076 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-261.5 parent: 2 - - uid: 8166 + - uid: 10077 components: - type: Transform pos: -8.5,-189.5 parent: 2 - - uid: 8199 + - uid: 10078 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-255.5 parent: 2 - - uid: 8219 + - uid: 10079 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-260.5 parent: 2 - - uid: 8235 + - uid: 10080 components: - type: Transform pos: 16.5,-238.5 parent: 2 - - uid: 8260 + - uid: 10081 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-329.5 parent: 2 - - uid: 8394 + - uid: 10082 components: - type: Transform pos: -19.5,-336.5 parent: 2 - - uid: 8413 + - uid: 10083 components: - type: Transform pos: -17.5,-348.5 parent: 2 - - uid: 8415 + - uid: 10084 components: - type: Transform pos: -18.5,-340.5 parent: 2 - - uid: 8417 + - uid: 10085 components: - type: Transform pos: -4.5,-289.5 parent: 2 - - uid: 8425 + - uid: 10086 components: - type: Transform pos: -19.5,-334.5 parent: 2 - - uid: 8450 + - uid: 10087 components: - type: Transform pos: -18.5,-338.5 parent: 2 - - uid: 8455 + - uid: 10088 components: - type: Transform pos: -18.5,-344.5 parent: 2 - - uid: 8508 + - uid: 10089 components: - type: Transform pos: -3.5,-273.5 parent: 2 - - uid: 8510 + - uid: 10090 components: - type: Transform pos: -7.5,-286.5 parent: 2 - - uid: 8511 + - uid: 10091 components: - type: Transform pos: -7.5,-285.5 parent: 2 - - uid: 8529 + - uid: 10092 components: - type: Transform pos: -20.5,-327.5 parent: 2 - - uid: 8535 + - uid: 10093 components: - type: Transform pos: 1.5,-200.5 parent: 2 - - uid: 8545 + - uid: 10094 components: - type: Transform pos: -20.5,-329.5 parent: 2 - - uid: 8609 + - uid: 10095 components: - type: Transform pos: -7.5,-284.5 parent: 2 - - uid: 8610 + - uid: 10096 components: - type: Transform pos: -19.5,-335.5 parent: 2 - - uid: 8613 + - uid: 10097 components: - type: Transform pos: -6.5,-280.5 parent: 2 - - uid: 8614 + - uid: 10098 components: - type: Transform pos: -6.5,-279.5 parent: 2 - - uid: 8615 + - uid: 10099 components: - type: Transform pos: -6.5,-278.5 parent: 2 - - uid: 8624 + - uid: 10100 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-286.5 parent: 2 - - uid: 8637 + - uid: 10101 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-276.5 parent: 2 - - uid: 8640 + - uid: 10102 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-275.5 parent: 2 - - uid: 8659 + - uid: 10103 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-284.5 parent: 2 - - uid: 8665 + - uid: 10104 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-272.5 parent: 2 - - uid: 8667 + - uid: 10105 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-274.5 parent: 2 - - uid: 8680 + - uid: 10106 components: - type: Transform pos: -1.5,-282.5 parent: 2 - - uid: 8695 + - uid: 10107 components: - type: Transform pos: -0.5,-283.5 parent: 2 - - uid: 8790 + - uid: 10108 components: - type: Transform pos: 10.5,-279.5 parent: 2 - - uid: 8802 + - uid: 10109 components: - type: Transform pos: 11.5,-279.5 parent: 2 - - uid: 9002 + - uid: 10110 components: - type: Transform pos: 9.5,-279.5 parent: 2 - - uid: 9016 + - uid: 10111 components: - type: Transform pos: 10.5,-118.5 parent: 2 - - uid: 9391 + - uid: 10112 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,22.5 parent: 2 - - uid: 9392 + - uid: 10113 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,23.5 parent: 2 - - uid: 9434 + - uid: 10114 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,18.5 parent: 2 - - uid: 9435 + - uid: 10115 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,25.5 parent: 2 - - uid: 9505 + - uid: 10116 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-299.5 parent: 2 - - uid: 9506 + - uid: 10117 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-298.5 parent: 2 - - uid: 9507 + - uid: 10118 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-297.5 parent: 2 - - uid: 9508 + - uid: 10119 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-298.5 parent: 2 - - uid: 9509 + - uid: 10120 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-299.5 parent: 2 - - uid: 9510 + - uid: 10121 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-297.5 parent: 2 - - uid: 9523 + - uid: 10122 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-317.5 parent: 2 - - uid: 9524 + - uid: 10123 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-316.5 parent: 2 - - uid: 9525 + - uid: 10124 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-315.5 parent: 2 - - uid: 9526 + - uid: 10125 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-315.5 parent: 2 - - uid: 9527 + - uid: 10126 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-316.5 parent: 2 - - uid: 9528 + - uid: 10127 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-317.5 parent: 2 - - uid: 9529 + - uid: 10128 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-308.5 parent: 2 - - uid: 9530 + - uid: 10129 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-306.5 parent: 2 - - uid: 9531 + - uid: 10130 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-308.5 parent: 2 - - uid: 9532 + - uid: 10131 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-307.5 parent: 2 - - uid: 9533 + - uid: 10132 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-306.5 parent: 2 - - uid: 9817 + - uid: 10133 components: - type: Transform pos: -10.5,-302.5 parent: 2 - - uid: 9859 + - uid: 10134 components: - type: Transform pos: -10.5,-303.5 parent: 2 - - uid: 9861 + - uid: 10135 components: - type: Transform pos: -10.5,-304.5 parent: 2 - - uid: 9871 + - uid: 10136 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-255.5 parent: 2 - - uid: 9957 + - uid: 10137 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-310.5 parent: 2 - - uid: 9958 + - uid: 10138 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-309.5 parent: 2 - - uid: 9959 + - uid: 10139 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-305.5 parent: 2 - - uid: 9960 + - uid: 10140 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-304.5 parent: 2 - - uid: 9999 + - uid: 10141 components: - type: Transform pos: -7.5,-312.5 parent: 2 - - uid: 10019 + - uid: 10142 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-316.5 parent: 2 - - uid: 10020 + - uid: 10143 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-316.5 parent: 2 - - uid: 10060 + - uid: 10144 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-305.5 parent: 2 - - uid: 10061 + - uid: 10145 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-309.5 parent: 2 - - uid: 10070 + - uid: 10146 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-320.5 parent: 2 - - uid: 10071 + - uid: 10147 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-319.5 parent: 2 - - uid: 10072 + - uid: 10148 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-318.5 parent: 2 - - uid: 10073 + - uid: 10149 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-317.5 parent: 2 - - uid: 10076 + - uid: 10150 components: - type: Transform pos: -8.5,-312.5 parent: 2 - - uid: 10138 + - uid: 10151 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-312.5 parent: 2 - - uid: 10139 + - uid: 10152 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-313.5 parent: 2 - - uid: 10140 + - uid: 10153 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-314.5 parent: 2 - - uid: 10141 + - uid: 10154 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-315.5 parent: 2 - - uid: 10153 + - uid: 10155 components: - type: Transform pos: 11.5,-297.5 parent: 2 - - uid: 10154 + - uid: 10156 components: - type: Transform pos: 11.5,-298.5 parent: 2 - - uid: 10155 + - uid: 10157 components: - type: Transform pos: 11.5,-299.5 parent: 2 - - uid: 10156 + - uid: 10158 components: - type: Transform pos: 11.5,-315.5 parent: 2 - - uid: 10157 + - uid: 10159 components: - type: Transform pos: 11.5,-316.5 parent: 2 - - uid: 10158 + - uid: 10160 components: - type: Transform pos: 11.5,-317.5 parent: 2 - - uid: 10701 + - uid: 10161 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,20.5 parent: 2 - - uid: 10752 + - uid: 10162 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-327.5 parent: 2 - - uid: 10828 + - uid: 10163 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-331.5 parent: 2 - - uid: 10830 + - uid: 10164 components: - type: Transform pos: 1.5,-350.5 parent: 2 - - uid: 10935 + - uid: 10165 components: - type: Transform pos: -19.5,-87.5 parent: 2 - - uid: 10977 + - uid: 10166 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-253.5 parent: 2 - - uid: 11001 + - uid: 10167 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,15.5 parent: 2 - - uid: 11052 + - uid: 10168 components: - type: Transform pos: 1.5,-351.5 parent: 2 - - uid: 11053 + - uid: 10169 components: - type: Transform pos: 1.5,-352.5 parent: 2 - - uid: 11054 + - uid: 10170 components: - type: Transform pos: -0.5,-350.5 parent: 2 - - uid: 11055 + - uid: 10171 components: - type: Transform pos: -0.5,-351.5 parent: 2 - - uid: 11056 + - uid: 10172 components: - type: Transform pos: -0.5,-352.5 parent: 2 - - uid: 11224 + - uid: 10173 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-370.5 parent: 2 - - uid: 11262 + - uid: 10174 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-365.5 parent: 2 - - uid: 11306 + - uid: 10175 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-364.5 parent: 2 - - uid: 11307 + - uid: 10176 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-367.5 parent: 2 - - uid: 11308 + - uid: 10177 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-366.5 parent: 2 - - uid: 11309 + - uid: 10178 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-364.5 parent: 2 - - uid: 11310 + - uid: 10179 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-363.5 parent: 2 - - uid: 11313 + - uid: 10180 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-371.5 parent: 2 - - uid: 11314 + - uid: 10181 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-372.5 parent: 2 - - uid: 11316 + - uid: 10182 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-372.5 parent: 2 - - uid: 11317 + - uid: 10183 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-371.5 parent: 2 - - uid: 11318 + - uid: 10184 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-370.5 parent: 2 - - uid: 11319 + - uid: 10185 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-367.5 parent: 2 - - uid: 11320 + - uid: 10186 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-366.5 parent: 2 - - uid: 11322 + - uid: 10187 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-364.5 parent: 2 - - uid: 11323 + - uid: 10188 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-364.5 parent: 2 - - uid: 11324 + - uid: 10189 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-363.5 parent: 2 - - uid: 11325 + - uid: 10190 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-361.5 parent: 2 - - uid: 11326 + - uid: 10191 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-360.5 parent: 2 - - uid: 11394 + - uid: 10192 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-364.5 parent: 2 - - uid: 11395 + - uid: 10193 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-363.5 parent: 2 - - uid: 11396 + - uid: 10194 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-363.5 parent: 2 - - uid: 11397 + - uid: 10195 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-364.5 parent: 2 - - uid: 11398 + - uid: 10196 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-365.5 parent: 2 - - uid: 11399 + - uid: 10197 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-369.5 parent: 2 - - uid: 11400 + - uid: 10198 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-369.5 parent: 2 - - uid: 11401 + - uid: 10199 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-369.5 parent: 2 - - uid: 11413 + - uid: 10200 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-251.5 parent: 2 - - uid: 11414 + - uid: 10201 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-329.5 parent: 2 - - uid: 11415 + - uid: 10202 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-330.5 parent: 2 - - uid: 11416 + - uid: 10203 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-331.5 parent: 2 - - uid: 11548 + - uid: 10204 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-330.5 parent: 2 - - uid: 11880 + - uid: 10205 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-341.5 parent: 2 - - uid: 11898 + - uid: 10206 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-335.5 parent: 2 - - uid: 11981 + - uid: 10207 components: - type: Transform pos: -4.5,-381.5 parent: 2 - - uid: 12111 + - uid: 10208 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-259.5 parent: 2 - - uid: 12243 + - uid: 10209 components: - type: Transform pos: 14.5,-246.5 parent: 2 - - uid: 12473 + - uid: 10210 components: - type: Transform pos: 20.5,-245.5 parent: 2 - - uid: 12518 + - uid: 10211 components: - type: Transform pos: 20.5,-246.5 parent: 2 - - uid: 12609 + - uid: 10212 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-263.5 parent: 2 - - uid: 12692 + - uid: 10213 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-145.5 parent: 2 - - uid: 12772 + - uid: 10214 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,17.5 parent: 2 - - uid: 13272 + - uid: 10215 components: - type: Transform pos: 17.5,-238.5 parent: 2 - - uid: 13280 + - uid: 10216 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-343.5 parent: 2 - - uid: 13286 + - uid: 10217 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-348.5 parent: 2 - - uid: 13289 + - uid: 10218 components: - type: Transform pos: 14.5,-373.5 parent: 2 - - uid: 13297 + - uid: 10219 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-299.5 parent: 2 - - uid: 13298 + - uid: 10220 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-300.5 parent: 2 - - uid: 13447 + - uid: 10221 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-340.5 parent: 2 - - uid: 13455 + - uid: 10222 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-113.5 parent: 2 - - uid: 13459 + - uid: 10223 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-327.5 parent: 2 - - uid: 13474 + - uid: 10224 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-334.5 parent: 2 - - uid: 13820 + - uid: 10225 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-336.5 parent: 2 - - uid: 13989 + - uid: 10226 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-332.5 parent: 2 - - uid: 14000 + - uid: 10227 components: - type: Transform pos: 18.5,-238.5 parent: 2 - - uid: 14008 + - uid: 10228 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-330.5 parent: 2 - - uid: 14326 + - uid: 10229 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-61.5 parent: 2 - - uid: 14327 + - uid: 10230 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-62.5 parent: 2 - - uid: 14328 + - uid: 10231 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-60.5 parent: 2 - - uid: 14329 + - uid: 10232 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-61.5 parent: 2 - - uid: 14330 + - uid: 10233 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-62.5 parent: 2 - - uid: 14416 + - uid: 10234 components: - type: Transform pos: 14.5,-76.5 parent: 2 - - uid: 14417 + - uid: 10235 components: - type: Transform pos: 16.5,-76.5 parent: 2 - - uid: 14687 + - uid: 10236 components: - type: Transform pos: -14.5,-365.5 parent: 2 - - uid: 14688 + - uid: 10237 components: - type: Transform pos: -13.5,-368.5 parent: 2 - - uid: 14797 + - uid: 10238 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-74.5 parent: 2 - - uid: 14917 + - uid: 10239 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-146.5 parent: 2 - - uid: 15799 + - uid: 10240 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,12.5 parent: 2 - - uid: 15801 + - uid: 10241 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,14.5 parent: 2 - - uid: 15802 + - uid: 10242 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,17.5 parent: 2 - - uid: 15803 + - uid: 10243 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,13.5 parent: 2 - - uid: 15805 + - uid: 10244 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,11.5 parent: 2 - - uid: 15806 + - uid: 10245 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,16.5 parent: 2 - - uid: 15807 + - uid: 10246 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,13.5 parent: 2 - - uid: 15808 + - uid: 10247 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,15.5 parent: 2 - - uid: 15810 + - uid: 10248 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,17.5 parent: 2 - - uid: 15813 + - uid: 10249 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,17.5 parent: 2 - - uid: 15821 + - uid: 10250 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,20.5 parent: 2 - - uid: 15822 + - uid: 10251 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,12.5 parent: 2 - - uid: 15824 + - uid: 10252 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,11.5 parent: 2 - - uid: 15825 + - uid: 10253 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,11.5 parent: 2 - - uid: 15826 + - uid: 10254 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,9.5 parent: 2 - - uid: 15827 + - uid: 10255 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 2 - - uid: 15828 + - uid: 10256 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 2 - - uid: 15829 + - uid: 10257 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,9.5 parent: 2 - - uid: 15830 + - uid: 10258 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,9.5 parent: 2 - - uid: 15831 + - uid: 10259 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,8.5 parent: 2 - - uid: 15832 + - uid: 10260 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 - - uid: 15833 + - uid: 10261 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,9.5 parent: 2 - - uid: 15834 + - uid: 10262 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,9.5 parent: 2 - - uid: 15835 + - uid: 10263 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,8.5 parent: 2 - - uid: 15836 + - uid: 10264 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,7.5 parent: 2 - - uid: 15837 + - uid: 10265 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,7.5 parent: 2 - - uid: 15838 + - uid: 10266 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,6.5 parent: 2 - - uid: 15839 + - uid: 10267 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,6.5 parent: 2 - - uid: 15840 + - uid: 10268 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,6.5 parent: 2 - - uid: 15841 + - uid: 10269 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,6.5 parent: 2 - - uid: 15842 + - uid: 10270 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 2 - - uid: 15843 + - uid: 10271 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,7.5 parent: 2 - - uid: 15844 + - uid: 10272 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,8.5 parent: 2 - - uid: 15845 + - uid: 10273 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,9.5 parent: 2 - - uid: 15846 + - uid: 10274 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,9.5 parent: 2 - - uid: 15847 + - uid: 10275 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,10.5 parent: 2 - - uid: 15848 + - uid: 10276 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,11.5 parent: 2 - - uid: 15849 + - uid: 10277 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,11.5 parent: 2 - - uid: 15850 + - uid: 10278 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,11.5 parent: 2 - - uid: 15852 + - uid: 10279 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,11.5 parent: 2 - - uid: 15853 + - uid: 10280 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,11.5 parent: 2 - - uid: 15902 + - uid: 10281 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-0.5 parent: 2 - - uid: 15903 + - uid: 10282 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-0.5 parent: 2 - - uid: 15904 + - uid: 10283 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,0.5 parent: 2 - - uid: 15905 + - uid: 10284 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,0.5 parent: 2 - - uid: 15906 + - uid: 10285 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,1.5 parent: 2 - - uid: 15907 + - uid: 10286 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,1.5 parent: 2 - - uid: 15910 + - uid: 10287 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-0.5 parent: 2 - - uid: 15911 + - uid: 10288 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-0.5 parent: 2 - - uid: 15912 + - uid: 10289 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,0.5 parent: 2 - - uid: 15913 + - uid: 10290 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,0.5 parent: 2 - - uid: 15914 + - uid: 10291 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,1.5 parent: 2 - - uid: 15915 + - uid: 10292 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,1.5 parent: 2 - - uid: 15924 + - uid: 10293 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-27.5 parent: 2 - - uid: 15925 + - uid: 10294 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-27.5 parent: 2 - - uid: 15926 + - uid: 10295 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-27.5 parent: 2 - - uid: 15927 + - uid: 10296 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-27.5 parent: 2 - - uid: 15940 + - uid: 10297 components: - type: Transform pos: 18.5,-6.5 parent: 2 - - uid: 15943 + - uid: 10298 components: - type: Transform pos: 18.5,-4.5 parent: 2 - - uid: 15944 + - uid: 10299 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-26.5 parent: 2 - - uid: 15948 + - uid: 10300 components: - type: Transform pos: -19.5,-137.5 parent: 2 - - uid: 15961 + - uid: 10301 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-26.5 parent: 2 - - uid: 15962 + - uid: 10302 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-26.5 parent: 2 - - uid: 15967 + - uid: 10303 components: - type: Transform pos: -17.5,8.5 parent: 2 - - uid: 15968 + - uid: 10304 components: - type: Transform pos: -17.5,-5.5 parent: 2 - - uid: 15969 + - uid: 10305 components: - type: Transform pos: -17.5,-4.5 parent: 2 - - uid: 15975 + - uid: 10306 components: - type: Transform pos: -17.5,7.5 parent: 2 - - uid: 15976 + - uid: 10307 components: - type: Transform pos: -16.5,10.5 parent: 2 - - uid: 15977 + - uid: 10308 components: - type: Transform pos: -17.5,6.5 parent: 2 - - uid: 15978 + - uid: 10309 components: - type: Transform pos: -17.5,3.5 parent: 2 - - uid: 15979 + - uid: 10310 components: - type: Transform pos: -17.5,-7.5 parent: 2 - - uid: 15980 + - uid: 10311 components: - type: Transform pos: -17.5,2.5 parent: 2 - - uid: 15981 + - uid: 10312 components: - type: Transform pos: -17.5,-1.5 parent: 2 - - uid: 16005 + - uid: 10313 components: - type: Transform pos: -19.5,-85.5 parent: 2 - - uid: 16006 + - uid: 10314 components: - type: Transform pos: -19.5,-88.5 parent: 2 - - uid: 16007 + - uid: 10315 components: - type: Transform pos: -20.5,-82.5 parent: 2 - - uid: 16008 + - uid: 10316 components: - type: Transform pos: -17.5,-99.5 parent: 2 - - uid: 16110 + - uid: 10317 components: - type: Transform pos: -17.5,-127.5 parent: 2 - - uid: 16111 + - uid: 10318 components: - type: Transform pos: -20.5,-107.5 parent: 2 - - uid: 16112 + - uid: 10319 components: - type: Transform pos: -17.5,-125.5 parent: 2 - - uid: 16113 + - uid: 10320 components: - type: Transform pos: -17.5,-124.5 parent: 2 - - uid: 16114 + - uid: 10321 components: - type: Transform pos: -18.5,-121.5 parent: 2 - - uid: 16115 + - uid: 10322 components: - type: Transform pos: -18.5,-120.5 parent: 2 - - uid: 16116 + - uid: 10323 components: - type: Transform pos: -18.5,-119.5 parent: 2 - - uid: 16117 + - uid: 10324 components: - type: Transform pos: -19.5,-115.5 parent: 2 - - uid: 16118 + - uid: 10325 components: - type: Transform pos: -19.5,-114.5 parent: 2 - - uid: 16119 + - uid: 10326 components: - type: Transform pos: -19.5,-113.5 parent: 2 - - uid: 16120 + - uid: 10327 components: - type: Transform pos: -19.5,-111.5 parent: 2 - - uid: 16121 + - uid: 10328 components: - type: Transform pos: -20.5,-108.5 parent: 2 - - uid: 16122 + - uid: 10329 components: - type: Transform pos: -19.5,-84.5 parent: 2 - - uid: 16123 + - uid: 10330 components: - type: Transform pos: -18.5,-91.5 parent: 2 - - uid: 16124 + - uid: 10331 components: - type: Transform pos: -18.5,-95.5 parent: 2 - - uid: 16125 + - uid: 10332 components: - type: Transform pos: -18.5,-96.5 parent: 2 - - uid: 16126 + - uid: 10333 components: - type: Transform pos: -18.5,-93.5 parent: 2 - - uid: 16127 + - uid: 10334 components: - type: Transform pos: -20.5,-80.5 parent: 2 - - uid: 16128 + - uid: 10335 components: - type: Transform pos: -20.5,-79.5 parent: 2 - - uid: 16129 + - uid: 10336 components: - type: Transform pos: -17.5,-73.5 parent: 2 - - uid: 16131 + - uid: 10337 components: - type: Transform pos: -17.5,-71.5 parent: 2 - - uid: 16133 + - uid: 10338 components: - type: Transform pos: -18.5,-68.5 parent: 2 - - uid: 16134 + - uid: 10339 components: - type: Transform pos: -19.5,-138.5 parent: 2 - - uid: 16135 + - uid: 10340 components: - type: Transform pos: -18.5,-67.5 parent: 2 - - uid: 16138 + - uid: 10341 components: - type: Transform pos: -18.5,-64.5 parent: 2 - - uid: 16139 + - uid: 10342 components: - type: Transform pos: -19.5,-61.5 parent: 2 - - uid: 16140 + - uid: 10343 components: - type: Transform pos: -19.5,-60.5 parent: 2 - - uid: 16141 + - uid: 10344 components: - type: Transform pos: -19.5,-58.5 parent: 2 - - uid: 16142 + - uid: 10345 components: - type: Transform pos: -19.5,-57.5 parent: 2 - - uid: 16148 + - uid: 10346 components: - type: Transform pos: -20.5,-134.5 parent: 2 - - uid: 16149 + - uid: 10347 components: - type: Transform pos: -20.5,-55.5 parent: 2 - - uid: 16151 + - uid: 10348 components: - type: Transform pos: -20.5,-54.5 parent: 2 - - uid: 16153 + - uid: 10349 components: - type: Transform pos: -20.5,-52.5 parent: 2 - - uid: 16189 + - uid: 10350 components: - type: Transform pos: 18.5,8.5 parent: 2 - - uid: 16190 + - uid: 10351 components: - type: Transform pos: 18.5,7.5 parent: 2 - - uid: 16191 + - uid: 10352 components: - type: Transform pos: 18.5,6.5 parent: 2 - - uid: 16192 + - uid: 10353 components: - type: Transform pos: 18.5,-5.5 parent: 2 - - uid: 16193 + - uid: 10354 components: - type: Transform pos: 18.5,1.5 parent: 2 - - uid: 16201 + - uid: 10355 components: - type: Transform pos: 18.5,-1.5 parent: 2 - - uid: 16202 + - uid: 10356 components: - type: Transform pos: 18.5,-0.5 parent: 2 - - uid: 16220 + - uid: 10357 components: - type: Transform pos: 19.5,-26.5 parent: 2 - - uid: 16222 + - uid: 10358 components: - type: Transform pos: 19.5,-27.5 parent: 2 - - uid: 16224 + - uid: 10359 components: - type: Transform pos: 20.5,-29.5 parent: 2 - - uid: 16226 + - uid: 10360 components: - type: Transform pos: 20.5,-30.5 parent: 2 - - uid: 16227 + - uid: 10361 components: - type: Transform pos: 21.5,-32.5 parent: 2 - - uid: 16228 + - uid: 10362 components: - type: Transform pos: 21.5,-34.5 parent: 2 - - uid: 16229 + - uid: 10363 components: - type: Transform pos: 21.5,-35.5 parent: 2 - - uid: 16230 + - uid: 10364 components: - type: Transform pos: 21.5,-36.5 parent: 2 - - uid: 16231 + - uid: 10365 components: - type: Transform pos: 21.5,-38.5 parent: 2 - - uid: 16232 + - uid: 10366 components: - type: Transform pos: 21.5,-39.5 parent: 2 - - uid: 16233 + - uid: 10367 components: - type: Transform pos: 21.5,-40.5 parent: 2 - - uid: 16234 + - uid: 10368 components: - type: Transform pos: 20.5,-44.5 parent: 2 - - uid: 16235 + - uid: 10369 components: - type: Transform pos: 20.5,-43.5 parent: 2 - - uid: 16236 + - uid: 10370 components: - type: Transform pos: 21.5,-52.5 parent: 2 - - uid: 16237 + - uid: 10371 components: - type: Transform pos: 21.5,-53.5 parent: 2 - - uid: 16238 + - uid: 10372 components: - type: Transform pos: 21.5,-54.5 parent: 2 - - uid: 16239 + - uid: 10373 components: - type: Transform pos: 20.5,-56.5 parent: 2 - - uid: 16240 + - uid: 10374 components: - type: Transform pos: 20.5,-57.5 parent: 2 - - uid: 16241 + - uid: 10375 components: - type: Transform pos: 20.5,-58.5 parent: 2 - - uid: 16242 + - uid: 10376 components: - type: Transform pos: 20.5,-60.5 parent: 2 - - uid: 16243 + - uid: 10377 components: - type: Transform pos: 20.5,-61.5 parent: 2 - - uid: 16244 + - uid: 10378 components: - type: Transform pos: 18.5,-97.5 parent: 2 - - uid: 16245 + - uid: 10379 components: - type: Transform pos: 21.5,-81.5 parent: 2 - - uid: 16246 + - uid: 10380 components: - type: Transform pos: 19.5,-66.5 parent: 2 - - uid: 16247 + - uid: 10381 components: - type: Transform pos: 19.5,-67.5 parent: 2 - - uid: 16248 + - uid: 10382 components: - type: Transform pos: 19.5,-68.5 parent: 2 - - uid: 16249 + - uid: 10383 components: - type: Transform pos: 19.5,-72.5 parent: 2 - - uid: 16250 + - uid: 10384 components: - type: Transform pos: 19.5,-71.5 parent: 2 - - uid: 16251 + - uid: 10385 components: - type: Transform pos: 21.5,-80.5 parent: 2 - - uid: 16252 + - uid: 10386 components: - type: Transform pos: 20.5,-83.5 parent: 2 - - uid: 16253 + - uid: 10387 components: - type: Transform pos: 20.5,-84.5 parent: 2 - - uid: 16254 + - uid: 10388 components: - type: Transform pos: 20.5,-85.5 parent: 2 - - uid: 16255 + - uid: 10389 components: - type: Transform pos: 20.5,-86.5 parent: 2 - - uid: 16256 + - uid: 10390 components: - type: Transform pos: 18.5,-98.5 parent: 2 - - uid: 16257 + - uid: 10391 components: - type: Transform pos: 19.5,-91.5 parent: 2 - - uid: 16258 + - uid: 10392 components: - type: Transform pos: 19.5,-92.5 parent: 2 - - uid: 16259 + - uid: 10393 components: - type: Transform pos: 19.5,-93.5 parent: 2 - - uid: 16260 + - uid: 10394 components: - type: Transform pos: 21.5,-106.5 parent: 2 - - uid: 16261 + - uid: 10395 components: - type: Transform pos: 18.5,-124.5 parent: 2 - - uid: 16262 + - uid: 10396 components: - type: Transform pos: 20.5,-109.5 parent: 2 - - uid: 16263 + - uid: 10397 components: - type: Transform pos: 20.5,-110.5 parent: 2 - - uid: 16264 + - uid: 10398 components: - type: Transform pos: 20.5,-111.5 parent: 2 - - uid: 16265 + - uid: 10399 components: - type: Transform pos: 20.5,-113.5 parent: 2 - - uid: 16266 + - uid: 10400 components: - type: Transform pos: 19.5,-117.5 parent: 2 - - uid: 16267 + - uid: 10401 components: - type: Transform pos: 19.5,-118.5 parent: 2 - - uid: 16268 + - uid: 10402 components: - type: Transform pos: 19.5,-119.5 parent: 2 - - uid: 16269 + - uid: 10403 components: - type: Transform pos: 18.5,-125.5 parent: 2 - - uid: 16270 + - uid: 10404 components: - type: Transform pos: -20.5,-133.5 parent: 2 - - uid: 16271 + - uid: 10405 components: - type: Transform pos: -20.5,-135.5 parent: 2 - - uid: 16272 + - uid: 10406 components: - type: Transform pos: -19.5,-139.5 parent: 2 - - uid: 16273 + - uid: 10407 components: - type: Transform pos: -19.5,-140.5 parent: 2 - - uid: 16274 + - uid: 10408 components: - type: Transform pos: -19.5,-142.5 parent: 2 - - uid: 16275 + - uid: 10409 components: - type: Transform pos: -19.5,-143.5 parent: 2 - - uid: 16276 + - uid: 10410 components: - type: Transform pos: -18.5,-145.5 parent: 2 - - uid: 16277 + - uid: 10411 components: - type: Transform pos: -18.5,-146.5 parent: 2 - - uid: 16278 + - uid: 10412 components: - type: Transform pos: -18.5,-147.5 parent: 2 - - uid: 16279 + - uid: 10413 components: - type: Transform pos: -18.5,-149.5 parent: 2 - - uid: 16280 + - uid: 10414 components: - type: Transform pos: -18.5,-150.5 parent: 2 - - uid: 16281 + - uid: 10415 components: - type: Transform pos: -17.5,-151.5 parent: 2 - - uid: 16282 + - uid: 10416 components: - type: Transform pos: -17.5,-152.5 parent: 2 - - uid: 16283 + - uid: 10417 components: - type: Transform pos: -17.5,-153.5 parent: 2 - - uid: 16284 + - uid: 10418 components: - type: Transform pos: -17.5,-154.5 parent: 2 - - uid: 16295 + - uid: 10419 components: - type: Transform pos: -19.5,-164.5 parent: 2 - - uid: 16317 + - uid: 10420 components: - type: Transform pos: -20.5,-160.5 parent: 2 - - uid: 16318 + - uid: 10421 components: - type: Transform pos: -20.5,-161.5 parent: 2 - - uid: 16319 + - uid: 10422 components: - type: Transform pos: -20.5,-162.5 parent: 2 - - uid: 16320 + - uid: 10423 components: - type: Transform pos: -19.5,-165.5 parent: 2 - - uid: 16321 + - uid: 10424 components: - type: Transform pos: -19.5,-166.5 parent: 2 - - uid: 16322 + - uid: 10425 components: - type: Transform pos: -19.5,-169.5 parent: 2 - - uid: 16323 + - uid: 10426 components: - type: Transform pos: -19.5,-168.5 parent: 2 - - uid: 16324 + - uid: 10427 components: - type: Transform pos: -18.5,-172.5 parent: 2 - - uid: 16325 + - uid: 10428 components: - type: Transform pos: -18.5,-173.5 parent: 2 - - uid: 16326 + - uid: 10429 components: - type: Transform pos: -18.5,-176.5 parent: 2 - - uid: 16327 + - uid: 10430 components: - type: Transform pos: -18.5,-175.5 parent: 2 - - uid: 16328 + - uid: 10431 components: - type: Transform pos: -17.5,-180.5 parent: 2 - - uid: 16329 + - uid: 10432 components: - type: Transform pos: -17.5,-179.5 parent: 2 - - uid: 16344 + - uid: 10433 components: - type: Transform pos: 19.5,-170.5 parent: 2 - - uid: 16345 + - uid: 10434 components: - type: Transform pos: 19.5,-171.5 parent: 2 - - uid: 16364 + - uid: 10435 components: - type: Transform pos: 18.5,-179.5 parent: 2 - - uid: 16365 + - uid: 10436 components: - type: Transform pos: 18.5,-178.5 parent: 2 - - uid: 16366 + - uid: 10437 components: - type: Transform pos: 18.5,-177.5 parent: 2 - - uid: 16367 + - uid: 10438 components: - type: Transform pos: 19.5,-175.5 parent: 2 - - uid: 16368 + - uid: 10439 components: - type: Transform pos: 19.5,-174.5 parent: 2 - - uid: 16369 + - uid: 10440 components: - type: Transform pos: 19.5,-173.5 parent: 2 - - uid: 16370 + - uid: 10441 components: - type: Transform pos: 20.5,-168.5 parent: 2 - - uid: 16371 + - uid: 10442 components: - type: Transform pos: 20.5,-167.5 parent: 2 - - uid: 16372 + - uid: 10443 components: - type: Transform pos: 20.5,-164.5 parent: 2 - - uid: 16374 + - uid: 10444 components: - type: Transform pos: 20.5,-163.5 parent: 2 - - uid: 16375 + - uid: 10445 components: - type: Transform pos: 20.5,-162.5 parent: 2 - - uid: 16376 + - uid: 10446 components: - type: Transform pos: 21.5,-160.5 parent: 2 - - uid: 16377 + - uid: 10447 components: - type: Transform pos: 21.5,-159.5 parent: 2 - - uid: 16378 + - uid: 10448 components: - type: Transform pos: 21.5,-161.5 parent: 2 - - uid: 16393 + - uid: 10449 components: - type: Transform pos: 22.5,-187.5 parent: 2 - - uid: 16409 + - uid: 10450 components: - type: Transform pos: 22.5,-188.5 parent: 2 - - uid: 16410 + - uid: 10451 components: - type: Transform pos: 22.5,-189.5 parent: 2 - - uid: 16411 + - uid: 10452 components: - type: Transform pos: 21.5,-191.5 parent: 2 - - uid: 16412 + - uid: 10453 components: - type: Transform pos: 21.5,-192.5 parent: 2 - - uid: 16413 + - uid: 10454 components: - type: Transform pos: 21.5,-193.5 parent: 2 - - uid: 16414 + - uid: 10455 components: - type: Transform pos: -17.5,-207.5 parent: 2 - - uid: 16415 + - uid: 10456 components: - type: Transform pos: 20.5,-198.5 parent: 2 - - uid: 16416 + - uid: 10457 components: - type: Transform pos: 20.5,-199.5 parent: 2 - - uid: 16417 + - uid: 10458 components: - type: Transform pos: 20.5,-200.5 parent: 2 - - uid: 16418 + - uid: 10459 components: - type: Transform pos: 19.5,-204.5 parent: 2 - - uid: 16419 + - uid: 10460 components: - type: Transform pos: 19.5,-205.5 parent: 2 - - uid: 16420 + - uid: 10461 components: - type: Transform pos: 19.5,-206.5 parent: 2 - - uid: 16421 + - uid: 10462 components: - type: Transform pos: 19.5,-207.5 parent: 2 - - uid: 16422 + - uid: 10463 components: - type: Transform pos: 20.5,-203.5 parent: 2 - - uid: 16423 + - uid: 10464 components: - type: Transform pos: 20.5,-202.5 parent: 2 - - uid: 16424 + - uid: 10465 components: - type: Transform pos: 19.5,-203.5 parent: 2 - - uid: 16426 + - uid: 10466 components: - type: Transform pos: -20.5,-187.5 parent: 2 - - uid: 16456 + - uid: 10467 components: - type: Transform pos: -20.5,-188.5 parent: 2 - - uid: 16457 + - uid: 10468 components: - type: Transform pos: -20.5,-189.5 parent: 2 - - uid: 16458 + - uid: 10469 components: - type: Transform pos: -19.5,-191.5 parent: 2 - - uid: 16459 + - uid: 10470 components: - type: Transform pos: -19.5,-192.5 parent: 2 - - uid: 16460 + - uid: 10471 components: - type: Transform pos: -19.5,-193.5 parent: 2 - - uid: 16461 + - uid: 10472 components: - type: Transform pos: -18.5,-198.5 parent: 2 - - uid: 16462 + - uid: 10473 components: - type: Transform pos: -19.5,-195.5 parent: 2 - - uid: 16463 + - uid: 10474 components: - type: Transform pos: -19.5,-196.5 parent: 2 - - uid: 16464 + - uid: 10475 components: - type: Transform pos: -18.5,-199.5 parent: 2 - - uid: 16465 + - uid: 10476 components: - type: Transform pos: -18.5,-200.5 parent: 2 - - uid: 16466 + - uid: 10477 components: - type: Transform pos: -17.5,-205.5 parent: 2 - - uid: 16467 + - uid: 10478 components: - type: Transform pos: -17.5,-206.5 parent: 2 - - uid: 16468 + - uid: 10479 components: - type: Transform pos: -18.5,-203.5 parent: 2 - - uid: 16469 + - uid: 10480 components: - type: Transform pos: -18.5,-202.5 parent: 2 - - uid: 16611 + - uid: 10481 components: - type: Transform pos: -15.5,-357.5 parent: 2 - - uid: 16612 + - uid: 10482 components: - type: Transform pos: -15.5,-358.5 parent: 2 - - uid: 16613 + - uid: 10483 components: - type: Transform pos: -14.5,-361.5 parent: 2 - - uid: 16614 + - uid: 10484 components: - type: Transform pos: -14.5,-362.5 parent: 2 - - uid: 16615 + - uid: 10485 components: - type: Transform pos: -14.5,-363.5 parent: 2 - - uid: 16616 + - uid: 10486 components: - type: Transform pos: -14.5,-366.5 parent: 2 - - uid: 16617 + - uid: 10487 components: - type: Transform pos: -13.5,-369.5 parent: 2 - - uid: 16618 + - uid: 10488 components: - type: Transform pos: -13.5,-370.5 parent: 2 - - uid: 16619 + - uid: 10489 components: - type: Transform pos: -13.5,-373.5 parent: 2 - - uid: 16620 + - uid: 10490 components: - type: Transform pos: -13.5,-372.5 parent: 2 - - uid: 16621 + - uid: 10491 components: - type: Transform pos: -12.5,-375.5 parent: 2 - - uid: 16622 + - uid: 10492 components: - type: Transform pos: -12.5,-376.5 parent: 2 - - uid: 16625 + - uid: 10493 components: - type: Transform pos: 13.5,-377.5 parent: 2 - - uid: 16626 + - uid: 10494 components: - type: Transform pos: 13.5,-376.5 parent: 2 - - uid: 16627 + - uid: 10495 components: - type: Transform pos: 13.5,-375.5 parent: 2 - - uid: 16629 + - uid: 10496 components: - type: Transform pos: 14.5,-371.5 parent: 2 - - uid: 16630 + - uid: 10497 components: - type: Transform pos: 14.5,-370.5 parent: 2 - - uid: 16631 + - uid: 10498 components: - type: Transform pos: 14.5,-369.5 parent: 2 - - uid: 16632 + - uid: 10499 components: - type: Transform pos: 14.5,-367.5 parent: 2 - - uid: 16633 + - uid: 10500 components: - type: Transform pos: 15.5,-366.5 parent: 2 - - uid: 16634 + - uid: 10501 components: - type: Transform pos: 15.5,-365.5 parent: 2 - - uid: 16635 + - uid: 10502 components: - type: Transform pos: 15.5,-364.5 parent: 2 - - uid: 16636 + - uid: 10503 components: - type: Transform pos: 15.5,-361.5 parent: 2 - - uid: 16637 + - uid: 10504 components: - type: Transform pos: 15.5,-360.5 parent: 2 - - uid: 16638 + - uid: 10505 components: - type: Transform pos: 15.5,-359.5 parent: 2 - - uid: 16639 + - uid: 10506 components: - type: Transform pos: 16.5,-357.5 parent: 2 - - uid: 16640 + - uid: 10507 components: - type: Transform pos: 16.5,-356.5 parent: 2 - - uid: 16730 + - uid: 10508 components: - type: Transform pos: 20.5,-293.5 parent: 2 - - uid: 16731 + - uid: 10509 components: - type: Transform pos: 22.5,-293.5 parent: 2 - - uid: 16732 + - uid: 10510 components: - type: Transform pos: 24.5,-293.5 parent: 2 - - uid: 16733 + - uid: 10511 components: - type: Transform pos: 23.5,-294.5 parent: 2 - - uid: 16734 + - uid: 10512 components: - type: Transform pos: 21.5,-294.5 parent: 2 - - uid: 16735 + - uid: 10513 components: - type: Transform pos: 19.5,-294.5 parent: 2 - - uid: 16736 + - uid: 10514 components: - type: Transform pos: 18.5,-294.5 parent: 2 - - uid: 16737 + - uid: 10515 components: - type: Transform pos: 25.5,-294.5 parent: 2 - - uid: 16738 + - uid: 10516 components: - type: Transform pos: 26.5,-294.5 parent: 2 - - uid: 16783 + - uid: 10517 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-314.5 parent: 2 - - uid: 16784 + - uid: 10518 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-313.5 parent: 2 - - uid: 16785 + - uid: 10519 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-310.5 parent: 2 - - uid: 16786 + - uid: 10520 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-309.5 parent: 2 - - uid: 16787 + - uid: 10521 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-308.5 parent: 2 - - uid: 16788 + - uid: 10522 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-306.5 parent: 2 - - uid: 16789 + - uid: 10523 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-305.5 parent: 2 - - uid: 16790 + - uid: 10524 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-304.5 parent: 2 - - uid: 16791 + - uid: 10525 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-303.5 parent: 2 - - uid: 16792 + - uid: 10526 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-302.5 parent: 2 - - uid: 16793 + - uid: 10527 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-315.5 parent: 2 - - uid: 16794 + - uid: 10528 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-315.5 parent: 2 - - uid: 16795 + - uid: 10529 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-316.5 parent: 2 - - uid: 16796 + - uid: 10530 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-318.5 parent: 2 - - uid: 16797 + - uid: 10531 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-321.5 parent: 2 - - uid: 16802 + - uid: 10532 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-301.5 parent: 2 - - uid: 16803 + - uid: 10533 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-300.5 parent: 2 - - uid: 16804 + - uid: 10534 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-297.5 parent: 2 - - uid: 16805 + - uid: 10535 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-296.5 parent: 2 - - uid: 16806 + - uid: 10536 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-295.5 parent: 2 - - uid: 16807 + - uid: 10537 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-293.5 parent: 2 - - uid: 16808 + - uid: 10538 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-298.5 parent: 2 - - uid: 16847 + - uid: 10539 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-295.5 parent: 2 - - uid: 16848 + - uid: 10540 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-295.5 parent: 2 - - uid: 16849 + - uid: 10541 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-296.5 parent: 2 - - uid: 16850 + - uid: 10542 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-297.5 parent: 2 - - uid: 16851 + - uid: 10543 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-299.5 parent: 2 - - uid: 16852 + - uid: 10544 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-300.5 parent: 2 - - uid: 16853 + - uid: 10545 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-302.5 parent: 2 - - uid: 16854 + - uid: 10546 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-303.5 parent: 2 - - uid: 16855 + - uid: 10547 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-304.5 parent: 2 - - uid: 16856 + - uid: 10548 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-306.5 parent: 2 - - uid: 16857 + - uid: 10549 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-307.5 parent: 2 - - uid: 16858 + - uid: 10550 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-309.5 parent: 2 - - uid: 16859 + - uid: 10551 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-310.5 parent: 2 - - uid: 16860 + - uid: 10552 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-312.5 parent: 2 - - uid: 16861 + - uid: 10553 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-313.5 parent: 2 - - uid: 16862 + - uid: 10554 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-314.5 parent: 2 - - uid: 16863 + - uid: 10555 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-315.5 parent: 2 - - uid: 16864 + - uid: 10556 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-317.5 parent: 2 - - uid: 16865 + - uid: 10557 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-319.5 parent: 2 - - uid: 16866 + - uid: 10558 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-320.5 parent: 2 - - uid: 16905 + - uid: 10559 components: - type: Transform pos: -15.5,-168.5 parent: 2 - - uid: 16907 + - uid: 10560 components: - type: Transform pos: -15.5,-166.5 parent: 2 - - uid: 16908 + - uid: 10561 components: - type: Transform pos: -15.5,-165.5 parent: 2 - - uid: 16909 + - uid: 10562 components: - type: Transform pos: -15.5,-164.5 parent: 2 - - uid: 16910 + - uid: 10563 components: - type: Transform pos: -15.5,-163.5 parent: 2 - - uid: 16911 + - uid: 10564 components: - type: Transform pos: -15.5,-162.5 parent: 2 - - uid: 16912 + - uid: 10565 components: - type: Transform pos: -15.5,-161.5 parent: 2 - proto: GrilleBroken entities: - - uid: 2249 + - uid: 10566 components: - type: Transform pos: 7.5,-148.5 parent: 2 - - uid: 3030 + - uid: 10567 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-148.5 parent: 2 - - uid: 3871 + - uid: 10568 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-202.5 parent: 2 - - uid: 3873 + - uid: 10569 components: - type: Transform pos: -3.5,-202.5 parent: 2 - - uid: 8098 + - uid: 10570 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-247.5 parent: 2 - - uid: 12091 + - uid: 10571 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-249.5 parent: 2 - - uid: 12107 + - uid: 10572 components: - type: Transform rot: -1.5707963267948966 rad @@ -71247,231 +70699,231 @@ entities: parent: 2 - proto: GrilleDiagonal entities: - - uid: 14 + - uid: 10573 components: - type: Transform pos: -1.5,4.5 parent: 2 - - uid: 1491 + - uid: 10574 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 1492 + - uid: 10575 components: - type: Transform pos: -10.5,-84.5 parent: 2 - - uid: 1493 + - uid: 10576 components: - type: Transform pos: -9.5,-83.5 parent: 2 - - uid: 1659 + - uid: 10577 components: - type: Transform pos: -6.5,-52.5 parent: 2 - - uid: 2791 + - uid: 10578 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 2 - - uid: 2794 + - uid: 10579 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-88.5 parent: 2 - - uid: 2842 + - uid: 10580 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-89.5 parent: 2 - - uid: 2855 + - uid: 10581 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-90.5 parent: 2 - - uid: 2907 + - uid: 10582 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-84.5 parent: 2 - - uid: 2942 + - uid: 10583 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-88.5 parent: 2 - - uid: 3158 + - uid: 10584 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-122.5 parent: 2 - - uid: 4511 + - uid: 10585 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-217.5 parent: 2 - - uid: 4649 + - uid: 10586 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,3.5 parent: 2 - - uid: 6879 + - uid: 10587 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-309.5 parent: 2 - - uid: 7499 + - uid: 10588 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-89.5 parent: 2 - - uid: 7547 + - uid: 10589 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-83.5 parent: 2 - - uid: 7554 + - uid: 10590 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 2 - - uid: 7679 + - uid: 10591 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-193.5 parent: 2 - - uid: 7685 + - uid: 10592 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-202.5 parent: 2 - - uid: 7754 + - uid: 10593 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-274.5 parent: 2 - - uid: 7756 + - uid: 10594 components: - type: Transform pos: -3.5,-272.5 parent: 2 - - uid: 7848 + - uid: 10595 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-191.5 parent: 2 - - uid: 7896 + - uid: 10596 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-191.5 parent: 2 - - uid: 7899 + - uid: 10597 components: - type: Transform pos: -9.5,-189.5 parent: 2 - - uid: 7900 + - uid: 10598 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-189.5 parent: 2 - - uid: 8197 + - uid: 10599 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-309.5 parent: 2 - - uid: 8217 + - uid: 10600 components: - type: Transform pos: -10.5,-307.5 parent: 2 - - uid: 8520 + - uid: 10601 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-273.5 parent: 2 - - uid: 8533 + - uid: 10602 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-284.5 parent: 2 - - uid: 8536 + - uid: 10603 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-285.5 parent: 2 - - uid: 8641 + - uid: 10604 components: - type: Transform pos: -1.5,-275.5 parent: 2 - - uid: 8657 + - uid: 10605 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-286.5 parent: 2 - - uid: 8672 + - uid: 10606 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-283.5 parent: 2 - - uid: 9955 + - uid: 10607 components: - type: Transform pos: 2.5,-309.5 parent: 2 - - uid: 9956 + - uid: 10608 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-305.5 parent: 2 - - uid: 10054 + - uid: 10609 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-309.5 parent: 2 - - uid: 10059 + - uid: 10610 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-305.5 parent: 2 - - uid: 10065 + - uid: 10611 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-320.5 parent: 2 - - uid: 13329 + - uid: 10612 components: - type: Transform rot: 3.141592653589793 rad @@ -71479,3048 +70931,3048 @@ entities: parent: 2 - proto: GrilleSpawner entities: - - uid: 1603 + - uid: 10613 components: - type: Transform pos: 22.5,-327.5 parent: 2 - - uid: 1692 + - uid: 10614 components: - type: Transform pos: 20.5,-338.5 parent: 2 - - uid: 1693 + - uid: 10615 components: - type: Transform pos: 21.5,-331.5 parent: 2 - - uid: 2939 + - uid: 10616 components: - type: Transform pos: 22.5,-326.5 parent: 2 - - uid: 8941 + - uid: 10617 components: - type: Transform pos: 20.5,-343.5 parent: 2 - - uid: 8966 + - uid: 10618 components: - type: Transform pos: 19.5,-347.5 parent: 2 - - uid: 8983 + - uid: 10619 components: - type: Transform pos: 19.5,-345.5 parent: 2 - - uid: 8985 + - uid: 10620 components: - type: Transform pos: -21.5,-327.5 parent: 2 - - uid: 8986 + - uid: 10621 components: - type: Transform pos: 20.5,-342.5 parent: 2 - - uid: 8987 + - uid: 10622 components: - type: Transform pos: 18.5,-349.5 parent: 2 - - uid: 8998 + - uid: 10623 components: - type: Transform pos: 19.5,-348.5 parent: 2 - - uid: 9035 + - uid: 10624 components: - type: Transform pos: -21.5,-326.5 parent: 2 - - uid: 9039 + - uid: 10625 components: - type: Transform pos: 18.5,-350.5 parent: 2 - - uid: 9062 + - uid: 10626 components: - type: Transform pos: -21.5,-328.5 parent: 2 - - uid: 10171 + - uid: 10627 components: - type: Transform pos: -20.5,-337.5 parent: 2 - - uid: 11953 + - uid: 10628 components: - type: Transform pos: 22.5,-330.5 parent: 2 - - uid: 11988 + - uid: 10629 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-323.5 parent: 2 - - uid: 12024 + - uid: 10630 components: - type: Transform pos: -20.5,-335.5 parent: 2 - - uid: 12026 + - uid: 10631 components: - type: Transform pos: -20.5,-333.5 parent: 2 - - uid: 12029 + - uid: 10632 components: - type: Transform pos: -20.5,-336.5 parent: 2 - - uid: 12030 + - uid: 10633 components: - type: Transform pos: -19.5,-344.5 parent: 2 - - uid: 12081 + - uid: 10634 components: - type: Transform pos: -19.5,-342.5 parent: 2 - - uid: 12087 + - uid: 10635 components: - type: Transform pos: -18.5,-347.5 parent: 2 - - uid: 12088 + - uid: 10636 components: - type: Transform pos: -17.5,-350.5 parent: 2 - - uid: 12098 + - uid: 10637 components: - type: Transform pos: -20.5,-334.5 parent: 2 - - uid: 12109 + - uid: 10638 components: - type: Transform pos: -18.5,-345.5 parent: 2 - - uid: 12113 + - uid: 10639 components: - type: Transform pos: -19.5,-343.5 parent: 2 - - uid: 12576 + - uid: 10640 components: - type: Transform pos: -19.5,-339.5 parent: 2 - - uid: 12689 + - uid: 10641 components: - type: Transform pos: -17.5,-349.5 parent: 2 - - uid: 12952 + - uid: 10642 components: - type: Transform pos: -19.5,-338.5 parent: 2 - - uid: 13007 + - uid: 10643 components: - type: Transform pos: -18.5,-346.5 parent: 2 - - uid: 13162 + - uid: 10644 components: - type: Transform pos: -19.5,-340.5 parent: 2 - - uid: 13195 + - uid: 10645 components: - type: Transform pos: -19.5,-341.5 parent: 2 - - uid: 13277 + - uid: 10646 components: - type: Transform pos: 22.5,-325.5 parent: 2 - - uid: 13279 + - uid: 10647 components: - type: Transform pos: 21.5,-332.5 parent: 2 - - uid: 13281 + - uid: 10648 components: - type: Transform pos: 21.5,-337.5 parent: 2 - - uid: 13282 + - uid: 10649 components: - type: Transform pos: -21.5,-329.5 parent: 2 - - uid: 13457 + - uid: 10650 components: - type: Transform pos: 21.5,-335.5 parent: 2 - - uid: 13821 + - uid: 10651 components: - type: Transform pos: 21.5,-333.5 parent: 2 - - uid: 13962 + - uid: 10652 components: - type: Transform pos: 22.5,-329.5 parent: 2 - - uid: 13994 + - uid: 10653 components: - type: Transform pos: 22.5,-328.5 parent: 2 - - uid: 14006 + - uid: 10654 components: - type: Transform pos: 21.5,-334.5 parent: 2 - - uid: 14012 + - uid: 10655 components: - type: Transform pos: 20.5,-339.5 parent: 2 - - uid: 14023 + - uid: 10656 components: - type: Transform pos: -18.5,-348.5 parent: 2 - - uid: 14225 + - uid: 10657 components: - type: Transform pos: 20.5,-341.5 parent: 2 - - uid: 14227 + - uid: 10658 components: - type: Transform pos: 21.5,-336.5 parent: 2 - - uid: 14612 + - uid: 10659 components: - type: Transform pos: -21.5,-325.5 parent: 2 - - uid: 14615 + - uid: 10660 components: - type: Transform pos: -20.5,-331.5 parent: 2 - - uid: 14616 + - uid: 10661 components: - type: Transform pos: -21.5,-330.5 parent: 2 - - uid: 14618 + - uid: 10662 components: - type: Transform pos: -20.5,-332.5 parent: 2 - - uid: 14685 + - uid: 10663 components: - type: Transform pos: 19.5,-346.5 parent: 2 - - uid: 14686 + - uid: 10664 components: - type: Transform pos: 20.5,-344.5 parent: 2 - - uid: 14785 + - uid: 10665 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-316.5 parent: 2 - - uid: 14874 + - uid: 10666 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-314.5 parent: 2 - - uid: 14875 + - uid: 10667 components: - type: Transform pos: 16.5,-360.5 parent: 2 - - uid: 14886 + - uid: 10668 components: - type: Transform pos: 15.5,-367.5 parent: 2 - - uid: 15692 + - uid: 10669 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-321.5 parent: 2 - - uid: 15784 + - uid: 10670 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-322.5 parent: 2 - - uid: 15851 + - uid: 10671 components: - type: Transform pos: 19.5,-18.5 parent: 2 - - uid: 15854 + - uid: 10672 components: - type: Transform pos: 19.5,-17.5 parent: 2 - - uid: 15855 + - uid: 10673 components: - type: Transform pos: 18.5,9.5 parent: 2 - - uid: 15856 + - uid: 10674 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,17.5 parent: 2 - - uid: 15857 + - uid: 10675 components: - type: Transform pos: 20.5,-68.5 parent: 2 - - uid: 15858 + - uid: 10676 components: - type: Transform pos: 20.5,-69.5 parent: 2 - - uid: 15859 + - uid: 10677 components: - type: Transform pos: 20.5,-67.5 parent: 2 - - uid: 15860 + - uid: 10678 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,18.5 parent: 2 - - uid: 15861 + - uid: 10679 components: - type: Transform pos: 19.5,-3.5 parent: 2 - - uid: 15862 + - uid: 10680 components: - type: Transform pos: 20.5,-66.5 parent: 2 - - uid: 15863 + - uid: 10681 components: - type: Transform pos: 19.5,-4.5 parent: 2 - - uid: 15864 + - uid: 10682 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,17.5 parent: 2 - - uid: 15865 + - uid: 10683 components: - type: Transform pos: 19.5,-6.5 parent: 2 - - uid: 15866 + - uid: 10684 components: - type: Transform pos: 19.5,-5.5 parent: 2 - - uid: 15867 + - uid: 10685 components: - type: Transform pos: 19.5,-8.5 parent: 2 - - uid: 15868 + - uid: 10686 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,19.5 parent: 2 - - uid: 15869 + - uid: 10687 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,18.5 parent: 2 - - uid: 15870 + - uid: 10688 components: - type: Transform pos: 19.5,-7.5 parent: 2 - - uid: 15871 + - uid: 10689 components: - type: Transform pos: 19.5,-10.5 parent: 2 - - uid: 15872 + - uid: 10690 components: - type: Transform pos: 19.5,-9.5 parent: 2 - - uid: 15873 + - uid: 10691 components: - type: Transform pos: 19.5,-14.5 parent: 2 - - uid: 15874 + - uid: 10692 components: - type: Transform pos: 19.5,-11.5 parent: 2 - - uid: 15875 + - uid: 10693 components: - type: Transform pos: 19.5,-15.5 parent: 2 - - uid: 15876 + - uid: 10694 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,19.5 parent: 2 - - uid: 15877 + - uid: 10695 components: - type: Transform pos: 19.5,-12.5 parent: 2 - - uid: 15878 + - uid: 10696 components: - type: Transform pos: 19.5,-16.5 parent: 2 - - uid: 15879 + - uid: 10697 components: - type: Transform pos: 19.5,-13.5 parent: 2 - - uid: 15880 + - uid: 10698 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,19.5 parent: 2 - - uid: 15881 + - uid: 10699 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,17.5 parent: 2 - - uid: 15882 + - uid: 10700 components: - type: Transform pos: 12.5,2.5 parent: 2 - - uid: 15883 + - uid: 10701 components: - type: Transform pos: 18.5,-102.5 parent: 2 - - uid: 15884 + - uid: 10702 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,19.5 parent: 2 - - uid: 15885 + - uid: 10703 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,18.5 parent: 2 - - uid: 15886 + - uid: 10704 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,17.5 parent: 2 - - uid: 15887 + - uid: 10705 components: - type: Transform pos: 19.5,-99.5 parent: 2 - - uid: 15888 + - uid: 10706 components: - type: Transform pos: 18.5,-100.5 parent: 2 - - uid: 15889 + - uid: 10707 components: - type: Transform pos: 19.5,-100.5 parent: 2 - - uid: 15890 + - uid: 10708 components: - type: Transform pos: 19.5,-97.5 parent: 2 - - uid: 15891 + - uid: 10709 components: - type: Transform pos: 18.5,-101.5 parent: 2 - - uid: 15892 + - uid: 10710 components: - type: Transform pos: 19.5,-98.5 parent: 2 - - uid: 15893 + - uid: 10711 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 - - uid: 15894 + - uid: 10712 components: - type: Transform pos: 20.5,-93.5 parent: 2 - - uid: 15895 + - uid: 10713 components: - type: Transform pos: 11.5,4.5 parent: 2 - - uid: 15896 + - uid: 10714 components: - type: Transform pos: 19.5,-96.5 parent: 2 - - uid: 15897 + - uid: 10715 components: - type: Transform pos: 20.5,-92.5 parent: 2 - - uid: 15898 + - uid: 10716 components: - type: Transform pos: 12.5,3.5 parent: 2 - - uid: 15899 + - uid: 10717 components: - type: Transform pos: 20.5,-96.5 parent: 2 - - uid: 15900 + - uid: 10718 components: - type: Transform pos: 20.5,-94.5 parent: 2 - - uid: 15901 + - uid: 10719 components: - type: Transform pos: 20.5,-95.5 parent: 2 - - uid: 15908 + - uid: 10720 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-24.5 parent: 2 - - uid: 15909 + - uid: 10721 components: - type: Transform pos: -18.5,-0.5 parent: 2 - - uid: 15916 + - uid: 10722 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-25.5 parent: 2 - - uid: 15917 + - uid: 10723 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-25.5 parent: 2 - - uid: 15918 + - uid: 10724 components: - type: Transform pos: 19.5,-23.5 parent: 2 - - uid: 15919 + - uid: 10725 components: - type: Transform pos: -18.5,3.5 parent: 2 - - uid: 15920 + - uid: 10726 components: - type: Transform pos: -18.5,1.5 parent: 2 - - uid: 15921 + - uid: 10727 components: - type: Transform pos: -18.5,0.5 parent: 2 - - uid: 15922 + - uid: 10728 components: - type: Transform pos: -18.5,-9.5 parent: 2 - - uid: 15923 + - uid: 10729 components: - type: Transform pos: -18.5,-10.5 parent: 2 - - uid: 15928 + - uid: 10730 components: - type: Transform pos: 22.5,-41.5 parent: 2 - - uid: 15929 + - uid: 10731 components: - type: Transform pos: 22.5,-40.5 parent: 2 - - uid: 15930 + - uid: 10732 components: - type: Transform pos: 22.5,-42.5 parent: 2 - - uid: 15931 + - uid: 10733 components: - type: Transform pos: -18.5,4.5 parent: 2 - - uid: 15932 + - uid: 10734 components: - type: Transform pos: -18.5,2.5 parent: 2 - - uid: 15933 + - uid: 10735 components: - type: Transform pos: -18.5,6.5 parent: 2 - - uid: 15934 + - uid: 10736 components: - type: Transform pos: -18.5,5.5 parent: 2 - - uid: 15935 + - uid: 10737 components: - type: Transform pos: -18.5,8.5 parent: 2 - - uid: 15936 + - uid: 10738 components: - type: Transform pos: -18.5,7.5 parent: 2 - - uid: 15937 + - uid: 10739 components: - type: Transform pos: 22.5,-39.5 parent: 2 - - uid: 15938 + - uid: 10740 components: - type: Transform pos: 22.5,-38.5 parent: 2 - - uid: 15939 + - uid: 10741 components: - type: Transform pos: 22.5,-37.5 parent: 2 - - uid: 15941 + - uid: 10742 components: - type: Transform pos: 22.5,-36.5 parent: 2 - - uid: 15942 + - uid: 10743 components: - type: Transform pos: 22.5,-35.5 parent: 2 - - uid: 15945 + - uid: 10744 components: - type: Transform pos: -17.5,9.5 parent: 2 - - uid: 15946 + - uid: 10745 components: - type: Transform pos: 21.5,-109.5 parent: 2 - - uid: 15947 + - uid: 10746 components: - type: Transform pos: -17.5,10.5 parent: 2 - - uid: 15949 + - uid: 10747 components: - type: Transform pos: 19.5,5.5 parent: 2 - - uid: 15950 + - uid: 10748 components: - type: Transform pos: 19.5,6.5 parent: 2 - - uid: 15951 + - uid: 10749 components: - type: Transform pos: 19.5,4.5 parent: 2 - - uid: 15952 + - uid: 10750 components: - type: Transform pos: 19.5,8.5 parent: 2 - - uid: 15953 + - uid: 10751 components: - type: Transform pos: 19.5,7.5 parent: 2 - - uid: 15954 + - uid: 10752 components: - type: Transform pos: 19.5,3.5 parent: 2 - - uid: 15955 + - uid: 10753 components: - type: Transform pos: 19.5,2.5 parent: 2 - - uid: 15956 + - uid: 10754 components: - type: Transform pos: 19.5,1.5 parent: 2 - - uid: 15957 + - uid: 10755 components: - type: Transform pos: 19.5,0.5 parent: 2 - - uid: 15958 + - uid: 10756 components: - type: Transform pos: 19.5,-0.5 parent: 2 - - uid: 15959 + - uid: 10757 components: - type: Transform pos: 19.5,-1.5 parent: 2 - - uid: 15960 + - uid: 10758 components: - type: Transform pos: 19.5,-2.5 parent: 2 - - uid: 15963 + - uid: 10759 components: - type: Transform pos: -18.5,-7.5 parent: 2 - - uid: 15964 + - uid: 10760 components: - type: Transform pos: -18.5,-8.5 parent: 2 - - uid: 15965 + - uid: 10761 components: - type: Transform pos: -18.5,-5.5 parent: 2 - - uid: 15966 + - uid: 10762 components: - type: Transform pos: -18.5,-6.5 parent: 2 - - uid: 15970 + - uid: 10763 components: - type: Transform pos: -11.5,2.5 parent: 2 - - uid: 15971 + - uid: 10764 components: - type: Transform pos: 22.5,-108.5 parent: 2 - - uid: 15972 + - uid: 10765 components: - type: Transform pos: 21.5,-114.5 parent: 2 - - uid: 15973 + - uid: 10766 components: - type: Transform pos: -11.5,3.5 parent: 2 - - uid: 15974 + - uid: 10767 components: - type: Transform pos: 21.5,-113.5 parent: 2 - - uid: 15982 + - uid: 10768 components: - type: Transform pos: 21.5,-112.5 parent: 2 - - uid: 15983 + - uid: 10769 components: - type: Transform pos: 21.5,-110.5 parent: 2 - - uid: 15984 + - uid: 10770 components: - type: Transform pos: 21.5,-111.5 parent: 2 - - uid: 15985 + - uid: 10771 components: - type: Transform pos: -18.5,-4.5 parent: 2 - - uid: 15986 + - uid: 10772 components: - type: Transform pos: -18.5,-2.5 parent: 2 - - uid: 15987 + - uid: 10773 components: - type: Transform pos: -18.5,-3.5 parent: 2 - - uid: 15988 + - uid: 10774 components: - type: Transform pos: -18.5,-1.5 parent: 2 - - uid: 15989 + - uid: 10775 components: - type: Transform pos: 22.5,-106.5 parent: 2 - - uid: 15990 + - uid: 10776 components: - type: Transform pos: 22.5,-105.5 parent: 2 - - uid: 15991 + - uid: 10777 components: - type: Transform pos: 22.5,-107.5 parent: 2 - - uid: 15992 + - uid: 10778 components: - type: Transform pos: 22.5,-103.5 parent: 2 - - uid: 15993 + - uid: 10779 components: - type: Transform pos: -21.5,-55.5 parent: 2 - - uid: 15994 + - uid: 10780 components: - type: Transform pos: 22.5,-104.5 parent: 2 - - uid: 15995 + - uid: 10781 components: - type: Transform pos: -18.5,-11.5 parent: 2 - - uid: 15996 + - uid: 10782 components: - type: Transform pos: 22.5,-102.5 parent: 2 - - uid: 15997 + - uid: 10783 components: - type: Transform pos: -10.5,4.5 parent: 2 - - uid: 15998 + - uid: 10784 components: - type: Transform pos: 20.5,-119.5 parent: 2 - - uid: 15999 + - uid: 10785 components: - type: Transform pos: 20.5,-117.5 parent: 2 - - uid: 16000 + - uid: 10786 components: - type: Transform pos: 20.5,-118.5 parent: 2 - - uid: 16001 + - uid: 10787 components: - type: Transform pos: 20.5,-116.5 parent: 2 - - uid: 16002 + - uid: 10788 components: - type: Transform pos: -21.5,-53.5 parent: 2 - - uid: 16003 + - uid: 10789 components: - type: Transform pos: -21.5,-54.5 parent: 2 - - uid: 16004 + - uid: 10790 components: - type: Transform pos: -21.5,-52.5 parent: 2 - - uid: 16009 + - uid: 10791 components: - type: Transform pos: -20.5,-116.5 parent: 2 - - uid: 16010 + - uid: 10792 components: - type: Transform pos: -21.5,-105.5 parent: 2 - - uid: 16011 + - uid: 10793 components: - type: Transform pos: -21.5,-106.5 parent: 2 - - uid: 16012 + - uid: 10794 components: - type: Transform pos: -21.5,-107.5 parent: 2 - - uid: 16013 + - uid: 10795 components: - type: Transform pos: -21.5,-109.5 parent: 2 - - uid: 16014 + - uid: 10796 components: - type: Transform pos: -21.5,-108.5 parent: 2 - - uid: 16015 + - uid: 10797 components: - type: Transform pos: -17.5,-129.5 parent: 2 - - uid: 16016 + - uid: 10798 components: - type: Transform pos: -20.5,-114.5 parent: 2 - - uid: 16017 + - uid: 10799 components: - type: Transform pos: -20.5,-115.5 parent: 2 - - uid: 16018 + - uid: 10800 components: - type: Transform pos: -20.5,-113.5 parent: 2 - - uid: 16019 + - uid: 10801 components: - type: Transform pos: -20.5,-111.5 parent: 2 - - uid: 16020 + - uid: 10802 components: - type: Transform pos: -20.5,-110.5 parent: 2 - - uid: 16021 + - uid: 10803 components: - type: Transform pos: -20.5,-112.5 parent: 2 - - uid: 16022 + - uid: 10804 components: - type: Transform pos: -18.5,-154.5 parent: 2 - - uid: 16023 + - uid: 10805 components: - type: Transform pos: -19.5,-123.5 parent: 2 - - uid: 16024 + - uid: 10806 components: - type: Transform pos: -17.5,-128.5 parent: 2 - - uid: 16025 + - uid: 10807 components: - type: Transform pos: -18.5,-125.5 parent: 2 - - uid: 16026 + - uid: 10808 components: - type: Transform pos: -18.5,-124.5 parent: 2 - - uid: 16027 + - uid: 10809 components: - type: Transform pos: -18.5,-153.5 parent: 2 - - uid: 16028 + - uid: 10810 components: - type: Transform pos: -18.5,-152.5 parent: 2 - - uid: 16029 + - uid: 10811 components: - type: Transform pos: -18.5,-151.5 parent: 2 - - uid: 16030 + - uid: 10812 components: - type: Transform pos: -18.5,-127.5 parent: 2 - - uid: 16031 + - uid: 10813 components: - type: Transform pos: -19.5,-119.5 parent: 2 - - uid: 16032 + - uid: 10814 components: - type: Transform pos: -18.5,-126.5 parent: 2 - - uid: 16033 + - uid: 10815 components: - type: Transform pos: -19.5,-121.5 parent: 2 - - uid: 16034 + - uid: 10816 components: - type: Transform pos: -19.5,-150.5 parent: 2 - - uid: 16035 + - uid: 10817 components: - type: Transform pos: -19.5,-149.5 parent: 2 - - uid: 16036 + - uid: 10818 components: - type: Transform pos: -19.5,-148.5 parent: 2 - - uid: 16037 + - uid: 10819 components: - type: Transform pos: -19.5,-147.5 parent: 2 - - uid: 16038 + - uid: 10820 components: - type: Transform pos: -19.5,-146.5 parent: 2 - - uid: 16039 + - uid: 10821 components: - type: Transform pos: -19.5,-145.5 parent: 2 - - uid: 16040 + - uid: 10822 components: - type: Transform pos: -19.5,-144.5 parent: 2 - - uid: 16041 + - uid: 10823 components: - type: Transform pos: -20.5,-143.5 parent: 2 - - uid: 16042 + - uid: 10824 components: - type: Transform pos: -20.5,-142.5 parent: 2 - - uid: 16043 + - uid: 10825 components: - type: Transform pos: -20.5,-141.5 parent: 2 - - uid: 16044 + - uid: 10826 components: - type: Transform pos: -20.5,-140.5 parent: 2 - - uid: 16045 + - uid: 10827 components: - type: Transform pos: -20.5,-139.5 parent: 2 - - uid: 16046 + - uid: 10828 components: - type: Transform pos: -20.5,-138.5 parent: 2 - - uid: 16047 + - uid: 10829 components: - type: Transform pos: -20.5,-137.5 parent: 2 - - uid: 16048 + - uid: 10830 components: - type: Transform pos: -17.5,-155.5 parent: 2 - - uid: 16049 + - uid: 10831 components: - type: Transform pos: -21.5,-136.5 parent: 2 - - uid: 16050 + - uid: 10832 components: - type: Transform pos: -21.5,-135.5 parent: 2 - - uid: 16051 + - uid: 10833 components: - type: Transform pos: -21.5,-134.5 parent: 2 - - uid: 16052 + - uid: 10834 components: - type: Transform pos: -21.5,-133.5 parent: 2 - - uid: 16053 + - uid: 10835 components: - type: Transform pos: -21.5,-132.5 parent: 2 - - uid: 16054 + - uid: 10836 components: - type: Transform pos: -21.5,-131.5 parent: 2 - - uid: 16055 + - uid: 10837 components: - type: Transform pos: -21.5,-130.5 parent: 2 - - uid: 16056 + - uid: 10838 components: - type: Transform pos: -19.5,-117.5 parent: 2 - - uid: 16057 + - uid: 10839 components: - type: Transform pos: -17.5,-156.5 parent: 2 - - uid: 16058 + - uid: 10840 components: - type: Transform pos: -19.5,-118.5 parent: 2 - - uid: 16059 + - uid: 10841 components: - type: Transform pos: -19.5,-122.5 parent: 2 - - uid: 16060 + - uid: 10842 components: - type: Transform pos: -19.5,-120.5 parent: 2 - - uid: 16061 + - uid: 10843 components: - type: Transform pos: -21.5,-104.5 parent: 2 - - uid: 16062 + - uid: 10844 components: - type: Transform pos: -17.5,-102.5 parent: 2 - - uid: 16063 + - uid: 10845 components: - type: Transform pos: -21.5,-103.5 parent: 2 - - uid: 16064 + - uid: 10846 components: - type: Transform pos: -17.5,-101.5 parent: 2 - - uid: 16065 + - uid: 10847 components: - type: Transform pos: -18.5,-100.5 parent: 2 - - uid: 16066 + - uid: 10848 components: - type: Transform pos: -18.5,-99.5 parent: 2 - - uid: 16067 + - uid: 10849 components: - type: Transform pos: -18.5,-98.5 parent: 2 - - uid: 16068 + - uid: 10850 components: - type: Transform pos: -18.5,-97.5 parent: 2 - - uid: 16069 + - uid: 10851 components: - type: Transform pos: -19.5,-96.5 parent: 2 - - uid: 16070 + - uid: 10852 components: - type: Transform pos: -19.5,-95.5 parent: 2 - - uid: 16071 + - uid: 10853 components: - type: Transform pos: -19.5,-94.5 parent: 2 - - uid: 16072 + - uid: 10854 components: - type: Transform pos: -19.5,-93.5 parent: 2 - - uid: 16073 + - uid: 10855 components: - type: Transform pos: -19.5,-92.5 parent: 2 - - uid: 16074 + - uid: 10856 components: - type: Transform pos: -19.5,-91.5 parent: 2 - - uid: 16075 + - uid: 10857 components: - type: Transform pos: -19.5,-90.5 parent: 2 - - uid: 16076 + - uid: 10858 components: - type: Transform pos: -20.5,-89.5 parent: 2 - - uid: 16077 + - uid: 10859 components: - type: Transform pos: -20.5,-88.5 parent: 2 - - uid: 16078 + - uid: 10860 components: - type: Transform pos: -20.5,-87.5 parent: 2 - - uid: 16079 + - uid: 10861 components: - type: Transform pos: -20.5,-86.5 parent: 2 - - uid: 16080 + - uid: 10862 components: - type: Transform pos: -20.5,-85.5 parent: 2 - - uid: 16081 + - uid: 10863 components: - type: Transform pos: -20.5,-84.5 parent: 2 - - uid: 16082 + - uid: 10864 components: - type: Transform pos: -20.5,-83.5 parent: 2 - - uid: 16083 + - uid: 10865 components: - type: Transform pos: -21.5,-82.5 parent: 2 - - uid: 16084 + - uid: 10866 components: - type: Transform pos: -21.5,-81.5 parent: 2 - - uid: 16085 + - uid: 10867 components: - type: Transform pos: -21.5,-80.5 parent: 2 - - uid: 16086 + - uid: 10868 components: - type: Transform pos: -21.5,-79.5 parent: 2 - - uid: 16087 + - uid: 10869 components: - type: Transform pos: -21.5,-78.5 parent: 2 - - uid: 16088 + - uid: 10870 components: - type: Transform pos: -21.5,-77.5 parent: 2 - - uid: 16089 + - uid: 10871 components: - type: Transform pos: -21.5,-76.5 parent: 2 - - uid: 16090 + - uid: 10872 components: - type: Transform pos: -17.5,-74.5 parent: 2 - - uid: 16091 + - uid: 10873 components: - type: Transform pos: -17.5,-75.5 parent: 2 - - uid: 16092 + - uid: 10874 components: - type: Transform pos: -18.5,-73.5 parent: 2 - - uid: 16093 + - uid: 10875 components: - type: Transform pos: -18.5,-72.5 parent: 2 - - uid: 16094 + - uid: 10876 components: - type: Transform pos: -18.5,-71.5 parent: 2 - - uid: 16095 + - uid: 10877 components: - type: Transform pos: -18.5,-70.5 parent: 2 - - uid: 16096 + - uid: 10878 components: - type: Transform pos: -20.5,-62.5 parent: 2 - - uid: 16097 + - uid: 10879 components: - type: Transform pos: -19.5,-69.5 parent: 2 - - uid: 16098 + - uid: 10880 components: - type: Transform pos: -19.5,-68.5 parent: 2 - - uid: 16099 + - uid: 10881 components: - type: Transform pos: -19.5,-67.5 parent: 2 - - uid: 16100 + - uid: 10882 components: - type: Transform pos: -19.5,-66.5 parent: 2 - - uid: 16101 + - uid: 10883 components: - type: Transform pos: -19.5,-65.5 parent: 2 - - uid: 16102 + - uid: 10884 components: - type: Transform pos: -19.5,-64.5 parent: 2 - - uid: 16103 + - uid: 10885 components: - type: Transform pos: -19.5,-63.5 parent: 2 - - uid: 16104 + - uid: 10886 components: - type: Transform pos: -20.5,-61.5 parent: 2 - - uid: 16105 + - uid: 10887 components: - type: Transform pos: -20.5,-60.5 parent: 2 - - uid: 16106 + - uid: 10888 components: - type: Transform pos: -20.5,-59.5 parent: 2 - - uid: 16107 + - uid: 10889 components: - type: Transform pos: -20.5,-58.5 parent: 2 - - uid: 16108 + - uid: 10890 components: - type: Transform pos: -20.5,-57.5 parent: 2 - - uid: 16109 + - uid: 10891 components: - type: Transform pos: -20.5,-56.5 parent: 2 - - uid: 16130 + - uid: 10892 components: - type: Transform pos: 18.5,-128.5 parent: 2 - - uid: 16132 + - uid: 10893 components: - type: Transform pos: 18.5,-127.5 parent: 2 - - uid: 16136 + - uid: 10894 components: - type: Transform pos: 19.5,-126.5 parent: 2 - - uid: 16137 + - uid: 10895 components: - type: Transform pos: 19.5,-125.5 parent: 2 - - uid: 16143 + - uid: 10896 components: - type: Transform pos: 20.5,-120.5 parent: 2 - - uid: 16144 + - uid: 10897 components: - type: Transform pos: -21.5,-51.5 parent: 2 - - uid: 16145 + - uid: 10898 components: - type: Transform pos: -21.5,-50.5 parent: 2 - - uid: 16146 + - uid: 10899 components: - type: Transform pos: -21.5,-49.5 parent: 2 - - uid: 16147 + - uid: 10900 components: - type: Transform pos: 19.5,-123.5 parent: 2 - - uid: 16150 + - uid: 10901 components: - type: Transform pos: 20.5,-122.5 parent: 2 - - uid: 16152 + - uid: 10902 components: - type: Transform pos: 20.5,-121.5 parent: 2 - - uid: 16154 + - uid: 10903 components: - type: Transform pos: 19.5,-124.5 parent: 2 - - uid: 16155 + - uid: 10904 components: - type: Transform pos: 21.5,-115.5 parent: 2 - - uid: 16156 + - uid: 10905 components: - type: Transform pos: 21.5,-115.5 parent: 2 - - uid: 16157 + - uid: 10906 components: - type: Transform pos: -17.5,-185.5 parent: 2 - - uid: 16158 + - uid: 10907 components: - type: Transform pos: 20.5,-91.5 parent: 2 - - uid: 16159 + - uid: 10908 components: - type: Transform pos: 20.5,-90.5 parent: 2 - - uid: 16160 + - uid: 10909 components: - type: Transform pos: 20.5,-89.5 parent: 2 - - uid: 16161 + - uid: 10910 components: - type: Transform pos: 21.5,-89.5 parent: 2 - - uid: 16162 + - uid: 10911 components: - type: Transform pos: 21.5,-88.5 parent: 2 - - uid: 16163 + - uid: 10912 components: - type: Transform pos: 21.5,-87.5 parent: 2 - - uid: 16164 + - uid: 10913 components: - type: Transform pos: 21.5,-86.5 parent: 2 - - uid: 16165 + - uid: 10914 components: - type: Transform pos: 21.5,-85.5 parent: 2 - - uid: 16166 + - uid: 10915 components: - type: Transform pos: 21.5,-84.5 parent: 2 - - uid: 16167 + - uid: 10916 components: - type: Transform pos: 21.5,-83.5 parent: 2 - - uid: 16168 + - uid: 10917 components: - type: Transform pos: 21.5,-82.5 parent: 2 - - uid: 16169 + - uid: 10918 components: - type: Transform pos: 22.5,-82.5 parent: 2 - - uid: 16170 + - uid: 10919 components: - type: Transform pos: 22.5,-81.5 parent: 2 - - uid: 16171 + - uid: 10920 components: - type: Transform pos: 22.5,-80.5 parent: 2 - - uid: 16172 + - uid: 10921 components: - type: Transform pos: 22.5,-79.5 parent: 2 - - uid: 16173 + - uid: 10922 components: - type: Transform pos: 22.5,-78.5 parent: 2 - - uid: 16174 + - uid: 10923 components: - type: Transform pos: 22.5,-77.5 parent: 2 - - uid: 16175 + - uid: 10924 components: - type: Transform pos: 22.5,-76.5 parent: 2 - - uid: 16176 + - uid: 10925 components: - type: Transform pos: 20.5,-65.5 parent: 2 - - uid: 16177 + - uid: 10926 components: - type: Transform pos: 20.5,-64.5 parent: 2 - - uid: 16178 + - uid: 10927 components: - type: Transform pos: 20.5,-63.5 parent: 2 - - uid: 16179 + - uid: 10928 components: - type: Transform pos: 20.5,-62.5 parent: 2 - - uid: 16180 + - uid: 10929 components: - type: Transform pos: 18.5,10.5 parent: 2 - - uid: 16181 + - uid: 10930 components: - type: Transform pos: 21.5,-62.5 parent: 2 - - uid: 16182 + - uid: 10931 components: - type: Transform pos: 21.5,-61.5 parent: 2 - - uid: 16183 + - uid: 10932 components: - type: Transform pos: 21.5,-60.5 parent: 2 - - uid: 16184 + - uid: 10933 components: - type: Transform pos: 21.5,-59.5 parent: 2 - - uid: 16185 + - uid: 10934 components: - type: Transform pos: 21.5,-58.5 parent: 2 - - uid: 16186 + - uid: 10935 components: - type: Transform pos: 21.5,-57.5 parent: 2 - - uid: 16187 + - uid: 10936 components: - type: Transform pos: 21.5,-56.5 parent: 2 - - uid: 16188 + - uid: 10937 components: - type: Transform pos: 21.5,-55.5 parent: 2 - - uid: 16194 + - uid: 10938 components: - type: Transform pos: 22.5,-55.5 parent: 2 - - uid: 16195 + - uid: 10939 components: - type: Transform pos: 22.5,-54.5 parent: 2 - - uid: 16196 + - uid: 10940 components: - type: Transform pos: 22.5,-53.5 parent: 2 - - uid: 16197 + - uid: 10941 components: - type: Transform pos: 22.5,-52.5 parent: 2 - - uid: 16198 + - uid: 10942 components: - type: Transform pos: 22.5,-51.5 parent: 2 - - uid: 16199 + - uid: 10943 components: - type: Transform pos: 22.5,-50.5 parent: 2 - - uid: 16200 + - uid: 10944 components: - type: Transform pos: 22.5,-49.5 parent: 2 - - uid: 16203 + - uid: 10945 components: - type: Transform pos: 22.5,-34.5 parent: 2 - - uid: 16204 + - uid: 10946 components: - type: Transform pos: 22.5,-33.5 parent: 2 - - uid: 16205 + - uid: 10947 components: - type: Transform pos: 22.5,-32.5 parent: 2 - - uid: 16206 + - uid: 10948 components: - type: Transform pos: 22.5,-31.5 parent: 2 - - uid: 16207 + - uid: 10949 components: - type: Transform pos: 20.5,-49.5 parent: 2 - - uid: 16208 + - uid: 10950 components: - type: Transform pos: 20.5,-48.5 parent: 2 - - uid: 16209 + - uid: 10951 components: - type: Transform pos: 20.5,-47.5 parent: 2 - - uid: 16210 + - uid: 10952 components: - type: Transform pos: 20.5,-46.5 parent: 2 - - uid: 16211 + - uid: 10953 components: - type: Transform pos: 20.5,-45.5 parent: 2 - - uid: 16212 + - uid: 10954 components: - type: Transform pos: 21.5,-30.5 parent: 2 - - uid: 16213 + - uid: 10955 components: - type: Transform pos: 21.5,-45.5 parent: 2 - - uid: 16214 + - uid: 10956 components: - type: Transform pos: 21.5,-29.5 parent: 2 - - uid: 16215 + - uid: 10957 components: - type: Transform pos: 21.5,-44.5 parent: 2 - - uid: 16216 + - uid: 10958 components: - type: Transform pos: 20.5,-28.5 parent: 2 - - uid: 16217 + - uid: 10959 components: - type: Transform pos: 20.5,-27.5 parent: 2 - - uid: 16218 + - uid: 10960 components: - type: Transform pos: 20.5,-26.5 parent: 2 - - uid: 16219 + - uid: 10961 components: - type: Transform pos: 21.5,-43.5 parent: 2 - - uid: 16221 + - uid: 10962 components: - type: Transform pos: 21.5,-42.5 parent: 2 - - uid: 16223 + - uid: 10963 components: - type: Transform pos: 21.5,-31.5 parent: 2 - - uid: 16225 + - uid: 10964 components: - type: Transform pos: 20.5,-29.5 parent: 2 - - uid: 16285 + - uid: 10965 components: - type: Transform pos: -19.5,-177.5 parent: 2 - - uid: 16286 + - uid: 10966 components: - type: Transform pos: -17.5,-184.5 parent: 2 - - uid: 16287 + - uid: 10967 components: - type: Transform pos: -17.5,-183.5 parent: 2 - - uid: 16288 + - uid: 10968 components: - type: Transform pos: -17.5,-182.5 parent: 2 - - uid: 16289 + - uid: 10969 components: - type: Transform pos: -17.5,-181.5 parent: 2 - - uid: 16290 + - uid: 10970 components: - type: Transform pos: -18.5,-181.5 parent: 2 - - uid: 16291 + - uid: 10971 components: - type: Transform pos: -18.5,-180.5 parent: 2 - - uid: 16292 + - uid: 10972 components: - type: Transform pos: -18.5,-179.5 parent: 2 - - uid: 16293 + - uid: 10973 components: - type: Transform pos: -18.5,-178.5 parent: 2 - - uid: 16294 + - uid: 10974 components: - type: Transform pos: -18.5,-177.5 parent: 2 - - uid: 16296 + - uid: 10975 components: - type: Transform pos: -19.5,-176.5 parent: 2 - - uid: 16297 + - uid: 10976 components: - type: Transform pos: -19.5,-175.5 parent: 2 - - uid: 16298 + - uid: 10977 components: - type: Transform pos: -19.5,-174.5 parent: 2 - - uid: 16299 + - uid: 10978 components: - type: Transform pos: -19.5,-173.5 parent: 2 - - uid: 16300 + - uid: 10979 components: - type: Transform pos: -19.5,-172.5 parent: 2 - - uid: 16301 + - uid: 10980 components: - type: Transform pos: -19.5,-171.5 parent: 2 - - uid: 16302 + - uid: 10981 components: - type: Transform pos: -19.5,-170.5 parent: 2 - - uid: 16303 + - uid: 10982 components: - type: Transform pos: -20.5,-170.5 parent: 2 - - uid: 16304 + - uid: 10983 components: - type: Transform pos: -20.5,-169.5 parent: 2 - - uid: 16305 + - uid: 10984 components: - type: Transform pos: -20.5,-168.5 parent: 2 - - uid: 16306 + - uid: 10985 components: - type: Transform pos: -20.5,-167.5 parent: 2 - - uid: 16307 + - uid: 10986 components: - type: Transform pos: -20.5,-166.5 parent: 2 - - uid: 16308 + - uid: 10987 components: - type: Transform pos: -20.5,-165.5 parent: 2 - - uid: 16309 + - uid: 10988 components: - type: Transform pos: -20.5,-164.5 parent: 2 - - uid: 16310 + - uid: 10989 components: - type: Transform pos: -20.5,-163.5 parent: 2 - - uid: 16311 + - uid: 10990 components: - type: Transform pos: -21.5,-163.5 parent: 2 - - uid: 16312 + - uid: 10991 components: - type: Transform pos: -21.5,-162.5 parent: 2 - - uid: 16313 + - uid: 10992 components: - type: Transform pos: -21.5,-161.5 parent: 2 - - uid: 16314 + - uid: 10993 components: - type: Transform pos: -21.5,-160.5 parent: 2 - - uid: 16315 + - uid: 10994 components: - type: Transform pos: -21.5,-159.5 parent: 2 - - uid: 16316 + - uid: 10995 components: - type: Transform pos: -21.5,-158.5 parent: 2 - - uid: 16330 + - uid: 10996 components: - type: Transform pos: 22.5,-157.5 parent: 2 - - uid: 16331 + - uid: 10997 components: - type: Transform pos: 22.5,-158.5 parent: 2 - - uid: 16332 + - uid: 10998 components: - type: Transform pos: 22.5,-159.5 parent: 2 - - uid: 16333 + - uid: 10999 components: - type: Transform pos: 22.5,-160.5 parent: 2 - - uid: 16334 + - uid: 11000 components: - type: Transform pos: 22.5,-161.5 parent: 2 - - uid: 16335 + - uid: 11001 components: - type: Transform pos: 22.5,-162.5 parent: 2 - - uid: 16336 + - uid: 11002 components: - type: Transform pos: 21.5,-163.5 parent: 2 - - uid: 16337 + - uid: 11003 components: - type: Transform pos: 21.5,-162.5 parent: 2 - - uid: 16338 + - uid: 11004 components: - type: Transform pos: 21.5,-164.5 parent: 2 - - uid: 16339 + - uid: 11005 components: - type: Transform pos: 21.5,-165.5 parent: 2 - - uid: 16340 + - uid: 11006 components: - type: Transform pos: 21.5,-166.5 parent: 2 - - uid: 16341 + - uid: 11007 components: - type: Transform pos: 21.5,-167.5 parent: 2 - - uid: 16342 + - uid: 11008 components: - type: Transform pos: 21.5,-168.5 parent: 2 - - uid: 16343 + - uid: 11009 components: - type: Transform pos: 21.5,-169.5 parent: 2 - - uid: 16346 + - uid: 11010 components: - type: Transform pos: 20.5,-169.5 parent: 2 - - uid: 16347 + - uid: 11011 components: - type: Transform pos: 20.5,-170.5 parent: 2 - - uid: 16348 + - uid: 11012 components: - type: Transform pos: 20.5,-171.5 parent: 2 - - uid: 16349 + - uid: 11013 components: - type: Transform pos: 20.5,-172.5 parent: 2 - - uid: 16350 + - uid: 11014 components: - type: Transform pos: 20.5,-173.5 parent: 2 - - uid: 16351 + - uid: 11015 components: - type: Transform pos: 20.5,-174.5 parent: 2 - - uid: 16352 + - uid: 11016 components: - type: Transform pos: 20.5,-175.5 parent: 2 - - uid: 16353 + - uid: 11017 components: - type: Transform pos: 20.5,-176.5 parent: 2 - - uid: 16354 + - uid: 11018 components: - type: Transform pos: 19.5,-176.5 parent: 2 - - uid: 16355 + - uid: 11019 components: - type: Transform pos: 19.5,-177.5 parent: 2 - - uid: 16356 + - uid: 11020 components: - type: Transform pos: 19.5,-178.5 parent: 2 - - uid: 16357 + - uid: 11021 components: - type: Transform pos: 19.5,-179.5 parent: 2 - - uid: 16358 + - uid: 11022 components: - type: Transform pos: 19.5,-180.5 parent: 2 - - uid: 16359 + - uid: 11023 components: - type: Transform pos: 18.5,-180.5 parent: 2 - - uid: 16360 + - uid: 11024 components: - type: Transform pos: 18.5,-181.5 parent: 2 - - uid: 16361 + - uid: 11025 components: - type: Transform pos: 18.5,-182.5 parent: 2 - - uid: 16362 + - uid: 11026 components: - type: Transform pos: 18.5,-183.5 parent: 2 - - uid: 16363 + - uid: 11027 components: - type: Transform pos: 18.5,-184.5 parent: 2 - - uid: 16373 + - uid: 11028 components: - type: Transform pos: 23.5,-189.5 parent: 2 - - uid: 16379 + - uid: 11029 components: - type: Transform pos: 23.5,-185.5 parent: 2 - - uid: 16380 + - uid: 11030 components: - type: Transform pos: 23.5,-186.5 parent: 2 - - uid: 16381 + - uid: 11031 components: - type: Transform pos: 23.5,-187.5 parent: 2 - - uid: 16382 + - uid: 11032 components: - type: Transform pos: 23.5,-188.5 parent: 2 - - uid: 16383 + - uid: 11033 components: - type: Transform pos: 23.5,-190.5 parent: 2 - - uid: 16384 + - uid: 11034 components: - type: Transform pos: 22.5,-190.5 parent: 2 - - uid: 16385 + - uid: 11035 components: - type: Transform pos: 22.5,-191.5 parent: 2 - - uid: 16386 + - uid: 11036 components: - type: Transform pos: 22.5,-192.5 parent: 2 - - uid: 16387 + - uid: 11037 components: - type: Transform pos: 22.5,-193.5 parent: 2 - - uid: 16388 + - uid: 11038 components: - type: Transform pos: 22.5,-194.5 parent: 2 - - uid: 16389 + - uid: 11039 components: - type: Transform pos: 22.5,-195.5 parent: 2 - - uid: 16390 + - uid: 11040 components: - type: Transform pos: 22.5,-196.5 parent: 2 - - uid: 16391 + - uid: 11041 components: - type: Transform pos: 22.5,-197.5 parent: 2 - - uid: 16392 + - uid: 11042 components: - type: Transform pos: 21.5,-197.5 parent: 2 - - uid: 16394 + - uid: 11043 components: - type: Transform pos: 21.5,-198.5 parent: 2 - - uid: 16395 + - uid: 11044 components: - type: Transform pos: 21.5,-199.5 parent: 2 - - uid: 16396 + - uid: 11045 components: - type: Transform pos: 21.5,-200.5 parent: 2 - - uid: 16397 + - uid: 11046 components: - type: Transform pos: 21.5,-201.5 parent: 2 - - uid: 16398 + - uid: 11047 components: - type: Transform pos: 21.5,-202.5 parent: 2 - - uid: 16399 + - uid: 11048 components: - type: Transform pos: 21.5,-203.5 parent: 2 - - uid: 16400 + - uid: 11049 components: - type: Transform pos: 21.5,-204.5 parent: 2 - - uid: 16401 + - uid: 11050 components: - type: Transform pos: 20.5,-204.5 parent: 2 - - uid: 16402 + - uid: 11051 components: - type: Transform pos: 20.5,-205.5 parent: 2 - - uid: 16403 + - uid: 11052 components: - type: Transform pos: 20.5,-206.5 parent: 2 - - uid: 16404 + - uid: 11053 components: - type: Transform pos: 20.5,-207.5 parent: 2 - - uid: 16405 + - uid: 11054 components: - type: Transform pos: 20.5,-208.5 parent: 2 - - uid: 16406 + - uid: 11055 components: - type: Transform pos: 19.5,-208.5 parent: 2 - - uid: 16407 + - uid: 11056 components: - type: Transform pos: 19.5,-209.5 parent: 2 - - uid: 16408 + - uid: 11057 components: - type: Transform pos: 19.5,-210.5 parent: 2 - - uid: 16425 + - uid: 11058 components: - type: Transform pos: -17.5,-210.5 parent: 2 - - uid: 16427 + - uid: 11059 components: - type: Transform pos: -17.5,-209.5 parent: 2 - - uid: 16428 + - uid: 11060 components: - type: Transform pos: -17.5,-208.5 parent: 2 - - uid: 16429 + - uid: 11061 components: - type: Transform pos: -18.5,-208.5 parent: 2 - - uid: 16430 + - uid: 11062 components: - type: Transform pos: -18.5,-207.5 parent: 2 - - uid: 16431 + - uid: 11063 components: - type: Transform pos: -18.5,-206.5 parent: 2 - - uid: 16432 + - uid: 11064 components: - type: Transform pos: -18.5,-205.5 parent: 2 - - uid: 16433 + - uid: 11065 components: - type: Transform pos: -18.5,-204.5 parent: 2 - - uid: 16434 + - uid: 11066 components: - type: Transform pos: -19.5,-204.5 parent: 2 - - uid: 16435 + - uid: 11067 components: - type: Transform pos: -19.5,-203.5 parent: 2 - - uid: 16436 + - uid: 11068 components: - type: Transform pos: -19.5,-202.5 parent: 2 - - uid: 16437 + - uid: 11069 components: - type: Transform pos: -19.5,-201.5 parent: 2 - - uid: 16438 + - uid: 11070 components: - type: Transform pos: -19.5,-200.5 parent: 2 - - uid: 16439 + - uid: 11071 components: - type: Transform pos: -19.5,-199.5 parent: 2 - - uid: 16440 + - uid: 11072 components: - type: Transform pos: -19.5,-198.5 parent: 2 - - uid: 16441 + - uid: 11073 components: - type: Transform pos: -19.5,-197.5 parent: 2 - - uid: 16442 + - uid: 11074 components: - type: Transform pos: -20.5,-197.5 parent: 2 - - uid: 16443 + - uid: 11075 components: - type: Transform pos: -20.5,-196.5 parent: 2 - - uid: 16444 + - uid: 11076 components: - type: Transform pos: -20.5,-195.5 parent: 2 - - uid: 16445 + - uid: 11077 components: - type: Transform pos: -20.5,-194.5 parent: 2 - - uid: 16446 + - uid: 11078 components: - type: Transform pos: -20.5,-193.5 parent: 2 - - uid: 16447 + - uid: 11079 components: - type: Transform pos: -20.5,-192.5 parent: 2 - - uid: 16448 + - uid: 11080 components: - type: Transform pos: -20.5,-191.5 parent: 2 - - uid: 16449 + - uid: 11081 components: - type: Transform pos: -20.5,-190.5 parent: 2 - - uid: 16450 + - uid: 11082 components: - type: Transform pos: -21.5,-190.5 parent: 2 - - uid: 16451 + - uid: 11083 components: - type: Transform pos: -21.5,-189.5 parent: 2 - - uid: 16452 + - uid: 11084 components: - type: Transform pos: -21.5,-188.5 parent: 2 - - uid: 16453 + - uid: 11085 components: - type: Transform pos: -21.5,-187.5 parent: 2 - - uid: 16454 + - uid: 11086 components: - type: Transform pos: -21.5,-186.5 parent: 2 - - uid: 16455 + - uid: 11087 components: - type: Transform pos: -21.5,-185.5 parent: 2 - - uid: 16537 + - uid: 11088 components: - type: Transform pos: 17.5,-354.5 parent: 2 - - uid: 16556 + - uid: 11089 components: - type: Transform pos: 17.5,-355.5 parent: 2 - - uid: 16557 + - uid: 11090 components: - type: Transform pos: 17.5,-356.5 parent: 2 - - uid: 16558 + - uid: 11091 components: - type: Transform pos: 17.5,-357.5 parent: 2 - - uid: 16559 + - uid: 11092 components: - type: Transform pos: 17.5,-358.5 parent: 2 - - uid: 16560 + - uid: 11093 components: - type: Transform pos: 17.5,-359.5 parent: 2 - - uid: 16562 + - uid: 11094 components: - type: Transform pos: 16.5,-361.5 parent: 2 - - uid: 16563 + - uid: 11095 components: - type: Transform pos: 16.5,-362.5 parent: 2 - - uid: 16564 + - uid: 11096 components: - type: Transform pos: 16.5,-363.5 parent: 2 - - uid: 16565 + - uid: 11097 components: - type: Transform pos: 16.5,-364.5 parent: 2 - - uid: 16566 + - uid: 11098 components: - type: Transform pos: 16.5,-365.5 parent: 2 - - uid: 16567 + - uid: 11099 components: - type: Transform pos: 16.5,-366.5 parent: 2 - - uid: 16568 + - uid: 11100 components: - type: Transform pos: 15.5,-368.5 parent: 2 - - uid: 16569 + - uid: 11101 components: - type: Transform pos: 15.5,-369.5 parent: 2 - - uid: 16570 + - uid: 11102 components: - type: Transform pos: 15.5,-370.5 parent: 2 - - uid: 16571 + - uid: 11103 components: - type: Transform pos: 15.5,-371.5 parent: 2 - - uid: 16572 + - uid: 11104 components: - type: Transform pos: 15.5,-372.5 parent: 2 - - uid: 16573 + - uid: 11105 components: - type: Transform pos: 15.5,-373.5 parent: 2 - - uid: 16574 + - uid: 11106 components: - type: Transform pos: 14.5,-374.5 parent: 2 - - uid: 16575 + - uid: 11107 components: - type: Transform pos: 14.5,-375.5 parent: 2 - - uid: 16576 + - uid: 11108 components: - type: Transform pos: 14.5,-376.5 parent: 2 - - uid: 16577 + - uid: 11109 components: - type: Transform pos: 14.5,-377.5 parent: 2 - - uid: 16578 + - uid: 11110 components: - type: Transform pos: 13.5,-378.5 parent: 2 - - uid: 16579 + - uid: 11111 components: - type: Transform pos: 13.5,-379.5 parent: 2 - - uid: 16580 + - uid: 11112 components: - type: Transform pos: -12.5,-379.5 parent: 2 - - uid: 16582 + - uid: 11113 components: - type: Transform pos: -12.5,-378.5 parent: 2 - - uid: 16587 + - uid: 11114 components: - type: Transform pos: -13.5,-377.5 parent: 2 - - uid: 16588 + - uid: 11115 components: - type: Transform pos: -13.5,-376.5 parent: 2 - - uid: 16589 + - uid: 11116 components: - type: Transform pos: -13.5,-375.5 parent: 2 - - uid: 16590 + - uid: 11117 components: - type: Transform pos: -13.5,-374.5 parent: 2 - - uid: 16591 + - uid: 11118 components: - type: Transform pos: -14.5,-373.5 parent: 2 - - uid: 16592 + - uid: 11119 components: - type: Transform pos: -14.5,-372.5 parent: 2 - - uid: 16593 + - uid: 11120 components: - type: Transform pos: -14.5,-371.5 parent: 2 - - uid: 16594 + - uid: 11121 components: - type: Transform pos: -14.5,-370.5 parent: 2 - - uid: 16595 + - uid: 11122 components: - type: Transform pos: -14.5,-369.5 parent: 2 - - uid: 16596 + - uid: 11123 components: - type: Transform pos: -14.5,-368.5 parent: 2 - - uid: 16597 + - uid: 11124 components: - type: Transform pos: -14.5,-367.5 parent: 2 - - uid: 16598 + - uid: 11125 components: - type: Transform pos: -15.5,-366.5 parent: 2 - - uid: 16599 + - uid: 11126 components: - type: Transform pos: -15.5,-365.5 parent: 2 - - uid: 16600 + - uid: 11127 components: - type: Transform pos: -15.5,-364.5 parent: 2 - - uid: 16601 + - uid: 11128 components: - type: Transform pos: -15.5,-363.5 parent: 2 - - uid: 16602 + - uid: 11129 components: - type: Transform pos: -15.5,-362.5 parent: 2 - - uid: 16603 + - uid: 11130 components: - type: Transform pos: -15.5,-361.5 parent: 2 - - uid: 16604 + - uid: 11131 components: - type: Transform pos: -15.5,-360.5 parent: 2 - - uid: 16605 + - uid: 11132 components: - type: Transform pos: -16.5,-359.5 parent: 2 - - uid: 16606 + - uid: 11133 components: - type: Transform pos: -16.5,-358.5 parent: 2 - - uid: 16607 + - uid: 11134 components: - type: Transform pos: -16.5,-357.5 parent: 2 - - uid: 16608 + - uid: 11135 components: - type: Transform pos: -16.5,-356.5 parent: 2 - - uid: 16609 + - uid: 11136 components: - type: Transform pos: -16.5,-355.5 parent: 2 - - uid: 16610 + - uid: 11137 components: - type: Transform pos: -16.5,-354.5 parent: 2 - - uid: 16744 + - uid: 11138 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-323.5 parent: 2 - - uid: 16745 + - uid: 11139 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-322.5 parent: 2 - - uid: 16746 + - uid: 11140 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-321.5 parent: 2 - - uid: 16747 + - uid: 11141 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-320.5 parent: 2 - - uid: 16748 + - uid: 11142 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-319.5 parent: 2 - - uid: 16749 + - uid: 11143 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-318.5 parent: 2 - - uid: 16750 + - uid: 11144 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-317.5 parent: 2 - - uid: 16751 + - uid: 11145 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-316.5 parent: 2 - - uid: 16752 + - uid: 11146 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-315.5 parent: 2 - - uid: 16753 + - uid: 11147 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-314.5 parent: 2 - - uid: 16754 + - uid: 11148 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-313.5 parent: 2 - - uid: 16755 + - uid: 11149 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-312.5 parent: 2 - - uid: 16756 + - uid: 11150 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-315.5 parent: 2 - - uid: 16757 + - uid: 11151 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-313.5 parent: 2 - - uid: 16758 + - uid: 11152 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-312.5 parent: 2 - - uid: 16759 + - uid: 11153 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-311.5 parent: 2 - - uid: 16760 + - uid: 11154 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-310.5 parent: 2 - - uid: 16761 + - uid: 11155 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-309.5 parent: 2 - - uid: 16762 + - uid: 11156 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-308.5 parent: 2 - - uid: 16763 + - uid: 11157 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-307.5 parent: 2 - - uid: 16764 + - uid: 11158 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-306.5 parent: 2 - - uid: 16765 + - uid: 11159 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-305.5 parent: 2 - - uid: 16766 + - uid: 11160 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-304.5 parent: 2 - - uid: 16767 + - uid: 11161 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-303.5 parent: 2 - - uid: 16768 + - uid: 11162 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-302.5 parent: 2 - - uid: 16769 + - uid: 11163 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-301.5 parent: 2 - - uid: 16770 + - uid: 11164 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-300.5 parent: 2 - - uid: 16771 + - uid: 11165 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-299.5 parent: 2 - - uid: 16772 + - uid: 11166 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-297.5 parent: 2 - - uid: 16773 + - uid: 11167 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-296.5 parent: 2 - - uid: 16774 + - uid: 11168 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-295.5 parent: 2 - - uid: 16775 + - uid: 11169 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-294.5 parent: 2 - - uid: 16776 + - uid: 11170 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-293.5 parent: 2 - - uid: 16777 + - uid: 11171 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-292.5 parent: 2 - - uid: 16778 + - uid: 11172 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-298.5 parent: 2 - - uid: 16779 + - uid: 11173 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-299.5 parent: 2 - - uid: 16780 + - uid: 11174 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-300.5 parent: 2 - - uid: 16781 + - uid: 11175 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-301.5 parent: 2 - - uid: 16782 + - uid: 11176 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-302.5 parent: 2 - - uid: 16819 + - uid: 11177 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-317.5 parent: 2 - - uid: 16820 + - uid: 11178 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-320.5 parent: 2 - - uid: 16821 + - uid: 11179 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-319.5 parent: 2 - - uid: 16822 + - uid: 11180 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-318.5 parent: 2 - - uid: 16823 + - uid: 11181 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-316.5 parent: 2 - - uid: 16824 + - uid: 11182 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-315.5 parent: 2 - - uid: 16825 + - uid: 11183 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-314.5 parent: 2 - - uid: 16826 + - uid: 11184 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-313.5 parent: 2 - - uid: 16827 + - uid: 11185 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-312.5 parent: 2 - - uid: 16828 + - uid: 11186 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-311.5 parent: 2 - - uid: 16829 + - uid: 11187 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-310.5 parent: 2 - - uid: 16830 + - uid: 11188 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-309.5 parent: 2 - - uid: 16831 + - uid: 11189 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-308.5 parent: 2 - - uid: 16832 + - uid: 11190 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-307.5 parent: 2 - - uid: 16833 + - uid: 11191 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-306.5 parent: 2 - - uid: 16834 + - uid: 11192 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-305.5 parent: 2 - - uid: 16835 + - uid: 11193 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-304.5 parent: 2 - - uid: 16836 + - uid: 11194 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-303.5 parent: 2 - - uid: 16837 + - uid: 11195 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-302.5 parent: 2 - - uid: 16838 + - uid: 11196 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-301.5 parent: 2 - - uid: 16839 + - uid: 11197 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-300.5 parent: 2 - - uid: 16840 + - uid: 11198 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-299.5 parent: 2 - - uid: 16841 + - uid: 11199 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-298.5 parent: 2 - - uid: 16842 + - uid: 11200 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-297.5 parent: 2 - - uid: 16843 + - uid: 11201 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-296.5 parent: 2 - - uid: 16844 + - uid: 11202 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-295.5 parent: 2 - - uid: 16845 + - uid: 11203 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-294.5 parent: 2 - - uid: 16846 + - uid: 11204 components: - type: Transform rot: 1.5707963267948966 rad @@ -74528,7 +73980,7 @@ entities: parent: 2 - proto: GunSafeDisabler entities: - - uid: 12385 + - uid: 11205 components: - type: Transform pos: -0.5,-367.5 @@ -74553,70 +74005,70 @@ entities: - 0 - proto: GunSafeLaserCarbine entities: - - uid: 15797 + - uid: 11206 components: - type: Transform pos: 8.5,-338.5 parent: 2 - proto: GunSafePistolMk58 entities: - - uid: 9424 + - uid: 11207 components: - type: Transform pos: -0.5,-362.5 parent: 2 - proto: GunSafeRifleLecter entities: - - uid: 10696 + - uid: 11208 components: - type: Transform pos: 6.5,-338.5 parent: 2 - proto: GunSafeShotgunKammerer entities: - - uid: 10845 + - uid: 11209 components: - type: Transform pos: 6.5,-337.5 parent: 2 - proto: GunSafeSubMachineGunDrozd entities: - - uid: 10992 + - uid: 11210 components: - type: Transform pos: 8.5,-337.5 parent: 2 - proto: Handcuffs entities: - - uid: 11434 - components: - - type: Transform - pos: 4.456359,-358.63803 - parent: 2 - - uid: 12777 + - uid: 5607 components: - type: Transform - parent: 12773 + parent: 5605 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 11211 + components: + - type: Transform + pos: 4.456359,-358.63803 + parent: 2 - proto: HandheldGPSBasic entities: - - uid: 14076 + - uid: 11212 components: - type: Transform pos: -1.713614,-166.57089 parent: 2 - proto: HandheldHealthAnalyzerUnpowered entities: - - uid: 3890 + - uid: 11213 components: - type: Transform pos: -5.5934877,-206.55833 parent: 2 - proto: HandheldStationMap entities: - - uid: 8420 + - uid: 11214 components: - type: Transform rot: 3.141592653589793 rad @@ -74624,107 +74076,107 @@ entities: parent: 2 - proto: HappyHonk entities: - - uid: 15812 + - uid: 11215 components: - type: Transform pos: 7.0998864,-17.75665 parent: 2 - proto: HighSecArmoryLocked entities: - - uid: 7735 + - uid: 11216 components: - type: Transform pos: 7.5,-339.5 parent: 2 - proto: HighSecCommandLocked entities: - - uid: 102 + - uid: 11217 components: - type: Transform pos: 0.5,-2.5 parent: 2 - - uid: 266 + - uid: 11218 components: - type: Transform pos: 17.5,-307.5 parent: 2 - - uid: 7942 + - uid: 11219 components: - type: Transform pos: 22.5,-300.5 parent: 2 - - uid: 8050 + - uid: 11220 components: - type: Transform pos: 22.5,-314.5 parent: 2 - proto: HospitalCurtainsOpen entities: - - uid: 295 + - uid: 11221 components: - type: Transform pos: 3.5,-172.5 parent: 2 - - uid: 3188 + - uid: 11222 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-178.5 parent: 2 - - uid: 3685 + - uid: 11223 components: - type: Transform pos: 3.5,-174.5 parent: 2 - - uid: 3690 + - uid: 11224 components: - type: Transform pos: 8.5,-172.5 parent: 2 - - uid: 3691 + - uid: 11225 components: - type: Transform pos: 8.5,-174.5 parent: 2 - - uid: 3692 + - uid: 11226 components: - type: Transform pos: 8.5,-176.5 parent: 2 - type: Door - secondsUntilStateChange: -134439.94 + secondsUntilStateChange: -141100.73 state: Closing - - uid: 11796 + - uid: 11227 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-367.5 parent: 2 - - uid: 11797 + - uid: 11228 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-364.5 parent: 2 - - uid: 11798 + - uid: 11229 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-364.5 parent: 2 - - uid: 11799 + - uid: 11230 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-367.5 parent: 2 - - uid: 11800 + - uid: 11231 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-372.5 parent: 2 - - uid: 11801 + - uid: 11232 components: - type: Transform rot: 3.141592653589793 rad @@ -74732,43 +74184,43 @@ entities: parent: 2 - proto: hydroponicsSoil entities: - - uid: 2028 + - uid: 11233 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-95.5 parent: 2 - - uid: 11467 + - uid: 11234 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-373.5 parent: 2 - - uid: 11468 + - uid: 11235 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-373.5 parent: 2 - - uid: 11469 + - uid: 11236 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-373.5 parent: 2 - - uid: 11470 + - uid: 11237 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-373.5 parent: 2 - - uid: 11471 + - uid: 11238 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-373.5 parent: 2 - - uid: 11472 + - uid: 11239 components: - type: Transform rot: 3.141592653589793 rad @@ -74776,63 +74228,63 @@ entities: parent: 2 - proto: HydroponicsToolMiniHoe entities: - - uid: 2029 + - uid: 11240 components: - type: Transform pos: -4.9444575,-95.49014 parent: 2 - - uid: 26466 + - uid: 11241 components: - type: Transform pos: -1.4858844,-371.00397 parent: 2 - proto: HydroponicsToolSpade entities: - - uid: 26463 + - uid: 11242 components: - type: Transform pos: -1.2279739,-371.28754 parent: 2 - proto: hydroponicsTray entities: - - uid: 1730 + - uid: 11243 components: - type: Transform pos: -6.5,-83.5 parent: 2 - - uid: 1731 + - uid: 11244 components: - type: Transform pos: -7.5,-83.5 parent: 2 - - uid: 1737 + - uid: 11245 components: - type: Transform pos: -7.5,-85.5 parent: 2 - - uid: 1739 + - uid: 11246 components: - type: Transform pos: -7.5,-86.5 parent: 2 - - uid: 1740 + - uid: 11247 components: - type: Transform pos: -7.5,-87.5 parent: 2 - - uid: 1744 + - uid: 11248 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-85.5 parent: 2 - - uid: 1745 + - uid: 11249 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-86.5 parent: 2 - - uid: 1746 + - uid: 11250 components: - type: Transform rot: -1.5707963267948966 rad @@ -74840,49 +74292,49 @@ entities: parent: 2 - proto: Igniter entities: - - uid: 17063 + - uid: 11251 components: - type: Transform pos: -13.294711,-246.58882 parent: 2 - - uid: 17064 + - uid: 11252 components: - type: Transform pos: -13.227223,-246.42015 parent: 2 - proto: InflatableWall entities: - - uid: 1860 + - uid: 11253 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-96.5 parent: 2 - - uid: 7348 + - uid: 11254 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-163.5 parent: 2 - - uid: 7350 + - uid: 11255 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-163.5 parent: 2 - - uid: 7351 + - uid: 11256 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-164.5 parent: 2 - - uid: 7352 + - uid: 11257 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-163.5 parent: 2 - - uid: 7353 + - uid: 11258 components: - type: Transform rot: -1.5707963267948966 rad @@ -74890,13 +74342,13 @@ entities: parent: 2 - proto: InflatableWallStack1 entities: - - uid: 1861 + - uid: 11259 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.53376,-97.54558 parent: 2 - - uid: 1862 + - uid: 11260 components: - type: Transform rot: 1.5707963267948966 rad @@ -74904,50 +74356,50 @@ entities: parent: 2 - proto: IngotGold1 entities: - - uid: 14450 + - uid: 11261 components: - type: Transform pos: 17.62472,-83.47914 parent: 2 - - uid: 14452 + - uid: 11262 components: - type: Transform pos: 17.334173,-83.06987 parent: 2 - - uid: 14453 + - uid: 11263 components: - type: Transform pos: 13.557059,-82.449356 parent: 2 - - uid: 14454 + - uid: 11264 components: - type: Transform pos: 13.821194,-78.3566 parent: 2 - proto: IngotSilver entities: - - uid: 89 + - uid: 11265 components: - type: Transform pos: -3.4884946,-1.3774483 parent: 2 - proto: IngotSilver1 entities: - - uid: 14455 + - uid: 11266 components: - type: Transform pos: 13.464613,-83.32071 parent: 2 - proto: IntercomCommand entities: - - uid: 69 + - uid: 11267 components: - type: Transform pos: 1.5,-13.5 parent: 2 - proto: IntercomEngineering entities: - - uid: 9078 + - uid: 11268 components: - type: Transform rot: -1.5707963267948966 rad @@ -74955,7 +74407,7 @@ entities: parent: 2 - proto: IntercomMedical entities: - - uid: 12199 + - uid: 11269 components: - type: Transform rot: -1.5707963267948966 rad @@ -74963,7 +74415,7 @@ entities: parent: 2 - proto: IntercomScience entities: - - uid: 12201 + - uid: 11270 components: - type: Transform rot: 1.5707963267948966 rad @@ -74971,7 +74423,7 @@ entities: parent: 2 - proto: IntercomSecurity entities: - - uid: 2852 + - uid: 11271 components: - type: Transform rot: 1.5707963267948966 rad @@ -74979,13 +74431,13 @@ entities: parent: 2 - proto: IntercomService entities: - - uid: 1736 + - uid: 11272 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-85.5 parent: 2 - - uid: 12202 + - uid: 11273 components: - type: Transform rot: 1.5707963267948966 rad @@ -74993,7 +74445,7 @@ entities: parent: 2 - proto: IntercomSupply entities: - - uid: 1613 + - uid: 11274 components: - type: Transform rot: -1.5707963267948966 rad @@ -75001,7 +74453,7 @@ entities: parent: 2 - proto: JanitorialTrolley entities: - - uid: 2775 + - uid: 11275 components: - type: Transform rot: -1.5707963267948966 rad @@ -75009,7 +74461,7 @@ entities: parent: 2 - proto: JetpackBlackFilled entities: - - uid: 11980 + - uid: 11276 components: - type: Transform rot: 3.141592653589793 rad @@ -75017,166 +74469,166 @@ entities: parent: 2 - proto: JetpackBlueFilled entities: - - uid: 914 + - uid: 11277 components: - type: Transform pos: 4.6285653,0.46697795 parent: 2 - - uid: 915 + - uid: 11278 components: - type: Transform pos: 4.3160653,0.73260295 parent: 2 - proto: JetpackMini entities: - - uid: 16812 + - uid: 4697 components: - type: Transform - parent: 16811 + parent: 4694 - type: Physics canCollide: False - type: InsideEntityStorage - proto: JetpackMiniFilled entities: - - uid: 5136 + - uid: 11279 components: - type: Transform pos: 9.644433,-115.42764 parent: 2 - - uid: 10822 + - uid: 11280 components: - type: Transform pos: 9.44197,-115.30394 parent: 2 - - uid: 15167 + - uid: 11281 components: - type: Transform pos: 9.644433,-115.27022 parent: 2 - proto: KitchenElectricGrill entities: - - uid: 1930 + - uid: 11282 components: - type: Transform pos: 1.5,-88.5 parent: 2 - proto: KitchenKnife entities: - - uid: 2309 + - uid: 11283 components: - type: Transform pos: -0.53435105,-85.90257 parent: 2 - proto: KitchenMicrowave entities: - - uid: 206 + - uid: 11284 components: - type: Transform pos: 6.5,-11.5 parent: 2 - - uid: 580 + - uid: 11285 components: - type: Transform pos: -5.5,-338.5 parent: 2 - - uid: 1944 + - uid: 11286 components: - type: Transform pos: 0.5,-86.5 parent: 2 - - uid: 8638 + - uid: 11287 components: - type: Transform pos: -4.5,-285.5 parent: 2 - - uid: 8915 + - uid: 11288 components: - type: Transform pos: 8.5,-253.5 parent: 2 - - uid: 9986 + - uid: 11289 components: - type: Transform pos: 7.5,-312.5 parent: 2 - - uid: 12364 + - uid: 11290 components: - type: Transform pos: 0.5,-370.5 parent: 2 - proto: KitchenReagentGrinder entities: - - uid: 1947 + - uid: 11291 components: - type: Transform pos: -0.5,-85.5 parent: 2 - - uid: 3128 + - uid: 11292 components: - type: Transform pos: 4.5,-169.5 parent: 2 - - uid: 10936 + - uid: 11293 components: - type: Transform pos: -5.5,-193.5 parent: 2 - proto: KitchenSpike entities: - - uid: 1781 + - uid: 11294 components: - type: Transform pos: -5.5,-92.5 parent: 2 - - uid: 1785 + - uid: 11295 components: - type: Transform pos: -5.5,-91.5 parent: 2 - proto: KoboldCubeBox entities: - - uid: 3907 + - uid: 11296 components: - type: Transform pos: -6.325115,-194.94174 parent: 2 - proto: KudzuFlowerFriendly entities: - - uid: 16531 + - uid: 11297 components: - type: Transform pos: -13.5,-165.5 parent: 2 - - uid: 16532 + - uid: 11298 components: - type: Transform pos: -13.5,-164.5 parent: 2 - - uid: 16533 + - uid: 11299 components: - type: Transform pos: -13.5,-163.5 parent: 2 - - uid: 16534 + - uid: 11300 components: - type: Transform pos: -13.5,-166.5 parent: 2 - proto: LampBanana entities: - - uid: 2013 + - uid: 11301 components: - type: Transform pos: -7.310762,-123.94716 parent: 2 - proto: LampGold entities: - - uid: 1369 + - uid: 11302 components: - type: Transform pos: -5.572312,-71.25691 parent: 2 - - uid: 10922 + - uid: 11303 components: - type: Transform rot: -1.5707963267948966 rad @@ -75184,92 +74636,92 @@ entities: parent: 2 - proto: LampInterrogator entities: - - uid: 12080 + - uid: 11304 components: - type: Transform pos: -5.6837883,-357.0308 parent: 2 - proto: LandMineExplosive entities: - - uid: 11530 + - uid: 11305 components: - type: Transform pos: -4.5384116,-351.36267 parent: 2 - proto: Lantern entities: - - uid: 2675 + - uid: 11306 components: - type: Transform pos: 3.728132,-143.36674 parent: 2 - - uid: 2676 + - uid: 11307 components: - type: Transform pos: 5.2072816,-143.33742 parent: 2 - proto: LargeBeaker entities: - - uid: 2295 + - uid: 11308 components: - type: Transform pos: 1.582355,-86.26639 parent: 2 - - uid: 3146 + - uid: 11309 components: - type: Transform pos: 4.313154,-165.64075 parent: 2 - - uid: 3918 + - uid: 11310 components: - type: Transform pos: -4.4480414,-198.16447 parent: 2 - proto: LauncherCreamPie entities: - - uid: 10163 + - uid: 5476 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: LeavesCannabis entities: - - uid: 14914 + - uid: 11311 components: - type: Transform rot: 3.141592653589793 rad pos: -6.4884734,-144.73663 parent: 2 - - uid: 14921 + - uid: 11312 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4209847,-144.91653 parent: 2 - - uid: 14922 + - uid: 11313 components: - type: Transform pos: -6.55596,-148.32358 parent: 2 - proto: LightImplanter entities: - - uid: 3977 + - uid: 11314 components: - type: Transform pos: -2.5364327,-207.28964 parent: 2 - proto: LightReplacer entities: - - uid: 8901 + - uid: 11315 components: - type: Transform pos: -13.643399,-246.28522 parent: 2 - proto: LockerAtmosphericsFilledHardsuit entities: - - uid: 13287 + - uid: 11316 components: - type: Transform anchored: True @@ -75277,7 +74729,7 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 14009 + - uid: 11317 components: - type: Transform anchored: True @@ -75285,7 +74737,7 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 14297 + - uid: 11318 components: - type: Transform anchored: True @@ -75295,59 +74747,59 @@ entities: bodyType: Static - proto: LockerBoozeFilled entities: - - uid: 1115 + - uid: 11319 components: - type: Transform pos: 4.5,-61.5 parent: 2 - proto: LockerBotanistFilled entities: - - uid: 1129 + - uid: 11320 components: - type: Transform pos: -7.5,-89.5 parent: 2 - - uid: 2058 + - uid: 11321 components: - type: Transform pos: -6.5,-89.5 parent: 2 - proto: LockerCaptainFilled entities: - - uid: 297 + - uid: 11322 components: - type: Transform pos: -3.5,-14.5 parent: 2 - proto: LockerChemistryFilled entities: - - uid: 3123 + - uid: 11323 components: - type: Transform pos: 7.5,-165.5 parent: 2 - - uid: 3124 + - uid: 11324 components: - type: Transform pos: 7.5,-166.5 parent: 2 - proto: LockerChiefEngineerFilled entities: - - uid: 8794 + - uid: 11325 components: - type: Transform pos: 11.5,-254.5 parent: 2 - proto: LockerChiefMedicalOfficerFilled entities: - - uid: 3764 + - uid: 11326 components: - type: Transform pos: -0.5,-202.5 parent: 2 - proto: LockerClown entities: - - uid: 2003 + - uid: 5467 components: - type: Transform pos: -8.5,-124.5 @@ -75376,149 +74828,149 @@ entities: showEnts: False occludes: True ents: - - 8788 - - 8946 - - 10014 - - 10018 - - 10091 - - 10092 - - 10163 - - 10639 - - 10781 + - 5469 + - 5471 + - 5474 + - 5472 + - 5473 + - 5470 + - 5476 + - 5468 + - 5475 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerDetectiveFilled entities: - - uid: 9400 + - uid: 11327 components: - type: Transform pos: -2.5,-73.5 parent: 2 - proto: LockerElectricalSupplies entities: - - uid: 14316 + - uid: 11328 components: - type: Transform pos: -2.5,-244.5 parent: 2 - proto: LockerElectricalSuppliesFilled entities: - - uid: 3255 + - uid: 11329 components: - type: Transform pos: 3.5,-107.5 parent: 2 - - uid: 4239 + - uid: 11330 components: - type: Transform pos: -2.5,-18.5 parent: 2 - proto: LockerEngineerFilledHardsuit entities: - - uid: 4850 + - uid: 11331 components: - type: Transform pos: 6.5,-257.5 parent: 2 - - uid: 4977 + - uid: 11332 components: - type: Transform pos: 8.5,-257.5 parent: 2 - - uid: 5103 + - uid: 11333 components: - type: Transform pos: 5.5,-255.5 parent: 2 - - uid: 7779 + - uid: 11334 components: - type: Transform pos: 5.5,-257.5 parent: 2 - - uid: 7817 + - uid: 11335 components: - type: Transform pos: 4.5,-257.5 parent: 2 - - uid: 7875 + - uid: 11336 components: - type: Transform pos: 4.5,-255.5 parent: 2 - - uid: 8234 + - uid: 11337 components: - type: Transform pos: 3.5,-255.5 parent: 2 - - uid: 9869 + - uid: 11338 components: - type: Transform pos: 3.5,-257.5 parent: 2 - proto: LockerEvidence entities: - - uid: 11352 + - uid: 11339 components: - type: Transform pos: -1.5,-342.5 parent: 2 - - uid: 11353 + - uid: 11340 components: - type: Transform pos: -0.5,-342.5 parent: 2 - - uid: 11378 + - uid: 11341 components: - type: Transform pos: 3.5,-368.5 parent: 2 - - uid: 11379 + - uid: 11342 components: - type: Transform pos: -2.5,-368.5 parent: 2 - - uid: 11403 + - uid: 11343 components: - type: Transform pos: 3.5,-366.5 parent: 2 - - uid: 11404 + - uid: 11344 components: - type: Transform pos: 3.5,-365.5 parent: 2 - - uid: 11405 + - uid: 11345 components: - type: Transform pos: -2.5,-366.5 parent: 2 - - uid: 11406 + - uid: 11346 components: - type: Transform pos: -2.5,-365.5 parent: 2 - - uid: 11408 + - uid: 11347 components: - type: Transform pos: -0.5,-368.5 parent: 2 - proto: LockerFreezer entities: - - uid: 1939 + - uid: 11348 components: - type: Transform pos: -2.5,-90.5 parent: 2 - - uid: 1941 + - uid: 11349 components: - type: Transform pos: -0.5,-89.5 parent: 2 - proto: LockerFreezerVaultFilled entities: - - uid: 83 + - uid: 11350 components: - type: Transform pos: -0.5,-1.5 @@ -75547,62 +74999,62 @@ entities: showEnts: False occludes: True ents: - - 76 + - 11351 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerHeadOfPersonnelFilled entities: - - uid: 2232 + - uid: 11352 components: - type: Transform pos: -1.5,-117.5 parent: 2 - proto: LockerHeadOfSecurityFilled entities: - - uid: 11098 + - uid: 11353 components: - type: Transform pos: -5.5,-344.5 parent: 2 - proto: LockerMedicalFilled entities: - - uid: 2440 + - uid: 11354 components: - type: Transform pos: -0.5,-194.5 parent: 2 - - uid: 3175 + - uid: 11355 components: - type: Transform pos: 3.5,-193.5 parent: 2 - - uid: 3177 + - uid: 11356 components: - type: Transform pos: 3.5,-194.5 parent: 2 - proto: LockerMedicineFilled entities: - - uid: 291 + - uid: 11357 components: - type: Transform pos: 7.5,-171.5 parent: 2 - - uid: 294 + - uid: 11358 components: - type: Transform pos: 3.5,-176.5 parent: 2 - - uid: 2370 + - uid: 11359 components: - type: Transform pos: 5.5,-180.5 parent: 2 - proto: LockerMime entities: - - uid: 2019 + - uid: 5479 components: - type: Transform pos: -8.5,-121.5 @@ -75631,171 +75083,171 @@ entities: showEnts: False occludes: True ents: - - 11491 - - 11453 - - 11452 - - 11288 - - 11287 - - 11286 - - 11661 + - 5485 + - 5480 + - 5482 + - 5484 + - 5481 + - 5483 + - 5486 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerParamedicFilled entities: - - uid: 2047 + - uid: 11360 components: - type: Transform pos: -2.5,-166.5 parent: 2 - proto: LockerQuarterMasterFilled entities: - - uid: 9012 + - uid: 11361 components: - type: Transform pos: 6.5,-285.5 parent: 2 - proto: LockerResearchDirectorFilled entities: - - uid: 10049 + - uid: 11362 components: - type: Transform pos: -8.5,-305.5 parent: 2 - proto: LockerSalvageSpecialistFilled entities: - - uid: 8489 + - uid: 11363 components: - type: Transform pos: -6.5,-287.5 parent: 2 - - uid: 8494 + - uid: 11364 components: - type: Transform pos: -6.5,-285.5 parent: 2 - - uid: 8507 + - uid: 11365 components: - type: Transform pos: -6.5,-286.5 parent: 2 - proto: LockerScienceFilled entities: - - uid: 10026 + - uid: 11366 components: - type: Transform pos: 7.5,-302.5 parent: 2 - - uid: 10028 + - uid: 11367 components: - type: Transform pos: 4.5,-310.5 parent: 2 - - uid: 10038 + - uid: 11368 components: - type: Transform pos: -2.5,-313.5 parent: 2 - - uid: 10039 + - uid: 11369 components: - type: Transform pos: -2.5,-314.5 parent: 2 - - uid: 10088 + - uid: 11370 components: - type: Transform pos: -2.5,-315.5 parent: 2 - - uid: 10128 + - uid: 11371 components: - type: Transform pos: -6.5,-302.5 parent: 2 - proto: LockerSecurityFilled entities: - - uid: 596 + - uid: 11372 components: - type: Transform pos: -8.5,-338.5 parent: 2 - - uid: 1145 + - uid: 11373 components: - type: Transform pos: -8.5,-339.5 parent: 2 - - uid: 7216 + - uid: 11374 components: - type: Transform pos: -8.5,-337.5 parent: 2 - - uid: 7249 + - uid: 11375 components: - type: Transform pos: -8.5,-340.5 parent: 2 - - uid: 7254 + - uid: 11376 components: - type: Transform pos: -7.5,-336.5 parent: 2 - - uid: 9416 + - uid: 11377 components: - type: Transform pos: -7.5,-342.5 parent: 2 - - uid: 10747 + - uid: 11378 components: - type: Transform pos: -8.5,-341.5 parent: 2 - proto: LockerWardenFilled entities: - - uid: 12854 + - uid: 11379 components: - type: Transform pos: 1.5,-363.5 parent: 2 - proto: LockerWeldingSuppliesFilled entities: - - uid: 3673 + - uid: 11380 components: - type: Transform pos: 5.5,-111.5 parent: 2 - - uid: 14346 + - uid: 11381 components: - type: Transform pos: -2.5,-261.5 parent: 2 - - uid: 14347 + - uid: 11382 components: - type: Transform pos: 3.5,-261.5 parent: 2 - proto: LuxuryPen entities: - - uid: 11103 + - uid: 11383 components: - type: Transform pos: 5.7372117,-332.35062 parent: 2 - proto: MachineAnomalyGenerator entities: - - uid: 9998 + - uid: 11384 components: - type: Transform pos: 6.5,-300.5 parent: 2 - proto: MachineAnomalyVessel entities: - - uid: 10010 + - uid: 11385 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-299.5 parent: 2 - - uid: 10011 + - uid: 11386 components: - type: Transform rot: -1.5707963267948966 rad @@ -75803,13 +75255,13 @@ entities: parent: 2 - proto: MachineAPE entities: - - uid: 10006 + - uid: 11387 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-304.5 parent: 2 - - uid: 10007 + - uid: 11388 components: - type: Transform rot: -1.5707963267948966 rad @@ -75817,143 +75269,143 @@ entities: parent: 2 - proto: MachineArtifactAnalyzer entities: - - uid: 10029 + - uid: 11389 components: - type: Transform pos: -8.5,-314.5 parent: 2 - proto: MachineCentrifuge entities: - - uid: 3161 + - uid: 11390 components: - type: Transform pos: 4.5,-165.5 parent: 2 - proto: MachineElectrolysisUnit entities: - - uid: 3698 + - uid: 11391 components: - type: Transform pos: 7.5,-168.5 parent: 2 - proto: MachineFrame entities: - - uid: 16496 + - uid: 11392 components: - type: Transform pos: -1.5,-172.5 parent: 2 - proto: MachineFrameDestroyed entities: - - uid: 6704 + - uid: 11393 components: - type: Transform pos: 31.5,-260.5 parent: 2 - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 10716 + - uid: 11394 components: - type: Transform pos: -3.9900005,-346.49026 parent: 2 - - uid: 10718 + - uid: 11395 components: - type: Transform pos: -4.0056252,-346.584 parent: 2 - proto: MagicDiceBag entities: - - uid: 14459 + - uid: 11396 components: - type: Transform pos: 17.444256,-79.34277 parent: 2 - proto: MailingUnit entities: - - uid: 2711 + - uid: 11397 components: - type: Transform pos: 4.5,-137.5 parent: 2 - type: MailingUnit tag: Chapel - - uid: 5864 + - uid: 11398 components: - type: Transform pos: -0.5,-279.5 parent: 2 - type: MailingUnit tag: Cargo - - uid: 6643 + - uid: 11399 components: - type: Transform pos: 6.5,-176.5 parent: 2 - type: MailingUnit tag: Medical - - uid: 8111 + - uid: 11400 components: - type: Transform pos: 13.5,-250.5 parent: 2 - type: MailingUnit tag: Engineering - - uid: 9040 + - uid: 11401 components: - type: Transform pos: -6.5,-142.5 parent: 2 - type: MailingUnit tag: Library - - uid: 12147 + - uid: 11402 components: - type: Transform pos: 2.5,-91.5 parent: 2 - type: MailingUnit tag: Kitchen - - uid: 12394 + - uid: 11403 components: - type: Transform pos: 2.5,-119.5 parent: 2 - type: MailingUnit tag: HoP Office - - uid: 13434 + - uid: 11404 components: - type: Transform pos: -3.5,-342.5 parent: 2 - - uid: 13518 + - uid: 11405 components: - type: Transform pos: 4.5,-10.5 parent: 2 - type: MailingUnit tag: Bridge - - uid: 13625 + - uid: 11406 components: - type: Transform pos: 0.5,-61.5 parent: 2 - type: MailingUnit tag: Bar - - uid: 13819 + - uid: 11407 components: - type: Transform pos: -3.5,-288.5 parent: 2 - type: MailingUnit tag: Salvage - - uid: 14134 + - uid: 11408 components: - type: Transform pos: -3.5,-303.5 parent: 2 - type: MailingUnit tag: Science - - uid: 17005 + - uid: 11409 components: - type: Transform pos: -13.5,-261.5 @@ -75962,373 +75414,373 @@ entities: tag: Atmos - proto: MaintenanceFluffSpawner entities: - - uid: 1036 + - uid: 11410 components: - type: Transform pos: -5.5,-44.5 parent: 2 - - uid: 1133 + - uid: 11411 components: - type: Transform pos: -3.5,-38.5 parent: 2 - - uid: 1134 + - uid: 11412 components: - type: Transform pos: -3.5,-36.5 parent: 2 - - uid: 2757 + - uid: 11413 components: - type: Transform pos: -2.5,-146.5 parent: 2 - - uid: 7403 + - uid: 11414 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-139.5 parent: 2 - - uid: 7404 + - uid: 11415 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-139.5 parent: 2 - - uid: 7405 + - uid: 11416 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-138.5 parent: 2 - - uid: 7406 + - uid: 11417 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-152.5 parent: 2 - - uid: 7407 + - uid: 11418 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-152.5 parent: 2 - - uid: 11698 + - uid: 11419 components: - type: Transform pos: -6.5,-146.5 parent: 2 - - uid: 13432 + - uid: 11420 components: - type: Transform pos: -3.5,-32.5 parent: 2 - - uid: 14651 + - uid: 11421 components: - type: Transform pos: 14.5,-82.5 parent: 2 - - uid: 14652 + - uid: 11422 components: - type: Transform pos: 17.5,-70.5 parent: 2 - - uid: 14653 + - uid: 11423 components: - type: Transform pos: 14.5,-68.5 parent: 2 - - uid: 14654 + - uid: 11424 components: - type: Transform pos: 13.5,-73.5 parent: 2 - - uid: 14681 + - uid: 11425 components: - type: Transform pos: -12.5,-168.5 parent: 2 - proto: MaintenancePlantSpawner entities: - - uid: 1033 + - uid: 11426 components: - type: Transform pos: -5.5,-34.5 parent: 2 - - uid: 1035 + - uid: 11427 components: - type: Transform pos: -3.5,-41.5 parent: 2 - - uid: 1590 + - uid: 11428 components: - type: Transform pos: 5.5,-59.5 parent: 2 - - uid: 1591 + - uid: 11429 components: - type: Transform pos: 6.5,-54.5 parent: 2 - - uid: 1596 + - uid: 11430 components: - type: Transform pos: 4.5,-66.5 parent: 2 - - uid: 1608 + - uid: 11431 components: - type: Transform pos: 5.5,-71.5 parent: 2 - - uid: 3561 + - uid: 11432 components: - type: Transform pos: -5.5,-162.5 parent: 2 - - uid: 5256 + - uid: 11433 components: - type: Transform pos: 7.5,-162.5 parent: 2 - - uid: 7412 + - uid: 11434 components: - type: Transform pos: 16.5,-158.5 parent: 2 - - uid: 7413 + - uid: 11435 components: - type: Transform pos: 15.5,-163.5 parent: 2 - - uid: 7414 + - uid: 11436 components: - type: Transform pos: 14.5,-158.5 parent: 2 - - uid: 12117 + - uid: 11437 components: - type: Transform pos: -6.5,-36.5 parent: 2 - - uid: 14624 + - uid: 11438 components: - type: Transform pos: -5.5,-243.5 parent: 2 - - uid: 16498 + - uid: 11439 components: - type: Transform pos: -14.5,-165.5 parent: 2 - - uid: 16499 + - uid: 11440 components: - type: Transform pos: -14.5,-164.5 parent: 2 - - uid: 16516 + - uid: 11441 components: - type: Transform pos: -11.5,-161.5 parent: 2 - - uid: 16518 + - uid: 11442 components: - type: Transform pos: -12.5,-164.5 parent: 2 - - uid: 16520 + - uid: 11443 components: - type: Transform pos: -13.5,-166.5 parent: 2 - - uid: 16521 + - uid: 11444 components: - type: Transform pos: -12.5,-167.5 parent: 2 - - uid: 16522 + - uid: 11445 components: - type: Transform pos: -12.5,-166.5 parent: 2 - - uid: 16523 + - uid: 11446 components: - type: Transform pos: -9.5,-167.5 parent: 2 - - uid: 16524 + - uid: 11447 components: - type: Transform pos: -8.5,-162.5 parent: 2 - - uid: 16884 + - uid: 11448 components: - type: Transform pos: -5.5,-250.5 parent: 2 - proto: MaintenanceToolSpawner entities: - - uid: 1169 + - uid: 11449 components: - type: Transform pos: 3.5,-18.5 parent: 2 - - uid: 2673 + - uid: 11450 components: - type: Transform pos: 4.5,-143.5 parent: 2 - - uid: 2756 + - uid: 11451 components: - type: Transform pos: -3.5,-148.5 parent: 2 - - uid: 3639 + - uid: 11452 components: - type: Transform pos: -2.5,-180.5 parent: 2 - - uid: 7408 + - uid: 11453 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-146.5 parent: 2 - - uid: 7409 + - uid: 11454 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-153.5 parent: 2 - - uid: 7410 + - uid: 11455 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-139.5 parent: 2 - - uid: 9059 + - uid: 11456 components: - type: Transform pos: 3.5,-282.5 parent: 2 - - uid: 9060 + - uid: 11457 components: - type: Transform pos: 3.5,-282.5 parent: 2 - - uid: 14626 + - uid: 11458 components: - type: Transform pos: -5.5,-244.5 parent: 2 - - uid: 14680 + - uid: 11459 components: - type: Transform pos: -14.5,-161.5 parent: 2 - - uid: 16887 + - uid: 11460 components: - type: Transform pos: -4.5,-251.5 parent: 2 - proto: MaintenanceWeaponSpawner entities: - - uid: 1106 + - uid: 11461 components: - type: Transform pos: 6.5,-27.5 parent: 2 - - uid: 2750 + - uid: 11462 components: - type: Transform pos: -2.5,-148.5 parent: 2 - - uid: 7411 + - uid: 11463 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-159.5 parent: 2 - - uid: 16515 + - uid: 11464 components: - type: Transform pos: -11.5,-164.5 parent: 2 - - uid: 16904 + - uid: 11465 components: - type: Transform pos: -13.5,-161.5 parent: 2 - proto: Matchbox entities: - - uid: 14413 + - uid: 11466 components: - type: Transform pos: 13.58873,-63.406937 parent: 2 - proto: MaterialBones1 entities: - - uid: 1178 + - uid: 11467 components: - type: Transform pos: -9.6216,-313.45743 parent: 2 - - uid: 1328 + - uid: 11468 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.432205,-287.74188 parent: 2 - - uid: 2268 + - uid: 11469 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.485611,-116.31554 parent: 2 - - uid: 12160 + - uid: 11470 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.70648,-164.34258 parent: 2 - - uid: 12161 + - uid: 11471 components: - type: Transform rot: 3.141592653589793 rad pos: 3.2381563,-139.7225 parent: 2 - - uid: 12162 + - uid: 11472 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.6467605,-95.3029 parent: 2 - - uid: 12163 + - uid: 11473 components: - type: Transform pos: 7.7499275,-57.722916 parent: 2 - - uid: 12164 + - uid: 11474 components: - type: Transform pos: 4.1805468,-18.559465 parent: 2 - - uid: 12165 + - uid: 11475 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.3194995,-200.24161 parent: 2 - - uid: 12168 + - uid: 11476 components: - type: Transform pos: -7.709251,-14.40967 parent: 2 - - uid: 12169 + - uid: 11477 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.665835,-223.53601 parent: 2 - - uid: 12171 + - uid: 11478 components: - type: Transform rot: 3.141592653589793 rad @@ -76336,192 +75788,192 @@ entities: parent: 2 - proto: MaterialCloth entities: - - uid: 2261 + - uid: 11479 components: - type: Transform pos: 2.2574189,-121.30031 parent: 2 - proto: MaterialDiamond1 entities: - - uid: 95 + - uid: 11480 components: - type: Transform pos: -2.44932,-1.350307 parent: 2 - proto: MaterialDurathread entities: - - uid: 2259 + - uid: 11481 components: - type: Transform pos: 2.6536188,-121.53795 parent: 2 - proto: MaterialReclaimer entities: - - uid: 9053 + - uid: 11482 components: - type: Transform pos: 6.5,-276.5 parent: 2 - proto: MaterialWoodPlank10 entities: - - uid: 6887 + - uid: 11483 components: - type: Transform pos: 19.673317,-257.24585 parent: 2 - proto: MatterBinStockPart entities: - - uid: 9979 + - uid: 11484 components: - type: Transform pos: -1.6846497,-303.9585 parent: 2 - proto: MedicalBed entities: - - uid: 477 + - uid: 11485 components: - type: Transform pos: 3.5,-172.5 parent: 2 - - uid: 478 + - uid: 11486 components: - type: Transform pos: 8.5,-174.5 parent: 2 - - uid: 2419 + - uid: 11487 components: - type: Transform pos: 8.5,-172.5 parent: 2 - - uid: 3136 + - uid: 11488 components: - type: Transform pos: 8.5,-176.5 parent: 2 - - uid: 3169 + - uid: 11489 components: - type: Transform pos: 3.5,-174.5 parent: 2 - - uid: 11437 + - uid: 11490 components: - type: Transform pos: -4.5,-361.5 parent: 2 - proto: MedicalTechFab entities: - - uid: 3219 + - uid: 11491 components: - type: Transform pos: -0.5,-192.5 parent: 2 - proto: MedkitAdvancedFilled entities: - - uid: 403 + - uid: 11492 components: - type: Transform pos: 1.6380901,2.7440202 parent: 2 - - uid: 11429 + - uid: 11493 components: - type: Transform pos: -6.360816,-360.66074 parent: 2 - proto: MedkitBruteFilled entities: - - uid: 3232 + - uid: 11494 components: - type: Transform pos: 1.9111176,-192.26358 parent: 2 - - uid: 3233 + - uid: 11495 components: - type: Transform pos: 2.104815,-192.52763 parent: 2 - proto: MedkitBurnFilled entities: - - uid: 3226 + - uid: 11496 components: - type: Transform pos: 3.7108743,-192.53125 parent: 2 - - uid: 3227 + - uid: 11497 components: - type: Transform pos: 3.5171762,-192.26721 parent: 2 - proto: MedkitFilled entities: - - uid: 3235 + - uid: 11498 components: - type: Transform pos: 1.6602318,-193.5479 parent: 2 - - uid: 3236 + - uid: 11499 components: - type: Transform pos: 1.4137071,-193.27406 parent: 2 - - uid: 3237 + - uid: 11500 components: - type: Transform pos: 1.6367531,-192.97285 parent: 2 - - uid: 3238 + - uid: 11501 components: - type: Transform pos: 1.4137071,-192.68338 parent: 2 - - uid: 8892 + - uid: 11502 components: - type: Transform pos: -7.402346,-271.4695 parent: 2 - - uid: 11435 + - uid: 11503 components: - type: Transform pos: -6.627599,-360.45245 parent: 2 - proto: MedkitOxygenFilled entities: - - uid: 3228 + - uid: 11504 components: - type: Transform pos: 2.9762833,-192.27135 parent: 2 - - uid: 3229 + - uid: 11505 components: - type: Transform pos: 3.1699817,-192.5354 parent: 2 - proto: MedkitRadiationFilled entities: - - uid: 3230 + - uid: 11506 components: - type: Transform pos: 2.436729,-192.26717 parent: 2 - proto: MedkitToxinFilled entities: - - uid: 2761 + - uid: 11507 components: - type: Transform pos: 6.701955,-163.31392 parent: 2 - - uid: 3231 + - uid: 11508 components: - type: Transform pos: 2.6417062,-192.53575 parent: 2 - proto: MicroManipulatorStockPart entities: - - uid: 9971 + - uid: 11509 components: - type: Transform pos: -1.635678,-304.48248 parent: 2 - - uid: 9978 + - uid: 11510 components: - type: Transform rot: -1.5707963267948966 rad @@ -76529,287 +75981,287 @@ entities: parent: 2 - proto: MiningWindow entities: - - uid: 3246 + - uid: 11511 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-136.5 parent: 2 - - uid: 4182 + - uid: 11512 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-86.5 parent: 2 - - uid: 7253 + - uid: 11513 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-144.5 parent: 2 - - uid: 7256 + - uid: 11514 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-147.5 parent: 2 - - uid: 7257 + - uid: 11515 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-144.5 parent: 2 - - uid: 7258 + - uid: 11516 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-145.5 parent: 2 - - uid: 7259 + - uid: 11517 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-146.5 parent: 2 - - uid: 7260 + - uid: 11518 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-147.5 parent: 2 - - uid: 7265 + - uid: 11519 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-138.5 parent: 2 - - uid: 7266 + - uid: 11520 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-139.5 parent: 2 - - uid: 7267 + - uid: 11521 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-139.5 parent: 2 - - uid: 7268 + - uid: 11522 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-138.5 parent: 2 - - uid: 7273 + - uid: 11523 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-153.5 parent: 2 - - uid: 7274 + - uid: 11524 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-152.5 parent: 2 - - uid: 7275 + - uid: 11525 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-153.5 parent: 2 - - uid: 7276 + - uid: 11526 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-152.5 parent: 2 - - uid: 7299 + - uid: 11527 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-160.5 parent: 2 - - uid: 7300 + - uid: 11528 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-159.5 parent: 2 - - uid: 7301 + - uid: 11529 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-159.5 parent: 2 - - uid: 7302 + - uid: 11530 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-160.5 parent: 2 - - uid: 7309 + - uid: 11531 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-166.5 parent: 2 - - uid: 7310 + - uid: 11532 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-165.5 parent: 2 - - uid: 14249 + - uid: 11533 components: - type: Transform pos: 12.5,-79.5 parent: 2 - - uid: 14250 + - uid: 11534 components: - type: Transform pos: 12.5,-78.5 parent: 2 - - uid: 14251 + - uid: 11535 components: - type: Transform pos: 12.5,-77.5 parent: 2 - - uid: 14252 + - uid: 11536 components: - type: Transform pos: 18.5,-77.5 parent: 2 - - uid: 14253 + - uid: 11537 components: - type: Transform pos: 18.5,-78.5 parent: 2 - - uid: 14254 + - uid: 11538 components: - type: Transform pos: 18.5,-79.5 parent: 2 - - uid: 14255 + - uid: 11539 components: - type: Transform pos: 18.5,-73.5 parent: 2 - - uid: 14256 + - uid: 11540 components: - type: Transform pos: 18.5,-74.5 parent: 2 - - uid: 14257 + - uid: 11541 components: - type: Transform pos: 18.5,-72.5 parent: 2 - - uid: 14258 + - uid: 11542 components: - type: Transform pos: 12.5,-72.5 parent: 2 - - uid: 14259 + - uid: 11543 components: - type: Transform pos: 12.5,-73.5 parent: 2 - - uid: 14260 + - uid: 11544 components: - type: Transform pos: 12.5,-74.5 parent: 2 - - uid: 14272 + - uid: 11545 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-87.5 parent: 2 - - uid: 14276 + - uid: 11546 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-86.5 parent: 2 - - uid: 14281 + - uid: 11547 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-86.5 parent: 2 - - uid: 14284 + - uid: 11548 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-136.5 parent: 2 - - uid: 14285 + - uid: 11549 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-136.5 parent: 2 - - uid: 14286 + - uid: 11550 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-135.5 parent: 2 - - uid: 14414 + - uid: 11551 components: - type: Transform pos: 16.5,-76.5 parent: 2 - - uid: 14415 + - uid: 11552 components: - type: Transform pos: 14.5,-76.5 parent: 2 - proto: MiningWindowDiagonal entities: - - uid: 4198 + - uid: 11553 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-137.5 parent: 2 - - uid: 7490 + - uid: 11554 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-137.5 parent: 2 - - uid: 9808 + - uid: 11555 components: - type: Transform pos: 14.5,-135.5 parent: 2 - - uid: 9814 + - uid: 11556 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-135.5 parent: 2 - - uid: 14004 + - uid: 11557 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-85.5 parent: 2 - - uid: 14097 + - uid: 11558 components: - type: Transform pos: 16.5,-85.5 parent: 2 - - uid: 14101 + - uid: 11559 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-87.5 parent: 2 - - uid: 14282 + - uid: 11560 components: - type: Transform rot: 1.5707963267948966 rad @@ -76817,19 +76269,19 @@ entities: parent: 2 - proto: Mirror entities: - - uid: 2873 + - uid: 11561 components: - type: Transform pos: -3.5,-153.5 parent: 2 - - uid: 2874 + - uid: 11562 components: - type: Transform pos: -2.5,-154.5 parent: 2 - proto: MopBucket entities: - - uid: 14774 + - uid: 11563 components: - type: Transform pos: 3.5661294,-32.585365 @@ -76843,122 +76295,122 @@ entities: shark_slot: !type:ContainerSlot showEnts: False occludes: True - ent: 14775 + ent: 11564 - proto: MopItem entities: - - uid: 1734 + - uid: 627 + components: + - type: Transform + parent: 624 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11565 components: - type: Transform pos: -2.979488,-53.533066 parent: 2 - - uid: 3243 + - uid: 11566 components: - type: Transform pos: -1.3489041,-172.98175 parent: 2 - - uid: 12296 + - uid: 11567 components: - type: Transform pos: -4.5275626,-374.4991 parent: 2 - - uid: 14478 - components: - - type: Transform - parent: 14476 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Morgue entities: - - uid: 2693 + - uid: 7557 + components: + - type: Transform + pos: -3.5,-172.5 + parent: 2 + - uid: 11568 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-138.5 parent: 2 - - uid: 2783 + - uid: 11569 components: - type: Transform pos: -4.5,-172.5 parent: 2 - - uid: 2889 + - uid: 11570 components: - type: Transform pos: -4.5,-175.5 parent: 2 - - uid: 2903 + - uid: 11571 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-177.5 parent: 2 - - uid: 2908 + - uid: 11572 components: - type: Transform pos: -3.5,-175.5 parent: 2 - - uid: 2983 + - uid: 11573 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-174.5 parent: 2 - - uid: 2984 + - uid: 11574 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-174.5 parent: 2 - - uid: 3045 + - uid: 11575 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-177.5 parent: 2 - - uid: 3047 + - uid: 11576 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-177.5 parent: 2 - - uid: 3049 + - uid: 11577 components: - type: Transform pos: -2.5,-172.5 parent: 2 - - uid: 3076 - components: - - type: Transform - pos: -3.5,-172.5 - parent: 2 - proto: MothroachCube entities: - - uid: 13991 + - uid: 11579 components: - type: Transform pos: 20.53401,-238.32663 parent: 2 - proto: MouseTimedSpawner entities: - - uid: 8968 + - uid: 11580 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 14691 + - uid: 11581 components: - type: Transform pos: -6.5,-169.5 parent: 2 - proto: Multitool entities: - - uid: 12376 + - uid: 11582 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4878173,-317.32074 parent: 2 - - uid: 15095 + - uid: 11583 components: - type: Transform rot: -1.5707963267948966 rad @@ -76966,59 +76418,59 @@ entities: parent: 2 - proto: MysteryFigureBoxTrash entities: - - uid: 14731 + - uid: 11584 components: - type: Transform pos: -6.5606046,-189.40254 parent: 2 - - uid: 14732 + - uid: 11585 components: - type: Transform pos: -6.3614616,-189.46121 parent: 2 - proto: NitrogenCanister entities: - - uid: 3602 + - uid: 11586 components: - type: Transform pos: -7.5,-175.5 parent: 2 - - uid: 9822 + - uid: 11587 components: - type: Transform pos: -4.5,-311.5 parent: 2 - - uid: 11937 + - uid: 11588 components: - type: Transform pos: -13.5,-250.5 parent: 2 - - uid: 12143 + - uid: 11589 components: - type: Transform pos: 4.5,-1.5 parent: 2 - - uid: 16957 + - uid: 11590 components: - type: Transform pos: -21.5,-257.5 parent: 2 - proto: NitrousOxideCanister entities: - - uid: 11220 + - uid: 11591 components: - type: Transform pos: 5.5,-355.5 parent: 2 - proto: NoticeBoard entities: - - uid: 2785 + - uid: 11592 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-142.5 parent: 2 - - uid: 12137 + - uid: 11593 components: - type: Transform rot: 3.141592653589793 rad @@ -77026,7 +76478,7 @@ entities: parent: 2 - proto: NuclearBomb entities: - - uid: 82 + - uid: 11594 components: - type: Transform rot: 3.141592653589793 rad @@ -77034,193 +76486,193 @@ entities: parent: 2 - proto: NuclearBombKeg entities: - - uid: 1634 + - uid: 11595 components: - type: Transform pos: 5.5,-66.5 parent: 2 - proto: OperatingTable entities: - - uid: 3778 + - uid: 11596 components: - type: Transform pos: 1.5,-198.5 parent: 2 - - uid: 6913 + - uid: 11597 components: - type: Transform pos: -11.5,-165.5 parent: 2 - - uid: 6960 + - uid: 11598 components: - type: Transform pos: -11.5,-166.5 parent: 2 - - uid: 6964 + - uid: 11599 components: - type: Transform pos: -11.5,-164.5 parent: 2 - proto: OreBag entities: - - uid: 8956 + - uid: 11600 components: - type: Transform pos: -4.660206,-273.15723 parent: 2 - - uid: 8957 + - uid: 11601 components: - type: Transform pos: -4.3602595,-273.51703 parent: 2 - proto: OreProcessor entities: - - uid: 8856 + - uid: 11602 components: - type: Transform pos: -1.5,-270.5 parent: 2 - proto: OxygenCanister entities: - - uid: 7196 + - uid: 11603 components: - type: Transform pos: -21.5,-242.5 parent: 2 - - uid: 8891 + - uid: 11604 components: - type: Transform pos: -6.5,-268.5 parent: 2 - - uid: 9992 + - uid: 11605 components: - type: Transform pos: -5.5,-312.5 parent: 2 - - uid: 11914 + - uid: 11606 components: - type: Transform pos: -21.5,-255.5 parent: 2 - - uid: 12140 + - uid: 11607 components: - type: Transform pos: 4.5,-2.5 parent: 2 - - uid: 14640 + - uid: 11608 components: - type: Transform pos: -6.5,-258.5 parent: 2 - proto: PaintingAmogusTriptych entities: - - uid: 14569 + - uid: 11609 components: - type: Transform pos: 13.5,-308.5 parent: 2 - proto: PaintingSkeletonCigarette entities: - - uid: 14384 + - uid: 11610 components: - type: Transform pos: 13.5,-59.5 parent: 2 - proto: Paper entities: - - uid: 1458 + - uid: 11611 components: - type: Transform pos: -5.538568,-72.16771 parent: 2 - - uid: 4686 + - uid: 11612 components: - type: Transform pos: -5.6735435,-72.06651 parent: 2 - - uid: 6645 + - uid: 11613 components: - type: Transform pos: 1.2017322,-250.54102 parent: 2 - - uid: 6646 + - uid: 11614 components: - type: Transform pos: 1.1885252,-250.9767 parent: 2 - - uid: 11069 + - uid: 11615 components: - type: Transform pos: 5.1001754,-328.37433 parent: 2 - - uid: 11070 + - uid: 11616 components: - type: Transform pos: 5.271862,-328.51956 parent: 2 - proto: PaperBin10 entities: - - uid: 318 + - uid: 11617 components: - type: Transform pos: -1.5,-9.5 parent: 2 - proto: PaperBin20 entities: - - uid: 216 + - uid: 11618 components: - type: Transform pos: 6.5,-6.5 parent: 2 - - uid: 2748 + - uid: 11619 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-121.5 parent: 2 - - uid: 10164 + - uid: 11620 components: - type: Transform pos: -1.5,-303.5 parent: 2 - - uid: 11067 + - uid: 11621 components: - type: Transform pos: 6.5,-332.5 parent: 2 - proto: PaperBin5 entities: - - uid: 2746 + - uid: 11622 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-139.5 parent: 2 - - uid: 14786 + - uid: 11623 components: - type: Transform pos: -5.5,-72.5 parent: 2 - proto: PaperOffice entities: - - uid: 8542 + - uid: 11624 components: - type: Transform pos: 4.3584957,-272.45734 parent: 2 - - uid: 9082 + - uid: 11625 components: - type: Transform pos: 4.538463,-272.60727 parent: 2 - proto: PaperScrap entities: - - uid: 2636 + - uid: 11626 components: - type: Transform pos: -6.3057356,-152.6655 parent: 2 - - uid: 2751 + - uid: 11627 components: - type: Transform rot: 3.141592653589793 rad @@ -77228,7 +76680,7 @@ entities: parent: 2 - proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 8939 + - uid: 11628 components: - type: Transform rot: 1.5707963267948966 rad @@ -77236,7 +76688,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 7727 + - uid: 11629 components: - type: Transform rot: 1.5707963267948966 rad @@ -77244,7 +76696,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 7581 + - uid: 11630 components: - type: Transform rot: 1.5707963267948966 rad @@ -77252,7 +76704,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 8523 + - uid: 11631 components: - type: Transform rot: 1.5707963267948966 rad @@ -77260,7 +76712,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 8100 + - uid: 11632 components: - type: Transform rot: 1.5707963267948966 rad @@ -77268,7 +76720,7 @@ entities: parent: 2 - proto: ParticleAcceleratorFuelChamber entities: - - uid: 7461 + - uid: 11633 components: - type: Transform rot: 1.5707963267948966 rad @@ -77276,7 +76728,7 @@ entities: parent: 2 - proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 8488 + - uid: 11634 components: - type: Transform rot: 1.5707963267948966 rad @@ -77284,41 +76736,41 @@ entities: parent: 2 - proto: Pen entities: - - uid: 217 + - uid: 11635 components: - type: Transform pos: 6.0078807,-6.5636206 parent: 2 - - uid: 218 + - uid: 11636 components: - type: Transform pos: 6.1091127,-6.4286876 parent: 2 - - uid: 2740 + - uid: 11637 components: - type: Transform pos: -5.6306825,-140.2427 parent: 2 - - uid: 2760 + - uid: 11638 components: - type: Transform pos: -5.401766,-139.93465 parent: 2 - - uid: 9084 + - uid: 11639 components: - type: Transform pos: 4.3734927,-272.86963 parent: 2 - proto: PhoneInstrument entities: - - uid: 207 + - uid: 11640 components: - type: Transform pos: 6.5365367,-7.3394823 parent: 2 - proto: PianoInstrument entities: - - uid: 7212 + - uid: 11641 components: - type: Transform rot: -1.5707963267948966 rad @@ -77326,68 +76778,68 @@ entities: parent: 2 - proto: Pickaxe entities: - - uid: 8860 + - uid: 11642 components: - type: Transform pos: -7.5629373,-271.36987 parent: 2 - - uid: 8864 + - uid: 11643 components: - type: Transform pos: -4.5245614,-272.94254 parent: 2 - - uid: 14358 + - uid: 11644 components: - type: Transform pos: 13.454053,-140.39398 parent: 2 - proto: PillCanisterIron entities: - - uid: 3696 + - uid: 11645 components: - type: Transform pos: 3.6948316,-173.37283 parent: 2 - proto: PinpointerNuclear entities: - - uid: 76 + - uid: 11351 components: - type: Transform - parent: 83 + parent: 11350 - type: Physics canCollide: False - type: InsideEntityStorage - proto: PlasmaCanister entities: - - uid: 1617 + - uid: 11646 components: - type: Transform pos: -21.5,-243.5 parent: 2 - - uid: 9821 + - uid: 11647 components: - type: Transform pos: -5.5,-311.5 parent: 2 - - uid: 11915 + - uid: 11648 components: - type: Transform pos: -21.5,-251.5 parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 2470 + - uid: 11649 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-340.5 parent: 2 - - uid: 2472 + - uid: 11650 components: - type: Transform pos: 6.5,-341.5 parent: 2 - - uid: 6889 + - uid: 11651 components: - type: Transform rot: 1.5707963267948966 rad @@ -77395,53 +76847,53 @@ entities: parent: 2 - proto: PlasticFlapsAirtightClear entities: - - uid: 8763 + - uid: 11652 components: - type: Transform pos: 2.5,-273.5 parent: 2 - - uid: 11957 + - uid: 11653 components: - type: Transform pos: 9.5,-277.5 parent: 2 - - uid: 11958 + - uid: 11654 components: - type: Transform pos: 11.5,-281.5 parent: 2 - - uid: 11959 + - uid: 11655 components: - type: Transform pos: 9.5,-281.5 parent: 2 - - uid: 11970 + - uid: 11656 components: - type: Transform pos: 11.5,-277.5 parent: 2 - proto: PlasticFlapsAirtightOpaque entities: - - uid: 4416 + - uid: 11657 components: - type: Transform pos: 4.5,-217.5 parent: 2 - proto: PlushieArachind entities: - - uid: 13435 + - uid: 11658 components: - type: Transform pos: -0.6106252,-27.432035 parent: 2 - proto: PlushieCarp entities: - - uid: 3706 + - uid: 11659 components: - type: Transform pos: 6.685664,-122.428696 parent: 2 - - uid: 3708 + - uid: 11660 components: - type: Transform rot: 3.141592653589793 rad @@ -77449,45 +76901,45 @@ entities: parent: 2 - proto: PlushieDiona entities: - - uid: 2253 + - uid: 11661 components: - type: Transform pos: 1.9108882,-40.77967 parent: 2 - proto: PlushieHuman entities: - - uid: 4139 + - uid: 11662 components: - type: Transform pos: -2.1023247,-3.5538187 parent: 2 - proto: PlushieLizard entities: - - uid: 14372 + - uid: 11663 components: - type: Transform pos: 16.56339,-60.471424 parent: 2 - proto: PlushieLizardMirrored entities: - - uid: 1461 + - uid: 11664 components: - type: Transform pos: 3.2787921,-72.53624 parent: 2 - - uid: 4140 + - uid: 11665 components: - type: Transform pos: -3.6779807,-3.613141 parent: 2 - - uid: 14334 + - uid: 11666 components: - type: Transform pos: 14.486045,-60.418846 parent: 2 - proto: PlushieRGBee entities: - - uid: 9987 + - uid: 11667 components: - type: Transform rot: 3.141592653589793 rad @@ -77495,7 +76947,7 @@ entities: parent: 2 - proto: PlushieRouny entities: - - uid: 3887 + - uid: 11668 components: - type: Transform rot: 1.5707963267948966 rad @@ -77503,64 +76955,64 @@ entities: parent: 2 - proto: PlushieSharkBlue entities: - - uid: 14775 + - uid: 11564 components: - type: Transform - parent: 14774 + parent: 11563 - type: Physics canCollide: False - proto: PlushieSpaceLizard entities: - - uid: 5362 + - uid: 11669 components: - type: Transform pos: -22.266762,-264.84647 parent: 2 - proto: PortableFlasher entities: - - uid: 14602 + - uid: 11670 components: - type: Transform pos: 9.5,-340.5 parent: 2 - proto: PortableGeneratorJrPacman entities: - - uid: 351 + - uid: 11671 components: - type: Transform pos: 6.5,-372.5 parent: 2 - - uid: 372 + - uid: 11672 components: - type: Transform pos: 7.5,-1.5 parent: 2 - - uid: 1050 + - uid: 11673 components: - type: Transform pos: -5.5,-35.5 parent: 2 - - uid: 2332 + - uid: 11674 components: - type: Transform pos: -2.5,-80.5 parent: 2 - - uid: 10720 + - uid: 11675 components: - type: Transform pos: -7.5,-174.5 parent: 2 - - uid: 10735 + - uid: 11676 components: - type: Transform pos: -6.5,-197.5 parent: 2 - - uid: 10848 + - uid: 11677 components: - type: Transform pos: 4.5,-67.5 parent: 2 - - uid: 14617 + - uid: 11678 components: - type: Transform anchored: True @@ -77568,100 +77020,100 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 14806 + - uid: 11679 components: - type: Transform pos: 16.5,-154.5 parent: 2 - - uid: 15585 + - uid: 11680 components: - type: Transform pos: 5.5,-222.5 parent: 2 - - uid: 15787 + - uid: 11681 components: - type: Transform pos: 16.5,-142.5 parent: 2 - - uid: 15790 + - uid: 11682 components: - type: Transform pos: 5.5,-259.5 parent: 2 - - uid: 15791 + - uid: 11683 components: - type: Transform pos: -5.5,-296.5 parent: 2 - - uid: 15792 + - uid: 11684 components: - type: Transform pos: -0.5,-268.5 parent: 2 - - uid: 15793 + - uid: 11685 components: - type: Transform pos: 1.5,-348.5 parent: 2 - proto: PortableGeneratorPacman entities: - - uid: 3745 + - uid: 11686 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 3787 + - uid: 11687 components: - type: Transform pos: 18.5,-241.5 parent: 2 - proto: PortableGeneratorSuperPacman entities: - - uid: 2379 + - uid: 11688 components: - type: Transform pos: 18.5,-242.5 parent: 2 - proto: PortableScrubber entities: - - uid: 3 + - uid: 11689 components: - type: Transform pos: -20.5,-263.5 parent: 2 - - uid: 2337 + - uid: 11690 components: - type: Transform pos: -11.5,-254.5 parent: 2 - - uid: 2387 + - uid: 11691 components: - type: Transform pos: -11.5,-253.5 parent: 2 - - uid: 4904 + - uid: 11692 components: - type: Transform pos: 19.5,-246.5 parent: 2 - - uid: 7436 + - uid: 11693 components: - type: Transform pos: 2.5,-112.5 parent: 2 - - uid: 12101 + - uid: 11694 components: - type: Transform pos: -19.5,-263.5 parent: 2 - - uid: 12631 + - uid: 11695 components: - type: Transform pos: 10.5,-310.5 parent: 2 - proto: PortalGatewayBlue entities: - - uid: 6620 + - uid: 11696 components: - type: Transform pos: -3.5,-254.5 @@ -77669,8 +77121,8 @@ entities: - type: LinkedEntity deleteOnEmptyLinks: True linkedEntities: - - 6619 - - uid: 15817 + - 11698 + - uid: 11697 components: - type: Transform pos: 4.5,-15.5 @@ -77678,10 +77130,10 @@ entities: - type: LinkedEntity deleteOnEmptyLinks: True linkedEntities: - - 15816 + - 11699 - proto: PortalGatewayOrange entities: - - uid: 6619 + - uid: 11698 components: - type: Transform pos: -0.5,-113.5 @@ -77689,8 +77141,8 @@ entities: - type: LinkedEntity deleteOnEmptyLinks: True linkedEntities: - - 6620 - - uid: 15816 + - 11696 + - uid: 11699 components: - type: Transform pos: -4.5,-330.5 @@ -77698,10 +77150,10 @@ entities: - type: LinkedEntity deleteOnEmptyLinks: True linkedEntities: - - 15817 + - 11697 - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 378 + - uid: 11700 components: - type: MetaData name: Beach Star Bratton! @@ -77711,18 +77163,18 @@ entities: parent: 2 - proto: PosterContrabandClown entities: - - uid: 875 + - uid: 11701 components: - type: Transform pos: 7.5,-14.5 parent: 2 - - uid: 1996 + - uid: 11702 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-124.5 parent: 2 - - uid: 14882 + - uid: 11703 components: - type: Transform rot: -1.5707963267948966 rad @@ -77730,41 +77182,41 @@ entities: parent: 2 - proto: PosterContrabandHighEffectEngineering entities: - - uid: 1210 + - uid: 11704 components: - type: Transform pos: 20.5,-249.5 parent: 2 - proto: PosterContrabandMissingGloves entities: - - uid: 7980 + - uid: 11705 components: - type: Transform pos: 20.5,-240.5 parent: 2 - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 3752 + - uid: 11706 components: - type: Transform pos: -3.5,-0.5 parent: 2 - proto: PosterContrabandSmoke entities: - - uid: 6624 + - uid: 11707 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-263.5 parent: 2 - - uid: 12669 + - uid: 11708 components: - type: Transform pos: 1.5,-267.5 parent: 2 - proto: PosterLegitIan entities: - - uid: 3709 + - uid: 11709 components: - type: Transform rot: 3.141592653589793 rad @@ -77772,7 +77224,7 @@ entities: parent: 2 - proto: PosterLegitLoveIan entities: - - uid: 3710 + - uid: 11710 components: - type: Transform rot: 3.141592653589793 rad @@ -77780,21 +77232,21 @@ entities: parent: 2 - proto: PosterLegitMime entities: - - uid: 2018 + - uid: 11711 components: - type: Transform pos: -5.5,-121.5 parent: 2 - proto: PosterLegitNanotrasenLogo entities: - - uid: 3895 + - uid: 11712 components: - type: Transform pos: -1.5,-0.5 parent: 2 - proto: PosterLegitReportCrimes entities: - - uid: 2393 + - uid: 11713 components: - type: Transform rot: -1.5707963267948966 rad @@ -77802,425 +77254,425 @@ entities: parent: 2 - proto: PosterLegitSafetyMothHardhat entities: - - uid: 4223 + - uid: 11714 components: - type: Transform pos: -7.5,-111.5 parent: 2 - proto: PottedPlant16 entities: - - uid: 3909 + - uid: 11715 components: - type: Transform pos: -3.5,-198.5 parent: 2 - proto: PottedPlant7 entities: - - uid: 12408 + - uid: 11716 components: - type: Transform pos: 5.5,-316.5 parent: 2 - - uid: 12440 + - uid: 11717 components: - type: Transform pos: -3.5,-299.5 parent: 2 - proto: PottedPlantBioluminscent entities: - - uid: 65 + - uid: 11718 components: - type: Transform pos: 2.5,1.5 parent: 2 - - uid: 133 + - uid: 11719 components: - type: Transform pos: 2.5,-1.5 parent: 2 - proto: PottedPlantRandom entities: - - uid: 223 + - uid: 11720 components: - type: Transform pos: 1.5,-12.5 parent: 2 - - uid: 313 + - uid: 11721 components: - type: Transform pos: -0.5,-9.5 parent: 2 - - uid: 775 + - uid: 11722 components: - type: Transform pos: -5.5,-32.5 parent: 2 - - uid: 2438 + - uid: 11723 components: - type: Transform pos: 6.5,-98.5 parent: 2 - - uid: 2439 + - uid: 11724 components: - type: Transform pos: -0.5,-98.5 parent: 2 - - uid: 2442 + - uid: 11725 components: - type: Transform pos: 4.5,-119.5 parent: 2 - - uid: 2509 + - uid: 11726 components: - type: Transform pos: -0.5,-135.5 parent: 2 - - uid: 2532 + - uid: 11727 components: - type: Transform pos: 6.5,-148.5 parent: 2 - - uid: 3129 + - uid: 11728 components: - type: Transform pos: -2.5,-247.5 parent: 2 - - uid: 7789 + - uid: 11729 components: - type: Transform pos: 7.5,-194.5 parent: 2 - - uid: 12701 + - uid: 11730 components: - type: Transform pos: 7.5,-306.5 parent: 2 - - uid: 12702 + - uid: 11731 components: - type: Transform pos: 1.5,-303.5 parent: 2 - - uid: 14745 + - uid: 11732 components: - type: Transform pos: -7.5,-309.5 parent: 2 - - uid: 14771 + - uid: 11733 components: - type: Transform pos: -1.5,-39.5 parent: 2 - - uid: 15032 + - uid: 11734 components: - type: Transform pos: -10.5,-132.5 parent: 2 - - uid: 15033 + - uid: 11735 components: - type: Transform pos: -7.5,-136.5 parent: 2 - - uid: 15035 + - uid: 11736 components: - type: Transform pos: 1.5,-110.5 parent: 2 - - uid: 15089 + - uid: 11737 components: - type: Transform pos: 10.5,-201.5 parent: 2 - proto: PottedPlantRandomPlastic entities: - - uid: 9046 + - uid: 11738 components: - type: Transform pos: 3.5,-269.5 parent: 2 - proto: PottedPlantRD entities: - - uid: 4045 + - uid: 11739 components: - type: Transform pos: -5.5,-305.5 parent: 2 - proto: PowerCellHigh entities: - - uid: 8833 + - uid: 11740 components: - type: Transform pos: 7.3432894,-115.48833 parent: 2 - - uid: 15160 + - uid: 11741 components: - type: Transform pos: 7.332042,-115.285934 parent: 2 - proto: PowerCellMedium entities: - - uid: 5120 + - uid: 11742 components: - type: Transform pos: 7.725722,-115.285934 parent: 2 - - uid: 15164 + - uid: 11743 components: - type: Transform pos: 7.7144737,-115.522064 parent: 2 - proto: PowerCellRecharger entities: - - uid: 1074 + - uid: 11744 components: - type: Transform pos: -3.5,-26.5 parent: 2 - - uid: 9058 + - uid: 11745 components: - type: Transform pos: 5.5,-282.5 parent: 2 - - uid: 9065 + - uid: 11746 components: - type: Transform pos: 8.5,-177.5 parent: 2 - - uid: 9066 + - uid: 11747 components: - type: Transform pos: -2.5,-136.5 parent: 2 - - uid: 9067 + - uid: 11748 components: - type: Transform pos: 6.5,-122.5 parent: 2 - - uid: 10129 + - uid: 11749 components: - type: Transform pos: -1.5,-301.5 parent: 2 - - uid: 15267 + - uid: 11750 components: - type: Transform pos: 4.5,-245.5 parent: 2 - proto: Poweredlight entities: - - uid: 1244 + - uid: 11751 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-251.5 parent: 2 - - uid: 1454 + - uid: 11752 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-257.5 parent: 2 - - uid: 1805 + - uid: 11753 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-165.5 parent: 2 - - uid: 2041 + - uid: 11754 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-168.5 parent: 2 - - uid: 2467 + - uid: 11755 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-237.5 parent: 2 - - uid: 3174 + - uid: 11756 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-169.5 parent: 2 - - uid: 3204 + - uid: 11757 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-172.5 parent: 2 - - uid: 3205 + - uid: 11758 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-177.5 parent: 2 - - uid: 3209 + - uid: 11759 components: - type: Transform pos: 1.5,-162.5 parent: 2 - - uid: 3211 + - uid: 11760 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-179.5 parent: 2 - - uid: 3212 + - uid: 11761 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-179.5 parent: 2 - - uid: 3249 + - uid: 11762 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-179.5 parent: 2 - - uid: 3679 + - uid: 11763 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-172.5 parent: 2 - - uid: 3776 + - uid: 11764 components: - type: Transform pos: -18.5,-236.5 parent: 2 - - uid: 3777 + - uid: 11765 components: - type: Transform pos: -21.5,-240.5 parent: 2 - - uid: 3779 + - uid: 11766 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-194.5 parent: 2 - - uid: 3780 + - uid: 11767 components: - type: Transform pos: -0.5,-192.5 parent: 2 - - uid: 3781 + - uid: 11768 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-190.5 parent: 2 - - uid: 3785 + - uid: 11769 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-196.5 parent: 2 - - uid: 3786 + - uid: 11770 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-196.5 parent: 2 - - uid: 3828 + - uid: 11771 components: - type: Transform pos: 4.5,-205.5 parent: 2 - - uid: 3953 + - uid: 11772 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-206.5 parent: 2 - - uid: 4233 + - uid: 11773 components: - type: Transform pos: -6.5,-83.5 parent: 2 - - uid: 4680 + - uid: 11774 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-191.5 parent: 2 - - uid: 4773 + - uid: 11775 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 - - uid: 4868 + - uid: 11776 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-89.5 parent: 2 - - uid: 4979 + - uid: 11777 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-86.5 parent: 2 - - uid: 5036 + - uid: 11778 components: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 6781 + - uid: 11779 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-203.5 parent: 2 - - uid: 7323 + - uid: 11780 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-247.5 parent: 2 - - uid: 7719 + - uid: 11781 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-201.5 parent: 2 - - uid: 7720 + - uid: 11782 components: - type: Transform pos: 7.5,-194.5 parent: 2 - - uid: 7904 + - uid: 11783 components: - type: Transform pos: -6.5,-189.5 parent: 2 - - uid: 13288 + - uid: 11784 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-261.5 parent: 2 - - uid: 16960 + - uid: 11785 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-252.5 parent: 2 - - uid: 16964 + - uid: 11786 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-265.5 parent: 2 - - uid: 16966 + - uid: 11787 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-241.5 parent: 2 - - uid: 16967 + - uid: 11788 components: - type: Transform rot: -1.5707963267948966 rad @@ -78228,7 +77680,7 @@ entities: parent: 2 - proto: PoweredlightBlue entities: - - uid: 5653 + - uid: 11789 components: - type: Transform rot: 1.5707963267948966 rad @@ -78236,22 +77688,22 @@ entities: parent: 2 - proto: PoweredlightCyan entities: - - uid: 6962 + - uid: 11790 components: - type: Transform pos: -3.5,-253.5 parent: 2 - - uid: 9692 + - uid: 11791 components: - type: Transform pos: 29.5,-306.5 parent: 2 - - uid: 10799 + - uid: 11792 components: - type: Transform pos: 4.5,-14.5 parent: 2 - - uid: 14344 + - uid: 11793 components: - type: Transform rot: 1.5707963267948966 rad @@ -78259,13 +77711,13 @@ entities: parent: 2 - proto: PoweredlightExterior entities: - - uid: 401 + - uid: 11794 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 2 - - uid: 421 + - uid: 11795 components: - type: Transform rot: 3.141592653589793 rad @@ -78273,13 +77725,13 @@ entities: parent: 2 - proto: PoweredlightGreen entities: - - uid: 4220 + - uid: 11796 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-110.5 parent: 2 - - uid: 9694 + - uid: 11797 components: - type: Transform rot: 3.141592653589793 rad @@ -78287,465 +77739,465 @@ entities: parent: 2 - proto: PoweredlightLED entities: - - uid: 202 + - uid: 11798 components: - type: Transform pos: 2.5,-249.5 parent: 2 - - uid: 757 + - uid: 11799 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-122.5 parent: 2 - - uid: 1389 + - uid: 11800 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-93.5 parent: 2 - - uid: 1394 + - uid: 11801 components: - type: Transform pos: -2.5,-90.5 parent: 2 - - uid: 1399 + - uid: 11802 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-91.5 parent: 2 - - uid: 1552 + - uid: 11803 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-85.5 parent: 2 - - uid: 1572 + - uid: 11804 components: - type: Transform pos: 2.5,-119.5 parent: 2 - - uid: 1574 + - uid: 11805 components: - type: Transform pos: -1.5,-119.5 parent: 2 - - uid: 1768 + - uid: 11806 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-113.5 parent: 2 - - uid: 2042 + - uid: 11807 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-5.5 parent: 2 - - uid: 2057 + - uid: 11808 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-176.5 parent: 2 - - uid: 2064 + - uid: 11809 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 2 - - uid: 2575 + - uid: 11810 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-252.5 parent: 2 - - uid: 3800 + - uid: 11811 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-261.5 parent: 2 - - uid: 4048 + - uid: 11812 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-299.5 parent: 2 - - uid: 4211 + - uid: 11813 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-249.5 parent: 2 - - uid: 4351 + - uid: 11814 components: - type: Transform pos: -7.5,-107.5 parent: 2 - - uid: 4415 + - uid: 11815 components: - type: Transform pos: 12.5,-256.5 parent: 2 - - uid: 5144 + - uid: 11816 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-256.5 parent: 2 - - uid: 5479 + - uid: 11817 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-249.5 parent: 2 - - uid: 5489 + - uid: 11818 components: - type: Transform pos: 8.5,-171.5 parent: 2 - - uid: 5503 + - uid: 11819 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-248.5 parent: 2 - - uid: 5504 + - uid: 11820 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-255.5 parent: 2 - - uid: 5654 + - uid: 11821 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-240.5 parent: 2 - - uid: 5661 + - uid: 11822 components: - type: Transform pos: -2.5,-165.5 parent: 2 - - uid: 5699 + - uid: 11823 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-142.5 parent: 2 - - uid: 5700 + - uid: 11824 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-142.5 parent: 2 - - uid: 5961 + - uid: 11825 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-117.5 parent: 2 - - uid: 6015 + - uid: 11826 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-11.5 parent: 2 - - uid: 6019 + - uid: 11827 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-9.5 parent: 2 - - uid: 6038 + - uid: 11828 components: - type: Transform pos: 4.5,2.5 parent: 2 - - uid: 6062 + - uid: 11829 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,2.5 parent: 2 - - uid: 6068 + - uid: 11830 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 2 - - uid: 7497 + - uid: 11831 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-240.5 parent: 2 - - uid: 7777 + - uid: 11832 components: - type: Transform pos: -7.5,-307.5 parent: 2 - - uid: 7858 + - uid: 11833 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-255.5 parent: 2 - - uid: 8193 + - uid: 11834 components: - type: Transform pos: 17.5,-245.5 parent: 2 - - uid: 8277 + - uid: 11835 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-255.5 parent: 2 - - uid: 8350 + - uid: 11836 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-249.5 parent: 2 - - uid: 8482 + - uid: 11837 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-309.5 parent: 2 - - uid: 8663 + - uid: 11838 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-253.5 parent: 2 - - uid: 9444 + - uid: 11839 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-311.5 parent: 2 - - uid: 9534 + - uid: 11840 components: - type: Transform pos: 20.5,-315.5 parent: 2 - - uid: 9535 + - uid: 11841 components: - type: Transform pos: 24.5,-315.5 parent: 2 - - uid: 9537 + - uid: 11842 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-317.5 parent: 2 - - uid: 9538 + - uid: 11843 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-317.5 parent: 2 - - uid: 9544 + - uid: 11844 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-311.5 parent: 2 - - uid: 9545 + - uid: 11845 components: - type: Transform pos: 23.5,-303.5 parent: 2 - - uid: 9546 + - uid: 11846 components: - type: Transform pos: 21.5,-303.5 parent: 2 - - uid: 9696 + - uid: 11847 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-306.5 parent: 2 - - uid: 9697 + - uid: 11848 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-308.5 parent: 2 - - uid: 9708 + - uid: 11849 components: - type: Transform pos: 24.5,-297.5 parent: 2 - - uid: 9709 + - uid: 11850 components: - type: Transform pos: 20.5,-297.5 parent: 2 - - uid: 9713 + - uid: 11851 components: - type: Transform pos: 1.5,-297.5 parent: 2 - - uid: 9714 + - uid: 11852 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-300.5 parent: 2 - - uid: 9734 + - uid: 11853 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-300.5 parent: 2 - - uid: 9988 + - uid: 11854 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-311.5 parent: 2 - - uid: 9989 + - uid: 11855 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-315.5 parent: 2 - - uid: 9990 + - uid: 11856 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-311.5 parent: 2 - - uid: 9991 + - uid: 11857 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-315.5 parent: 2 - - uid: 9994 + - uid: 11858 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-311.5 parent: 2 - - uid: 9995 + - uid: 11859 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-303.5 parent: 2 - - uid: 10030 + - uid: 11860 components: - type: Transform pos: 4.5,-306.5 parent: 2 - - uid: 10047 + - uid: 11861 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-308.5 parent: 2 - - uid: 10055 + - uid: 11862 components: - type: Transform pos: 11.5,-306.5 parent: 2 - - uid: 10056 + - uid: 11863 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-308.5 parent: 2 - - uid: 10081 + - uid: 11864 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-120.5 parent: 2 - - uid: 10094 + - uid: 11865 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-303.5 parent: 2 - - uid: 10095 + - uid: 11866 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-303.5 parent: 2 - - uid: 10109 + - uid: 11867 components: - type: Transform pos: -2.5,-299.5 parent: 2 - - uid: 10110 + - uid: 11868 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-305.5 parent: 2 - - uid: 10111 + - uid: 11869 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-305.5 parent: 2 - - uid: 10137 + - uid: 11870 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-319.5 parent: 2 - - uid: 10142 + - uid: 11871 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-318.5 parent: 2 - - uid: 10144 + - uid: 11872 components: - type: Transform pos: -6.5,-317.5 parent: 2 - - uid: 10146 + - uid: 11873 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-311.5 parent: 2 - - uid: 10147 + - uid: 11874 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-311.5 parent: 2 - - uid: 10766 + - uid: 11875 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-53.5 parent: 2 - - uid: 11080 + - uid: 11876 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-332.5 parent: 2 - - uid: 11349 + - uid: 11877 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-346.5 parent: 2 - - uid: 12226 + - uid: 11878 components: - type: Transform rot: -1.5707963267948966 rad @@ -78753,120 +78205,120 @@ entities: parent: 2 - proto: PoweredlightOrange entities: - - uid: 1764 + - uid: 11879 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-64.5 parent: 2 - - uid: 1803 + - uid: 11880 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 2 - - uid: 2290 + - uid: 11881 components: - type: Transform pos: 0.5,-61.5 parent: 2 - - uid: 2327 + - uid: 11882 components: - type: Transform pos: 6.5,-110.5 parent: 2 - - uid: 2421 + - uid: 11883 components: - type: Transform pos: -5.5,-138.5 parent: 2 - - uid: 4042 + - uid: 11884 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-252.5 parent: 2 - - uid: 4751 + - uid: 11885 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-263.5 parent: 2 - - uid: 5024 + - uid: 11886 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-45.5 parent: 2 - - uid: 5363 + - uid: 11887 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-263.5 parent: 2 - - uid: 5676 + - uid: 11888 components: - type: Transform pos: 3.5,-141.5 parent: 2 - - uid: 5781 + - uid: 11889 components: - type: Transform pos: 4.5,-137.5 parent: 2 - - uid: 5805 + - uid: 11890 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-152.5 parent: 2 - - uid: 6390 + - uid: 11891 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-220.5 parent: 2 - - uid: 6392 + - uid: 11892 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-220.5 parent: 2 - - uid: 6394 + - uid: 11893 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-229.5 parent: 2 - - uid: 6397 + - uid: 11894 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-229.5 parent: 2 - - uid: 6961 + - uid: 11895 components: - type: Transform pos: -0.5,-112.5 parent: 2 - - uid: 10136 + - uid: 11896 components: - type: Transform pos: -7.5,-297.5 parent: 2 - - uid: 10162 + - uid: 11897 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-285.5 parent: 2 - - uid: 10914 + - uid: 11898 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-331.5 parent: 2 - - uid: 11089 + - uid: 11899 components: - type: Transform rot: 1.5707963267948966 rad @@ -78874,37 +78326,37 @@ entities: parent: 2 - proto: PoweredlightPink entities: - - uid: 1687 + - uid: 11900 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-54.5 parent: 2 - - uid: 2292 + - uid: 11901 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-125.5 parent: 2 - - uid: 10089 + - uid: 11902 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-315.5 parent: 2 - - uid: 10145 + - uid: 11903 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-313.5 parent: 2 - - uid: 10530 + - uid: 11904 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-304.5 parent: 2 - - uid: 14893 + - uid: 11905 components: - type: Transform rot: 1.5707963267948966 rad @@ -78912,301 +78364,301 @@ entities: parent: 2 - proto: PoweredLightPostSmall entities: - - uid: 2067 + - uid: 11906 components: - type: Transform pos: 4.5,-39.5 parent: 2 - - uid: 2793 + - uid: 11907 components: - type: Transform pos: 12.5,-244.5 parent: 2 - - uid: 4224 + - uid: 11908 components: - type: Transform pos: 12.5,-259.5 parent: 2 - - uid: 4515 + - uid: 11909 components: - type: Transform pos: -8.5,-221.5 parent: 2 - - uid: 4516 + - uid: 11910 components: - type: Transform pos: -8.5,-228.5 parent: 2 - - uid: 4517 + - uid: 11911 components: - type: Transform pos: 9.5,-221.5 parent: 2 - - uid: 4518 + - uid: 11912 components: - type: Transform pos: 9.5,-228.5 parent: 2 - - uid: 9712 + - uid: 11913 components: - type: Transform pos: 29.5,-303.5 parent: 2 - - uid: 9716 + - uid: 11914 components: - type: Transform pos: 16.5,-309.5 parent: 2 - - uid: 9717 + - uid: 11915 components: - type: Transform pos: 16.5,-305.5 parent: 2 - - uid: 9719 + - uid: 11916 components: - type: Transform pos: 17.5,-314.5 parent: 2 - - uid: 9721 + - uid: 11917 components: - type: Transform pos: 17.5,-300.5 parent: 2 - - uid: 9733 + - uid: 11918 components: - type: Transform pos: 29.5,-311.5 parent: 2 - - uid: 14904 + - uid: 11919 components: - type: Transform pos: -10.5,-131.5 parent: 2 - - uid: 14905 + - uid: 11920 components: - type: Transform pos: -10.5,-136.5 parent: 2 - - uid: 14912 + - uid: 11921 components: - type: Transform pos: -6.5,-133.5 parent: 2 - - uid: 14948 + - uid: 11922 components: - type: Transform pos: -9.5,-143.5 parent: 2 - - uid: 14949 + - uid: 11923 components: - type: Transform pos: -9.5,-148.5 parent: 2 - - uid: 14992 + - uid: 11924 components: - type: Transform pos: -9.5,-155.5 parent: 2 - - uid: 15082 + - uid: 11925 components: - type: Transform pos: 8.5,-203.5 parent: 2 - - uid: 15083 + - uid: 11926 components: - type: Transform pos: 8.5,-192.5 parent: 2 - - uid: 15084 + - uid: 11927 components: - type: Transform pos: 12.5,-194.5 parent: 2 - - uid: 15085 + - uid: 11928 components: - type: Transform pos: 12.5,-201.5 parent: 2 - - uid: 16968 + - uid: 11929 components: - type: Transform pos: -10.5,-249.5 parent: 2 - - uid: 16969 + - uid: 11930 components: - type: Transform pos: -10.5,-261.5 parent: 2 - - uid: 16970 + - uid: 11931 components: - type: Transform pos: -10.5,-242.5 parent: 2 - proto: PoweredlightRed entities: - - uid: 1766 + - uid: 11932 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-78.5 parent: 2 - - uid: 2325 + - uid: 11933 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-78.5 parent: 2 - - uid: 2352 + - uid: 11934 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-132.5 parent: 2 - - uid: 2420 + - uid: 11935 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-132.5 parent: 2 - - uid: 5428 + - uid: 11936 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-51.5 parent: 2 - - uid: 5429 + - uid: 11937 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-51.5 parent: 2 - - uid: 5749 + - uid: 11938 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-159.5 parent: 2 - - uid: 5750 + - uid: 11939 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-159.5 parent: 2 - - uid: 5761 + - uid: 11940 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-105.5 parent: 2 - - uid: 5768 + - uid: 11941 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-105.5 parent: 2 - - uid: 5991 + - uid: 11942 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-24.5 parent: 2 - - uid: 6003 + - uid: 11943 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-24.5 parent: 2 - - uid: 6346 + - uid: 11944 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-240.5 parent: 2 - - uid: 6348 + - uid: 11945 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-240.5 parent: 2 - - uid: 6359 + - uid: 11946 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-214.5 parent: 2 - - uid: 6361 + - uid: 11947 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-214.5 parent: 2 - - uid: 7060 + - uid: 11948 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-186.5 parent: 2 - - uid: 7061 + - uid: 11949 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-186.5 parent: 2 - - uid: 8880 + - uid: 11950 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-267.5 parent: 2 - - uid: 8881 + - uid: 11951 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-267.5 parent: 2 - - uid: 9707 + - uid: 11952 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-294.5 parent: 2 - - uid: 9718 + - uid: 11953 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-294.5 parent: 2 - - uid: 11065 + - uid: 11954 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-326.5 parent: 2 - - uid: 11066 + - uid: 11955 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-326.5 parent: 2 - - uid: 11090 + - uid: 11956 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-353.5 parent: 2 - - uid: 11091 + - uid: 11957 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-353.5 parent: 2 - - uid: 12947 + - uid: 11958 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-380.5 parent: 2 - - uid: 12948 + - uid: 11959 components: - type: Transform rot: 3.141592653589793 rad @@ -79214,7 +78666,7 @@ entities: parent: 2 - proto: PoweredlightSodium entities: - - uid: 8525 + - uid: 11960 components: - type: Transform rot: 1.5707963267948966 rad @@ -79222,1247 +78674,1247 @@ entities: parent: 2 - proto: PoweredSmallLight entities: - - uid: 62 + - uid: 11961 components: - type: Transform pos: -6.5,-1.5 parent: 2 - - uid: 92 + - uid: 11962 components: - type: Transform pos: 8.5,-340.5 parent: 2 - - uid: 141 + - uid: 11963 components: - type: Transform pos: -0.5,-16.5 parent: 2 - - uid: 210 + - uid: 11964 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-13.5 parent: 2 - - uid: 356 + - uid: 11965 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-114.5 parent: 2 - - uid: 419 + - uid: 11966 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-8.5 parent: 2 - - uid: 641 + - uid: 11967 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-251.5 parent: 2 - - uid: 730 + - uid: 11968 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-43.5 parent: 2 - - uid: 764 + - uid: 11969 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-35.5 parent: 2 - - uid: 821 + - uid: 11970 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-100.5 parent: 2 - - uid: 891 + - uid: 11971 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 - - uid: 898 + - uid: 11972 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-59.5 parent: 2 - - uid: 1104 + - uid: 11973 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-34.5 parent: 2 - - uid: 1114 + - uid: 11974 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-62.5 parent: 2 - - uid: 1226 + - uid: 11975 components: - type: Transform pos: -3.5,-70.5 parent: 2 - - uid: 1327 + - uid: 11976 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-71.5 parent: 2 - - uid: 1467 + - uid: 11977 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-37.5 parent: 2 - - uid: 1471 + - uid: 11978 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 1488 + - uid: 11979 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-69.5 parent: 2 - - uid: 1489 + - uid: 11980 components: - type: Transform pos: 4.5,-56.5 parent: 2 - - uid: 1753 + - uid: 11981 components: - type: Transform pos: 1.5,-52.5 parent: 2 - - uid: 1809 + - uid: 11982 components: - type: Transform pos: 2.5,-94.5 parent: 2 - - uid: 1810 + - uid: 11983 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-82.5 parent: 2 - - uid: 1918 + - uid: 11984 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-115.5 parent: 2 - - uid: 1920 + - uid: 11985 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-121.5 parent: 2 - - uid: 1923 + - uid: 11986 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-109.5 parent: 2 - - uid: 2043 + - uid: 11987 components: - type: Transform pos: -7.5,-118.5 parent: 2 - - uid: 2044 + - uid: 11988 components: - type: Transform pos: -7.5,-115.5 parent: 2 - - uid: 2045 + - uid: 11989 components: - type: Transform pos: -7.5,-112.5 parent: 2 - - uid: 2050 + - uid: 11990 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-98.5 parent: 2 - - uid: 2051 + - uid: 11991 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-98.5 parent: 2 - - uid: 2052 + - uid: 11992 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-98.5 parent: 2 - - uid: 2053 + - uid: 11993 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-92.5 parent: 2 - - uid: 2054 + - uid: 11994 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-86.5 parent: 2 - - uid: 2055 + - uid: 11995 components: - type: Transform pos: 6.5,-81.5 parent: 2 - - uid: 2072 + - uid: 11996 components: - type: Transform pos: -6.5,-31.5 parent: 2 - - uid: 2185 + - uid: 11997 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-282.5 parent: 2 - - uid: 2218 + - uid: 11998 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-279.5 parent: 2 - - uid: 2219 + - uid: 11999 components: - type: Transform pos: 3.5,-276.5 parent: 2 - - uid: 2252 + - uid: 12000 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-32.5 parent: 2 - - uid: 2272 + - uid: 12001 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-125.5 parent: 2 - - uid: 2273 + - uid: 12002 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-125.5 parent: 2 - - uid: 2274 + - uid: 12003 components: - type: Transform pos: 4.5,-119.5 parent: 2 - - uid: 2275 + - uid: 12004 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-125.5 parent: 2 - - uid: 2326 + - uid: 12005 components: - type: Transform pos: 7.5,-36.5 parent: 2 - - uid: 2351 + - uid: 12006 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-17.5 parent: 2 - - uid: 2423 + - uid: 12007 components: - type: Transform pos: -5.5,-95.5 parent: 2 - - uid: 2441 + - uid: 12008 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-257.5 parent: 2 - - uid: 2592 + - uid: 12009 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-136.5 parent: 2 - - uid: 2658 + - uid: 12010 components: - type: Transform pos: 2.5,-148.5 parent: 2 - - uid: 2659 + - uid: 12011 components: - type: Transform pos: 6.5,-148.5 parent: 2 - - uid: 2759 + - uid: 12012 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-142.5 parent: 2 - - uid: 2821 + - uid: 12013 components: - type: Transform pos: -6.5,-150.5 parent: 2 - - uid: 2822 + - uid: 12014 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-152.5 parent: 2 - - uid: 2823 + - uid: 12015 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-151.5 parent: 2 - - uid: 2841 + - uid: 12016 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-142.5 parent: 2 - - uid: 2843 + - uid: 12017 components: - type: Transform pos: 1.5,-135.5 parent: 2 - - uid: 2888 + - uid: 12018 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-152.5 parent: 2 - - uid: 3016 + - uid: 12019 components: - type: Transform pos: 1.5,-25.5 parent: 2 - - uid: 3074 + - uid: 12020 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 2 - - uid: 3252 + - uid: 12021 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-180.5 parent: 2 - - uid: 3253 + - uid: 12022 components: - type: Transform pos: -7.5,-171.5 parent: 2 - - uid: 3332 + - uid: 12023 components: - type: Transform pos: 1.5,-160.5 parent: 2 - - uid: 3395 + - uid: 12024 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-181.5 parent: 2 - - uid: 3686 + - uid: 12025 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-285.5 parent: 2 - - uid: 3711 + - uid: 12026 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-127.5 parent: 2 - - uid: 3713 + - uid: 12027 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-161.5 parent: 2 - - uid: 3837 + - uid: 12028 components: - type: Transform pos: 1.5,-344.5 parent: 2 - - uid: 3923 + - uid: 12029 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-289.5 parent: 2 - - uid: 3978 + - uid: 12030 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-208.5 parent: 2 - - uid: 3988 + - uid: 12031 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-201.5 parent: 2 - - uid: 4144 + - uid: 12032 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-154.5 parent: 2 - - uid: 4145 + - uid: 12033 components: - type: Transform pos: 1.5,-187.5 parent: 2 - - uid: 4236 + - uid: 12034 components: - type: Transform pos: 1.5,-133.5 parent: 2 - - uid: 4241 + - uid: 12035 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 2 - - uid: 4259 + - uid: 12036 components: - type: Transform pos: 1.5,-79.5 parent: 2 - - uid: 4263 + - uid: 12037 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-73.5 parent: 2 - - uid: 4295 + - uid: 12038 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-221.5 parent: 2 - - uid: 4352 + - uid: 12039 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-228.5 parent: 2 - - uid: 4527 + - uid: 12040 components: - type: Transform pos: 1.5,-106.5 parent: 2 - - uid: 4684 + - uid: 12041 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-235.5 parent: 2 - - uid: 4687 + - uid: 12042 components: - type: Transform pos: 1.5,-241.5 parent: 2 - - uid: 4797 + - uid: 12043 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-253.5 parent: 2 - - uid: 5028 + - uid: 12044 components: - type: Transform pos: -0.5,-243.5 parent: 2 - - uid: 5029 + - uid: 12045 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-260.5 parent: 2 - - uid: 5071 + - uid: 12046 components: - type: Transform pos: 4.5,-345.5 parent: 2 - - uid: 5172 + - uid: 12047 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-249.5 parent: 2 - - uid: 5274 + - uid: 12048 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-255.5 parent: 2 - - uid: 5323 + - uid: 12049 components: - type: Transform pos: 6.5,-342.5 parent: 2 - - uid: 5324 + - uid: 12050 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-336.5 parent: 2 - - uid: 5340 + - uid: 12051 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-360.5 parent: 2 - - uid: 5351 + - uid: 12052 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-360.5 parent: 2 - - uid: 5355 + - uid: 12053 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-336.5 parent: 2 - - uid: 5383 + - uid: 12054 components: - type: Transform pos: 1.5,-214.5 parent: 2 - - uid: 5416 + - uid: 12055 components: - type: Transform pos: -0.5,-108.5 parent: 2 - - uid: 5884 + - uid: 12056 components: - type: Transform pos: -6.5,-29.5 parent: 2 - - uid: 5963 + - uid: 12057 components: - type: Transform pos: 7.5,-43.5 parent: 2 - - uid: 5965 + - uid: 12058 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-44.5 parent: 2 - - uid: 5970 + - uid: 12059 components: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 6618 + - uid: 12060 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-29.5 parent: 2 - - uid: 7483 + - uid: 12061 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-262.5 parent: 2 - - uid: 8018 + - uid: 12062 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-287.5 parent: 2 - - uid: 8357 + - uid: 12063 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-245.5 parent: 2 - - uid: 8372 + - uid: 12064 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-260.5 parent: 2 - - uid: 8442 + - uid: 12065 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-244.5 parent: 2 - - uid: 8711 + - uid: 12066 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-275.5 parent: 2 - - uid: 8728 + - uid: 12067 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-288.5 parent: 2 - - uid: 8741 + - uid: 12068 components: - type: Transform pos: -1.5,-270.5 parent: 2 - - uid: 8767 + - uid: 12069 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-282.5 parent: 2 - - uid: 8768 + - uid: 12070 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-276.5 parent: 2 - - uid: 8879 + - uid: 12071 components: - type: Transform pos: 1.5,-268.5 parent: 2 - - uid: 8885 + - uid: 12072 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-270.5 parent: 2 - - uid: 8888 + - uid: 12073 components: - type: Transform pos: -6.5,-283.5 parent: 2 - - uid: 8955 + - uid: 12074 components: - type: Transform pos: -0.5,-273.5 parent: 2 - - uid: 8961 + - uid: 12075 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-286.5 parent: 2 - - uid: 9042 + - uid: 12076 components: - type: Transform pos: 7.5,-276.5 parent: 2 - - uid: 9044 + - uid: 12077 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-282.5 parent: 2 - - uid: 9068 + - uid: 12078 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-274.5 parent: 2 - - uid: 9070 + - uid: 12079 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-274.5 parent: 2 - - uid: 9071 + - uid: 12080 components: - type: Transform pos: 6.5,-270.5 parent: 2 - - uid: 9322 + - uid: 12081 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-281.5 parent: 2 - - uid: 9336 + - uid: 12082 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-277.5 parent: 2 - - uid: 9337 + - uid: 12083 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-270.5 parent: 2 - - uid: 9430 + - uid: 12084 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-54.5 parent: 2 - - uid: 9715 + - uid: 12085 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-287.5 parent: 2 - - uid: 9932 + - uid: 12086 components: - type: Transform pos: 3.5,-296.5 parent: 2 - - uid: 10148 + - uid: 12087 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-313.5 parent: 2 - - uid: 10150 + - uid: 12088 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-319.5 parent: 2 - - uid: 10152 + - uid: 12089 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10529 + - uid: 12090 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-298.5 parent: 2 - - uid: 10740 + - uid: 12091 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-321.5 parent: 2 - - uid: 10913 + - uid: 12092 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-342.5 parent: 2 - - uid: 11063 + - uid: 12093 components: - type: Transform pos: 1.5,-329.5 parent: 2 - - uid: 11120 + - uid: 12094 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-358.5 parent: 2 - - uid: 11188 + - uid: 12095 components: - type: Transform pos: 1.5,-362.5 parent: 2 - - uid: 11498 + - uid: 12096 components: - type: Transform pos: 7.5,-363.5 parent: 2 - - uid: 11713 + - uid: 12097 components: - type: Transform pos: -1.5,-356.5 parent: 2 - - uid: 11714 + - uid: 12098 components: - type: Transform pos: 2.5,-356.5 parent: 2 - - uid: 11717 + - uid: 12099 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-362.5 parent: 2 - - uid: 11718 + - uid: 12100 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-365.5 parent: 2 - - uid: 11719 + - uid: 12101 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-368.5 parent: 2 - - uid: 11720 + - uid: 12102 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-368.5 parent: 2 - - uid: 11722 + - uid: 12103 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-365.5 parent: 2 - - uid: 11723 + - uid: 12104 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-367.5 parent: 2 - - uid: 11724 + - uid: 12105 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-367.5 parent: 2 - - uid: 11727 + - uid: 12106 components: - type: Transform pos: -2.5,-370.5 parent: 2 - - uid: 11728 + - uid: 12107 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-362.5 parent: 2 - - uid: 11730 + - uid: 12108 components: - type: Transform pos: 3.5,-370.5 parent: 2 - - uid: 11731 + - uid: 12109 components: - type: Transform pos: 7.5,-360.5 parent: 2 - - uid: 11733 + - uid: 12110 components: - type: Transform pos: 7.5,-366.5 parent: 2 - - uid: 11734 + - uid: 12111 components: - type: Transform pos: -6.5,-366.5 parent: 2 - - uid: 11735 + - uid: 12112 components: - type: Transform pos: -6.5,-363.5 parent: 2 - - uid: 11736 + - uid: 12113 components: - type: Transform pos: -6.5,-360.5 parent: 2 - - uid: 11740 + - uid: 12114 components: - type: Transform pos: 4.5,-355.5 parent: 2 - - uid: 11741 + - uid: 12115 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-358.5 parent: 2 - - uid: 11742 + - uid: 12116 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-358.5 parent: 2 - - uid: 11746 + - uid: 12117 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-374.5 parent: 2 - - uid: 11747 + - uid: 12118 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-374.5 parent: 2 - - uid: 11748 + - uid: 12119 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-374.5 parent: 2 - - uid: 11749 + - uid: 12120 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-374.5 parent: 2 - - uid: 11750 + - uid: 12121 components: - type: Transform pos: 6.5,-369.5 parent: 2 - - uid: 11751 + - uid: 12122 components: - type: Transform pos: -5.5,-369.5 parent: 2 - - uid: 12138 + - uid: 12123 components: - type: Transform pos: 1.5,-327.5 parent: 2 - - uid: 12139 + - uid: 12124 components: - type: Transform pos: 1.5,-375.5 parent: 2 - - uid: 12343 + - uid: 12125 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-327.5 parent: 2 - - uid: 12371 + - uid: 12126 components: - type: Transform pos: 1.5,-295.5 parent: 2 - - uid: 12472 + - uid: 12127 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-260.5 parent: 2 - - uid: 12855 + - uid: 12128 components: - type: Transform pos: -0.5,-362.5 parent: 2 - - uid: 12915 + - uid: 12129 components: - type: Transform pos: 1.5,-354.5 parent: 2 - - uid: 12919 + - uid: 12130 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-348.5 parent: 2 - - uid: 14321 + - uid: 12131 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-63.5 parent: 2 - - uid: 14351 + - uid: 12132 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-246.5 parent: 2 - - uid: 14353 + - uid: 12133 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-63.5 parent: 2 - - uid: 14359 + - uid: 12134 components: - type: Transform pos: 16.5,-59.5 parent: 2 - - uid: 14419 + - uid: 12135 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-80.5 parent: 2 - - uid: 14463 + - uid: 12136 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-80.5 parent: 2 - - uid: 14465 + - uid: 12137 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-84.5 parent: 2 - - uid: 14466 + - uid: 12138 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-84.5 parent: 2 - - uid: 14467 + - uid: 12139 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-75.5 parent: 2 - - uid: 14468 + - uid: 12140 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-71.5 parent: 2 - - uid: 14469 + - uid: 12141 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-67.5 parent: 2 - - uid: 14470 + - uid: 12142 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-67.5 parent: 2 - - uid: 14471 + - uid: 12143 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-71.5 parent: 2 - - uid: 14472 + - uid: 12144 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-75.5 parent: 2 - - uid: 14563 + - uid: 12145 components: - type: Transform pos: 14.5,-59.5 parent: 2 - - uid: 14600 + - uid: 12146 components: - type: Transform pos: 5.5,-242.5 parent: 2 - - uid: 14606 + - uid: 12147 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-332.5 parent: 2 - - uid: 14622 + - uid: 12148 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 2 - - uid: 15293 + - uid: 12149 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-336.5 parent: 2 - - uid: 15789 + - uid: 12150 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-342.5 parent: 2 - - uid: 16660 + - uid: 12151 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-336.5 parent: 2 - - uid: 16698 + - uid: 12152 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-342.5 parent: 2 - - uid: 16699 + - uid: 12153 components: - type: Transform pos: -3.5,-334.5 parent: 2 - - uid: 16710 + - uid: 12154 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-336.5 parent: 2 - - uid: 16712 + - uid: 12155 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-340.5 parent: 2 - - uid: 16869 + - uid: 12156 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-251.5 parent: 2 - - uid: 16876 + - uid: 12157 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-245.5 parent: 2 - - uid: 16906 + - uid: 12158 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-168.5 parent: 2 - - uid: 16913 + - uid: 12159 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-168.5 parent: 2 - - uid: 16914 + - uid: 12160 components: - type: Transform pos: -14.5,-161.5 parent: 2 - - uid: 16915 + - uid: 12161 components: - type: Transform pos: -11.5,-161.5 parent: 2 - - uid: 16916 + - uid: 12162 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-166.5 parent: 2 - - uid: 16917 + - uid: 12163 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-163.5 parent: 2 - - uid: 16944 + - uid: 12164 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-166.5 parent: 2 - - uid: 16946 + - uid: 12165 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-177.5 parent: 2 - - uid: 16958 + - uid: 12166 components: - type: Transform pos: -7.5,-260.5 parent: 2 - - uid: 16962 + - uid: 12167 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-263.5 parent: 2 - - uid: 16963 + - uid: 12168 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-265.5 parent: 2 - - uid: 17004 + - uid: 12169 components: - type: Transform pos: -6.5,-248.5 parent: 2 - proto: PoweredSmallLightEmpty entities: - - uid: 1776 + - uid: 12170 components: - type: Transform pos: 13.5,-138.5 parent: 2 - - uid: 2732 + - uid: 12171 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-148.5 parent: 2 - - uid: 3947 + - uid: 12172 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-198.5 parent: 2 - - uid: 3948 + - uid: 12173 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-194.5 parent: 2 - - uid: 3981 + - uid: 12174 components: - type: Transform pos: -4.5,-204.5 parent: 2 - - uid: 3998 + - uid: 12175 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-202.5 parent: 2 - - uid: 7380 + - uid: 12176 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-154.5 parent: 2 - - uid: 7381 + - uid: 12177 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-148.5 parent: 2 - - uid: 7382 + - uid: 12178 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-148.5 parent: 2 - - uid: 7383 + - uid: 12179 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-143.5 parent: 2 - - uid: 7384 + - uid: 12180 components: - type: Transform rot: -1.5707963267948966 rad @@ -80470,689 +79922,689 @@ entities: parent: 2 - proto: Protolathe entities: - - uid: 10027 + - uid: 12181 components: - type: Transform pos: -4.5,-299.5 parent: 2 - proto: PumpkinLantern entities: - - uid: 1703 + - uid: 12182 components: - type: Transform pos: 6.365387,-27.206318 parent: 2 - proto: Rack entities: - - uid: 105 + - uid: 12183 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 2 - - uid: 120 + - uid: 12184 components: - type: Transform pos: 5.5,-345.5 parent: 2 - - uid: 422 + - uid: 12185 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 2 - - uid: 955 + - uid: 12186 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 2 - - uid: 1111 + - uid: 12187 components: - type: Transform pos: 6.5,-27.5 parent: 2 - - uid: 1112 + - uid: 12188 components: - type: Transform pos: 5.5,-31.5 parent: 2 - - uid: 1113 + - uid: 12189 components: - type: Transform pos: -5.5,-44.5 parent: 2 - - uid: 1116 + - uid: 12190 components: - type: Transform pos: -5.5,-39.5 parent: 2 - - uid: 1131 + - uid: 12191 components: - type: Transform pos: -3.5,-38.5 parent: 2 - - uid: 1132 + - uid: 12192 components: - type: Transform pos: -3.5,-36.5 parent: 2 - - uid: 1167 + - uid: 12193 components: - type: Transform pos: 3.5,-18.5 parent: 2 - - uid: 1583 + - uid: 12194 components: - type: Transform pos: 4.5,-59.5 parent: 2 - - uid: 1778 + - uid: 12195 components: - type: Transform pos: 4.5,-242.5 parent: 2 - - uid: 2381 + - uid: 12196 components: - type: Transform pos: 16.5,-242.5 parent: 2 - - uid: 2396 + - uid: 12197 components: - type: Transform pos: 20.5,-253.5 parent: 2 - - uid: 2436 + - uid: 12198 components: - type: Transform pos: 6.5,-108.5 parent: 2 - - uid: 2705 + - uid: 12199 components: - type: Transform pos: 3.5,-137.5 parent: 2 - - uid: 3571 + - uid: 12200 components: - type: Transform pos: -7.5,-177.5 parent: 2 - - uid: 3573 + - uid: 12201 components: - type: Transform pos: -2.5,-180.5 parent: 2 - - uid: 3971 + - uid: 12202 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-207.5 parent: 2 - - uid: 7791 + - uid: 12203 components: - type: Transform pos: 6.5,-242.5 parent: 2 - - uid: 8554 + - uid: 12204 components: - type: Transform pos: -5.5,-288.5 parent: 2 - - uid: 8651 + - uid: 12205 components: - type: Transform pos: -6.5,-283.5 parent: 2 - - uid: 9516 + - uid: 12206 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-18.5 parent: 2 - - uid: 10123 + - uid: 12207 components: - type: Transform pos: 7.5,-115.5 parent: 2 - - uid: 12210 + - uid: 12208 components: - type: Transform pos: -6.5,-17.5 parent: 2 - - uid: 12411 + - uid: 12209 components: - type: Transform pos: 5.5,-310.5 parent: 2 - - uid: 12423 + - uid: 12210 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-304.5 parent: 2 - - uid: 14627 + - uid: 12211 components: - type: Transform pos: -5.5,-244.5 parent: 2 - - uid: 14637 + - uid: 12212 components: - type: Transform pos: -2.5,-259.5 parent: 2 - - uid: 14643 + - uid: 12213 components: - type: Transform pos: 6.5,-260.5 parent: 2 - - uid: 15173 + - uid: 12214 components: - type: Transform pos: 9.5,-119.5 parent: 2 - - uid: 15174 + - uid: 12215 components: - type: Transform pos: 9.5,-115.5 parent: 2 - - uid: 15301 + - uid: 12216 components: - type: Transform pos: 3.5,-163.5 parent: 2 - - uid: 16885 + - uid: 12217 components: - type: Transform pos: -4.5,-251.5 parent: 2 - proto: RadiationCollectorNoTank entities: - - uid: 3192 + - uid: 12218 components: - type: Transform pos: 19.5,-240.5 parent: 2 - - uid: 6911 + - uid: 12219 components: - type: Transform pos: 19.5,-241.5 parent: 2 - - uid: 7441 + - uid: 12220 components: - type: Transform pos: 18.5,-240.5 parent: 2 - proto: RagItem entities: - - uid: 2128 + - uid: 628 + components: + - type: Transform + parent: 624 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 935 + components: + - type: Transform + parent: 932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12221 components: - type: Transform pos: -2.1022174,-60.36517 parent: 2 - - uid: 7427 + - uid: 12222 components: - type: Transform pos: 14.739458,-59.475845 parent: 2 - - uid: 7454 + - uid: 12223 components: - type: Transform pos: 16.746363,-59.466587 parent: 2 - - uid: 14480 - components: - - type: Transform - parent: 14476 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14766 - components: - - type: Transform - parent: 14755 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Railing entities: - - uid: 13 + - uid: 12224 components: - type: Transform pos: 2.5,-77.5 parent: 2 - - uid: 21 + - uid: 12225 components: - type: Transform pos: -1.5,-77.5 parent: 2 - - uid: 56 + - uid: 12226 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 2 - - uid: 57 + - uid: 12227 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,3.5 parent: 2 - - uid: 88 + - uid: 12228 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-3.5 parent: 2 - - uid: 91 + - uid: 12229 components: - type: Transform pos: -3.5,-1.5 parent: 2 - - uid: 786 + - uid: 12230 components: - type: Transform pos: 1.5,-38.5 parent: 2 - - uid: 787 + - uid: 12231 components: - type: Transform pos: 2.5,-38.5 parent: 2 - - uid: 788 + - uid: 12232 components: - type: Transform pos: 3.5,-38.5 parent: 2 - - uid: 796 + - uid: 12233 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-42.5 parent: 2 - - uid: 797 + - uid: 12234 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-42.5 parent: 2 - - uid: 798 + - uid: 12235 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-42.5 parent: 2 - - uid: 800 + - uid: 12236 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-41.5 parent: 2 - - uid: 801 + - uid: 12237 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-40.5 parent: 2 - - uid: 802 + - uid: 12238 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-39.5 parent: 2 - - uid: 824 + - uid: 12239 components: - type: Transform pos: 4.5,-38.5 parent: 2 - - uid: 826 + - uid: 12240 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-42.5 parent: 2 - - uid: 828 + - uid: 12241 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-40.5 parent: 2 - - uid: 829 + - uid: 12242 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-39.5 parent: 2 - - uid: 830 + - uid: 12243 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-41.5 parent: 2 - - uid: 2289 + - uid: 12244 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-280.5 parent: 2 - - uid: 2634 + - uid: 12245 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-142.5 parent: 2 - - uid: 2635 + - uid: 12246 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-142.5 parent: 2 - - uid: 2758 + - uid: 12247 components: - type: Transform pos: -0.5,-278.5 parent: 2 - - uid: 2849 + - uid: 12248 components: - type: Transform pos: 2.5,-23.5 parent: 2 - - uid: 3107 + - uid: 12249 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-48.5 parent: 2 - - uid: 3109 + - uid: 12250 components: - type: Transform pos: -1.5,-50.5 parent: 2 - - uid: 3527 + - uid: 12251 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 2 - - uid: 3533 + - uid: 12252 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-21.5 parent: 2 - - uid: 6712 + - uid: 12253 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-163.5 parent: 2 - - uid: 8036 + - uid: 12254 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-75.5 parent: 2 - - uid: 8467 + - uid: 12255 components: - type: Transform pos: -11.5,-166.5 parent: 2 - - uid: 8913 + - uid: 12256 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-75.5 parent: 2 - - uid: 9340 + - uid: 12257 components: - type: Transform pos: 2.5,-50.5 parent: 2 - - uid: 9341 + - uid: 12258 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-48.5 parent: 2 - - uid: 9344 + - uid: 12259 components: - type: Transform pos: -1.5,-23.5 parent: 2 - - uid: 9687 + - uid: 12260 components: - type: Transform pos: 2.5,-104.5 parent: 2 - - uid: 9689 + - uid: 12261 components: - type: Transform pos: -1.5,-104.5 parent: 2 - - uid: 9710 + - uid: 12262 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-102.5 parent: 2 - - uid: 9711 + - uid: 12263 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-102.5 parent: 2 - - uid: 9996 + - uid: 12264 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-300.5 parent: 2 - - uid: 10000 + - uid: 12265 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-299.5 parent: 2 - - uid: 10041 + - uid: 12266 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-311.5 parent: 2 - - uid: 10043 + - uid: 12267 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-312.5 parent: 2 - - uid: 10160 + - uid: 12268 components: - type: Transform pos: 2.5,-131.5 parent: 2 - - uid: 10573 + - uid: 12269 components: - type: Transform pos: -1.5,-131.5 parent: 2 - - uid: 10577 + - uid: 12270 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-129.5 parent: 2 - - uid: 10578 + - uid: 12271 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-129.5 parent: 2 - - uid: 10602 + - uid: 12272 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-156.5 parent: 2 - - uid: 10603 + - uid: 12273 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-156.5 parent: 2 - - uid: 10604 + - uid: 12274 components: - type: Transform pos: 2.5,-158.5 parent: 2 - - uid: 10605 + - uid: 12275 components: - type: Transform pos: -1.5,-158.5 parent: 2 - - uid: 10832 + - uid: 12276 components: - type: Transform pos: 2.5,-185.5 parent: 2 - - uid: 10842 + - uid: 12277 components: - type: Transform pos: -1.5,-185.5 parent: 2 - - uid: 10843 + - uid: 12278 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-183.5 parent: 2 - - uid: 10867 + - uid: 12279 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-183.5 parent: 2 - - uid: 11559 + - uid: 12280 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-210.5 parent: 2 - - uid: 11589 + - uid: 12281 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-210.5 parent: 2 - - uid: 11637 + - uid: 12282 components: - type: Transform pos: 2.5,-212.5 parent: 2 - - uid: 11646 + - uid: 12283 components: - type: Transform pos: -1.5,-212.5 parent: 2 - - uid: 11827 + - uid: 12284 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-379.5 parent: 2 - - uid: 11828 + - uid: 12285 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-377.5 parent: 2 - - uid: 11830 + - uid: 12286 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-379.5 parent: 2 - - uid: 11836 + - uid: 12287 components: - type: Transform pos: 2.5,-239.5 parent: 2 - - uid: 11837 + - uid: 12288 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-237.5 parent: 2 - - uid: 11838 + - uid: 12289 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-237.5 parent: 2 - - uid: 11839 + - uid: 12290 components: - type: Transform pos: -1.5,-239.5 parent: 2 - - uid: 12074 + - uid: 12291 components: - type: Transform pos: 2.5,-266.5 parent: 2 - - uid: 12075 + - uid: 12292 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-264.5 parent: 2 - - uid: 12093 + - uid: 12293 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-264.5 parent: 2 - - uid: 12104 + - uid: 12294 components: - type: Transform pos: -1.5,-266.5 parent: 2 - - uid: 13198 + - uid: 12295 components: - type: Transform pos: 2.5,-293.5 parent: 2 - - uid: 13208 + - uid: 12296 components: - type: Transform pos: -1.5,-293.5 parent: 2 - - uid: 13260 + - uid: 12297 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-291.5 parent: 2 - - uid: 13261 + - uid: 12298 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-291.5 parent: 2 - - uid: 14294 + - uid: 12299 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-323.5 parent: 2 - - uid: 14295 + - uid: 12300 components: - type: Transform pos: 2.5,-325.5 parent: 2 - - uid: 14296 + - uid: 12301 components: - type: Transform pos: -1.5,-325.5 parent: 2 - - uid: 14303 + - uid: 12302 components: - type: Transform rot: 3.141592653589793 rad @@ -81160,999 +80612,999 @@ entities: parent: 2 - proto: RailingCornerSmall entities: - - uid: 11 + - uid: 12303 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-51.5 parent: 2 - - uid: 48 + - uid: 12304 components: - type: Transform pos: 1.5,2.5 parent: 2 - - uid: 55 + - uid: 12305 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,2.5 parent: 2 - - uid: 100 + - uid: 12306 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 101 + - uid: 12307 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 2 - - uid: 201 + - uid: 12308 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-47.5 parent: 2 - - uid: 272 + - uid: 12309 components: - type: Transform pos: -1.5,-24.5 parent: 2 - - uid: 273 + - uid: 12310 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-24.5 parent: 2 - - uid: 275 + - uid: 12311 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-20.5 parent: 2 - - uid: 681 + - uid: 12312 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-37.5 parent: 2 - - uid: 682 + - uid: 12313 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-44.5 parent: 2 - - uid: 683 + - uid: 12314 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-42.5 parent: 2 - - uid: 696 + - uid: 12315 components: - type: Transform pos: -5.5,-32.5 parent: 2 - - uid: 698 + - uid: 12316 components: - type: Transform pos: -5.5,-30.5 parent: 2 - - uid: 700 + - uid: 12317 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-30.5 parent: 2 - - uid: 701 + - uid: 12318 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-28.5 parent: 2 - - uid: 793 + - uid: 12319 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-38.5 parent: 2 - - uid: 804 + - uid: 12320 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-38.5 parent: 2 - - uid: 806 + - uid: 12321 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-42.5 parent: 2 - - uid: 832 + - uid: 12322 components: - type: Transform pos: 5.5,-42.5 parent: 2 - - uid: 2181 + - uid: 12323 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-278.5 parent: 2 - - uid: 2282 + - uid: 12324 components: - type: Transform pos: 0.5,-280.5 parent: 2 - - uid: 2627 + - uid: 12325 components: - type: Transform pos: 3.5,-142.5 parent: 2 - - uid: 2637 + - uid: 12326 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-142.5 parent: 2 - - uid: 2647 + - uid: 12327 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-141.5 parent: 2 - - uid: 2648 + - uid: 12328 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-141.5 parent: 2 - - uid: 2649 + - uid: 12329 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-141.5 parent: 2 - - uid: 2650 + - uid: 12330 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-141.5 parent: 2 - - uid: 2893 + - uid: 12331 components: - type: Transform pos: -6.5,-152.5 parent: 2 - - uid: 2894 + - uid: 12332 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-152.5 parent: 2 - - uid: 2895 + - uid: 12333 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-150.5 parent: 2 - - uid: 2896 + - uid: 12334 components: - type: Transform pos: -6.5,-150.5 parent: 2 - - uid: 3064 + - uid: 12335 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-23.5 parent: 2 - - uid: 3091 + - uid: 12336 components: - type: Transform pos: 3.5,-51.5 parent: 2 - - uid: 3092 + - uid: 12337 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-21.5 parent: 2 - - uid: 3193 + - uid: 12338 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-50.5 parent: 2 - - uid: 3194 + - uid: 12339 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-47.5 parent: 2 - - uid: 3353 + - uid: 12340 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-47.5 parent: 2 - - uid: 3524 + - uid: 12341 components: - type: Transform pos: 3.5,-78.5 parent: 2 - - uid: 3525 + - uid: 12342 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-78.5 parent: 2 - - uid: 3526 + - uid: 12343 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-78.5 parent: 2 - - uid: 3534 + - uid: 12344 components: - type: Transform pos: 3.5,-21.5 parent: 2 - - uid: 3543 + - uid: 12345 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-23.5 parent: 2 - - uid: 4353 + - uid: 12346 components: - type: Transform pos: -1.5,-78.5 parent: 2 - - uid: 7834 + - uid: 12347 components: - type: Transform pos: 3.5,-48.5 parent: 2 - - uid: 7871 + - uid: 12348 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-20.5 parent: 2 - - uid: 7897 + - uid: 12349 components: - type: Transform pos: -1.5,-51.5 parent: 2 - - uid: 8065 + - uid: 12350 components: - type: Transform pos: 3.5,-75.5 parent: 2 - - uid: 8107 + - uid: 12351 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-77.5 parent: 2 - - uid: 8108 + - uid: 12352 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-20.5 parent: 2 - - uid: 8134 + - uid: 12353 components: - type: Transform pos: 3.5,-24.5 parent: 2 - - uid: 8481 + - uid: 12354 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-163.5 parent: 2 - - uid: 8687 + - uid: 12355 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-166.5 parent: 2 - - uid: 8690 + - uid: 12356 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-74.5 parent: 2 - - uid: 8812 + - uid: 12357 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-48.5 parent: 2 - - uid: 8825 + - uid: 12358 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-271.5 parent: 2 - - uid: 8826 + - uid: 12359 components: - type: Transform pos: -7.5,-274.5 parent: 2 - - uid: 8866 + - uid: 12360 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-51.5 parent: 2 - - uid: 8912 + - uid: 12361 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-50.5 parent: 2 - - uid: 8914 + - uid: 12362 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-77.5 parent: 2 - - uid: 9095 + - uid: 12363 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-75.5 parent: 2 - - uid: 9338 + - uid: 12364 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-74.5 parent: 2 - - uid: 9339 + - uid: 12365 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 parent: 2 - - uid: 9342 + - uid: 12366 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-47.5 parent: 2 - - uid: 9345 + - uid: 12367 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-24.5 parent: 2 - - uid: 9790 + - uid: 12368 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-104.5 parent: 2 - - uid: 9813 + - uid: 12369 components: - type: Transform pos: 3.5,-105.5 parent: 2 - - uid: 9815 + - uid: 12370 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-105.5 parent: 2 - - uid: 9907 + - uid: 12371 components: - type: Transform pos: -1.5,-105.5 parent: 2 - - uid: 9913 + - uid: 12372 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-105.5 parent: 2 - - uid: 9940 + - uid: 12373 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-104.5 parent: 2 - - uid: 9943 + - uid: 12374 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-101.5 parent: 2 - - uid: 9944 + - uid: 12375 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-101.5 parent: 2 - - uid: 9945 + - uid: 12376 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-102.5 parent: 2 - - uid: 9946 + - uid: 12377 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-101.5 parent: 2 - - uid: 10002 + - uid: 12378 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-301.5 parent: 2 - - uid: 10044 + - uid: 12379 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-101.5 parent: 2 - - uid: 10133 + - uid: 12380 components: - type: Transform pos: 3.5,-102.5 parent: 2 - - uid: 10579 + - uid: 12381 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-128.5 parent: 2 - - uid: 10580 + - uid: 12382 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-128.5 parent: 2 - - uid: 10581 + - uid: 12383 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-129.5 parent: 2 - - uid: 10586 + - uid: 12384 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-128.5 parent: 2 - - uid: 10594 + - uid: 12385 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-128.5 parent: 2 - - uid: 10595 + - uid: 12386 components: - type: Transform pos: 3.5,-129.5 parent: 2 - - uid: 10596 + - uid: 12387 components: - type: Transform pos: 3.5,-132.5 parent: 2 - - uid: 10597 + - uid: 12388 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-132.5 parent: 2 - - uid: 10598 + - uid: 12389 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-131.5 parent: 2 - - uid: 10599 + - uid: 12390 components: - type: Transform pos: -1.5,-132.5 parent: 2 - - uid: 10600 + - uid: 12391 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-132.5 parent: 2 - - uid: 10601 + - uid: 12392 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-131.5 parent: 2 - - uid: 10606 + - uid: 12393 components: - type: Transform pos: 3.5,-159.5 parent: 2 - - uid: 10607 + - uid: 12394 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-159.5 parent: 2 - - uid: 10608 + - uid: 12395 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-158.5 parent: 2 - - uid: 10609 + - uid: 12396 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-155.5 parent: 2 - - uid: 10726 + - uid: 12397 components: - type: Transform pos: 3.5,-156.5 parent: 2 - - uid: 10741 + - uid: 12398 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-155.5 parent: 2 - - uid: 10749 + - uid: 12399 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-155.5 parent: 2 - - uid: 10753 + - uid: 12400 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-155.5 parent: 2 - - uid: 10761 + - uid: 12401 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-156.5 parent: 2 - - uid: 10819 + - uid: 12402 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-159.5 parent: 2 - - uid: 10820 + - uid: 12403 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-158.5 parent: 2 - - uid: 10831 + - uid: 12404 components: - type: Transform pos: -1.5,-159.5 parent: 2 - - uid: 10875 + - uid: 12405 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-185.5 parent: 2 - - uid: 10969 + - uid: 12406 components: - type: Transform pos: 3.5,-186.5 parent: 2 - - uid: 10970 + - uid: 12407 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-186.5 parent: 2 - - uid: 11081 + - uid: 12408 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-186.5 parent: 2 - - uid: 11082 + - uid: 12409 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-185.5 parent: 2 - - uid: 11092 + - uid: 12410 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-182.5 parent: 2 - - uid: 11346 + - uid: 12411 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-182.5 parent: 2 - - uid: 11350 + - uid: 12412 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-182.5 parent: 2 - - uid: 11409 + - uid: 12413 components: - type: Transform pos: 3.5,-183.5 parent: 2 - - uid: 11475 + - uid: 12414 components: - type: Transform pos: -1.5,-186.5 parent: 2 - - uid: 11527 + - uid: 12415 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-183.5 parent: 2 - - uid: 11554 + - uid: 12416 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-182.5 parent: 2 - - uid: 11649 + - uid: 12417 components: - type: Transform pos: 3.5,-213.5 parent: 2 - - uid: 11653 + - uid: 12418 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-213.5 parent: 2 - - uid: 11670 + - uid: 12419 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-212.5 parent: 2 - - uid: 11671 + - uid: 12420 components: - type: Transform pos: -1.5,-213.5 parent: 2 - - uid: 11675 + - uid: 12421 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-213.5 parent: 2 - - uid: 11676 + - uid: 12422 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-212.5 parent: 2 - - uid: 11705 + - uid: 12423 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-209.5 parent: 2 - - uid: 11831 + - uid: 12424 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-209.5 parent: 2 - - uid: 11832 + - uid: 12425 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-210.5 parent: 2 - - uid: 11833 + - uid: 12426 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-209.5 parent: 2 - - uid: 11834 + - uid: 12427 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-209.5 parent: 2 - - uid: 11835 + - uid: 12428 components: - type: Transform pos: 3.5,-210.5 parent: 2 - - uid: 11899 + - uid: 12429 components: - type: Transform pos: 3.5,-240.5 parent: 2 - - uid: 11926 + - uid: 12430 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-240.5 parent: 2 - - uid: 11936 + - uid: 12431 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-239.5 parent: 2 - - uid: 11955 + - uid: 12432 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-236.5 parent: 2 - - uid: 11967 + - uid: 12433 components: - type: Transform pos: 3.5,-237.5 parent: 2 - - uid: 11990 + - uid: 12434 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-236.5 parent: 2 - - uid: 12007 + - uid: 12435 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-236.5 parent: 2 - - uid: 12012 + - uid: 12436 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-236.5 parent: 2 - - uid: 12013 + - uid: 12437 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-237.5 parent: 2 - - uid: 12020 + - uid: 12438 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-240.5 parent: 2 - - uid: 12023 + - uid: 12439 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-239.5 parent: 2 - - uid: 12073 + - uid: 12440 components: - type: Transform pos: -1.5,-240.5 parent: 2 - - uid: 12152 + - uid: 12441 components: - type: Transform pos: 3.5,-267.5 parent: 2 - - uid: 12195 + - uid: 12442 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-267.5 parent: 2 - - uid: 12200 + - uid: 12443 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-266.5 parent: 2 - - uid: 12214 + - uid: 12444 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-263.5 parent: 2 - - uid: 12220 + - uid: 12445 components: - type: Transform pos: 3.5,-264.5 parent: 2 - - uid: 12229 + - uid: 12446 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 12230 + - uid: 12447 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-263.5 parent: 2 - - uid: 12232 + - uid: 12448 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-263.5 parent: 2 - - uid: 12339 + - uid: 12449 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-264.5 parent: 2 - - uid: 12578 + - uid: 12450 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-267.5 parent: 2 - - uid: 12633 + - uid: 12451 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-266.5 parent: 2 - - uid: 13021 + - uid: 12452 components: - type: Transform pos: -1.5,-267.5 parent: 2 - - uid: 13262 + - uid: 12453 components: - type: Transform pos: 3.5,-294.5 parent: 2 - - uid: 13263 + - uid: 12454 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-294.5 parent: 2 - - uid: 13269 + - uid: 12455 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-293.5 parent: 2 - - uid: 13299 + - uid: 12456 components: - type: Transform pos: 3.5,-291.5 parent: 2 - - uid: 13445 + - uid: 12457 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-290.5 parent: 2 - - uid: 13449 + - uid: 12458 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-290.5 parent: 2 - - uid: 13995 + - uid: 12459 components: - type: Transform pos: -1.5,-294.5 parent: 2 - - uid: 14003 + - uid: 12460 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-294.5 parent: 2 - - uid: 14024 + - uid: 12461 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-293.5 parent: 2 - - uid: 14049 + - uid: 12462 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-290.5 parent: 2 - - uid: 14292 + - uid: 12463 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-290.5 parent: 2 - - uid: 14293 + - uid: 12464 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-291.5 parent: 2 - - uid: 14307 + - uid: 12465 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-325.5 parent: 2 - - uid: 14578 + - uid: 12466 components: - type: Transform pos: 3.5,-326.5 parent: 2 - - uid: 14609 + - uid: 12467 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-326.5 parent: 2 - - uid: 14613 + - uid: 12468 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-323.5 parent: 2 - - uid: 14614 + - uid: 12469 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-322.5 parent: 2 - - uid: 14619 + - uid: 12470 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-322.5 parent: 2 - - uid: 14620 + - uid: 12471 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-322.5 parent: 2 - - uid: 14621 + - uid: 12472 components: - type: Transform pos: 3.5,-323.5 parent: 2 - - uid: 14625 + - uid: 12473 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-322.5 parent: 2 - - uid: 14638 + - uid: 12474 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-325.5 parent: 2 - - uid: 14682 + - uid: 12475 components: - type: Transform pos: -1.5,-326.5 parent: 2 - - uid: 14683 + - uid: 12476 components: - type: Transform rot: -1.5707963267948966 rad @@ -82160,19 +81612,19 @@ entities: parent: 2 - proto: RandomArcade entities: - - uid: 9469 + - uid: 12477 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-308.5 parent: 2 - - uid: 10676 + - uid: 12478 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-373.5 parent: 2 - - uid: 10874 + - uid: 12479 components: - type: Transform rot: 3.141592653589793 rad @@ -82180,163 +81632,163 @@ entities: parent: 2 - proto: RandomArtifactSpawner entities: - - uid: 9997 + - uid: 12480 components: - type: Transform pos: -8.5,-314.5 parent: 2 - proto: RandomArtifactSpawner20 entities: - - uid: 13304 + - uid: 12481 components: - type: Transform pos: -9.5,-311.5 parent: 2 - proto: RandomBoard entities: - - uid: 2364 + - uid: 12482 components: - type: Transform pos: -3.5,-6.5 parent: 2 - - uid: 2382 + - uid: 12483 components: - type: Transform pos: -1.5,-7.5 parent: 2 - - uid: 2391 + - uid: 12484 components: - type: Transform pos: -3.5,-5.5 parent: 2 - - uid: 3747 + - uid: 12485 components: - type: Transform pos: -2.5,-7.5 parent: 2 - - uid: 6908 + - uid: 12486 components: - type: Transform pos: -3.5,-7.5 parent: 2 - - uid: 7191 + - uid: 12487 components: - type: Transform pos: -0.5,-7.5 parent: 2 - proto: RandomDrinkBottle entities: - - uid: 729 + - uid: 12488 components: - type: Transform pos: -2.5,-45.5 parent: 2 - - uid: 1272 + - uid: 12489 components: - type: Transform pos: -2.5,-63.5 parent: 2 - proto: RandomDrinkGlass entities: - - uid: 1276 + - uid: 12490 components: - type: Transform pos: -2.5,-64.5 parent: 2 - - uid: 1277 + - uid: 12491 components: - type: Transform pos: -2.5,-62.5 parent: 2 - - uid: 1413 + - uid: 12492 components: - type: Transform pos: 1.5,-66.5 parent: 2 - - uid: 1416 + - uid: 12493 components: - type: Transform pos: 1.5,-59.5 parent: 2 - - uid: 3206 + - uid: 12494 components: - type: Transform pos: -3.5,-58.5 parent: 2 - proto: RandomFoodBakedSingle entities: - - uid: 763 + - uid: 12495 components: - type: Transform pos: 5.5,-7.5 parent: 2 - - uid: 2073 + - uid: 12496 components: - type: Transform pos: -7.5,-115.5 parent: 2 - proto: RandomFoodBakedWhole entities: - - uid: 762 + - uid: 12497 components: - type: Transform pos: 4.5,-6.5 parent: 2 - - uid: 2147 + - uid: 12498 components: - type: Transform pos: -7.5,-118.5 parent: 2 - proto: RandomFoodMeal entities: - - uid: 1671 + - uid: 12499 components: - type: Transform pos: 3.5,-89.5 parent: 2 - - uid: 1748 + - uid: 12500 components: - type: Transform pos: -0.5,-86.5 parent: 2 - - uid: 2036 + - uid: 12501 components: - type: Transform pos: 4.5,-99.5 parent: 2 - proto: RandomFoodSingle entities: - - uid: 2034 + - uid: 12502 components: - type: Transform pos: 6.5,-94.5 parent: 2 - - uid: 2037 + - uid: 12503 components: - type: Transform pos: 0.5,-94.5 parent: 2 - - uid: 2038 + - uid: 12504 components: - type: Transform pos: 0.5,-94.5 parent: 2 - - uid: 2311 + - uid: 12505 components: - type: Transform pos: 3.5,-87.5 parent: 2 - - uid: 2312 + - uid: 12506 components: - type: Transform pos: 3.5,-90.5 parent: 2 - - uid: 4196 + - uid: 12507 components: - type: Transform pos: -2.5,-67.5 parent: 2 - - uid: 4519 + - uid: 12508 components: - type: Transform rot: -1.5707963267948966 rad @@ -82344,55 +81796,55 @@ entities: parent: 2 - proto: RandomInstruments entities: - - uid: 7765 + - uid: 12509 components: - type: Transform pos: 7.5,-196.5 parent: 2 - - uid: 13433 + - uid: 12510 components: - type: Transform pos: -2.5,-32.5 parent: 2 - proto: RandomPosterAny entities: - - uid: 12999 + - uid: 12511 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-317.5 parent: 2 - - uid: 13000 + - uid: 12512 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-302.5 parent: 2 - - uid: 13026 + - uid: 12513 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-229.5 parent: 2 - - uid: 13038 + - uid: 12514 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-149.5 parent: 2 - - uid: 13045 + - uid: 12515 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-114.5 parent: 2 - - uid: 13047 + - uid: 12516 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-120.5 parent: 2 - - uid: 13061 + - uid: 12517 components: - type: Transform rot: 3.141592653589793 rad @@ -82400,53 +81852,53 @@ entities: parent: 2 - proto: RandomPosterContraband entities: - - uid: 598 + - uid: 12518 components: - type: Transform pos: -5.5,-40.5 parent: 2 - - uid: 10833 + - uid: 12519 components: - type: Transform pos: -6.5,-18.5 parent: 2 - - uid: 12926 + - uid: 12520 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-374.5 parent: 2 - - uid: 12990 + - uid: 12521 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-373.5 parent: 2 - - uid: 13036 + - uid: 12522 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-180.5 parent: 2 - - uid: 13037 + - uid: 12523 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-153.5 parent: 2 - - uid: 13042 + - uid: 12524 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-109.5 parent: 2 - - uid: 13057 + - uid: 12525 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-70.5 parent: 2 - - uid: 13069 + - uid: 12526 components: - type: Transform rot: 3.141592653589793 rad @@ -82454,140 +81906,140 @@ entities: parent: 2 - proto: RandomPosterLegit entities: - - uid: 434 + - uid: 12527 components: - type: Transform pos: -4.5,3.5 parent: 2 - - uid: 771 + - uid: 12528 components: - type: Transform pos: 2.5,-33.5 parent: 2 - - uid: 772 + - uid: 12529 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-35.5 parent: 2 - - uid: 1419 + - uid: 12530 components: - type: Transform pos: 0.5,-65.5 parent: 2 - - uid: 4240 + - uid: 12531 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-8.5 parent: 2 - - uid: 7214 + - uid: 12532 components: - type: Transform pos: 2.5,-346.5 parent: 2 - - uid: 7753 + - uid: 12533 components: - type: Transform pos: 4.5,-207.5 parent: 2 - - uid: 10814 + - uid: 12534 components: - type: Transform pos: 2.5,-344.5 parent: 2 - - uid: 12993 + - uid: 12535 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-355.5 parent: 2 - - uid: 13001 + - uid: 12536 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-283.5 parent: 2 - - uid: 13002 + - uid: 12537 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-275.5 parent: 2 - - uid: 13012 + - uid: 12538 components: - type: Transform anchored: False rot: 3.141592653589793 rad pos: 21.5,-252.5 parent: 2 - - uid: 13029 + - uid: 12539 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-204.5 parent: 2 - - uid: 13031 + - uid: 12540 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-191.5 parent: 2 - - uid: 13033 + - uid: 12541 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-164.5 parent: 2 - - uid: 13043 + - uid: 12542 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-141.5 parent: 2 - - uid: 13052 + - uid: 12543 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-95.5 parent: 2 - - uid: 13054 + - uid: 12544 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-83.5 parent: 2 - - uid: 13056 + - uid: 12545 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-69.5 parent: 2 - - uid: 13063 + - uid: 12546 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-43.5 parent: 2 - - uid: 13066 + - uid: 12547 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-31.5 parent: 2 - - uid: 13075 + - uid: 12548 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-17.5 parent: 2 - - uid: 13076 + - uid: 12549 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-4.5 parent: 2 - - uid: 13078 + - uid: 12550 components: - type: Transform rot: 3.141592653589793 rad @@ -82595,7 +82047,7 @@ entities: parent: 2 - proto: RandomSnacks entities: - - uid: 7788 + - uid: 12551 components: - type: Transform rot: 3.141592653589793 rad @@ -82603,42 +82055,42 @@ entities: parent: 2 - proto: RandomSoap entities: - - uid: 352 + - uid: 12552 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-54.5 parent: 2 - - uid: 7818 + - uid: 12553 components: - type: Transform pos: -6.5,-150.5 parent: 2 - - uid: 9410 + - uid: 12554 components: - type: Transform pos: -6.5,-152.5 parent: 2 - - uid: 12120 + - uid: 12555 components: - type: Transform pos: -4.5,-374.5 parent: 2 - proto: RandomSpawner entities: - - uid: 14655 + - uid: 12556 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-69.5 parent: 2 - - uid: 14656 + - uid: 12557 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-68.5 parent: 2 - - uid: 14657 + - uid: 12558 components: - type: Transform rot: 3.141592653589793 rad @@ -82646,1678 +82098,1675 @@ entities: parent: 2 - proto: RandomVending entities: - - uid: 559 + - uid: 12559 components: - type: Transform pos: -0.5,-16.5 parent: 2 - - uid: 2512 + - uid: 12560 components: - type: Transform pos: -0.5,-149.5 parent: 2 - - uid: 2580 + - uid: 12561 components: - type: Transform pos: 1.5,-136.5 parent: 2 - - uid: 7903 + - uid: 12562 components: - type: Transform pos: 12.5,-306.5 parent: 2 - - uid: 9017 + - uid: 12563 components: - type: Transform pos: -0.5,-287.5 parent: 2 - - uid: 10126 + - uid: 12564 components: - type: Transform pos: -0.5,-319.5 parent: 2 - - uid: 14734 + - uid: 12565 components: - type: Transform pos: -2.5,-191.5 parent: 2 - - uid: 14735 + - uid: 12566 components: - type: Transform pos: -6.5,-191.5 parent: 2 - - uid: 14741 + - uid: 12567 components: - type: Transform pos: -7.5,-307.5 parent: 2 - - uid: 15034 + - uid: 12568 components: - type: Transform pos: -7.5,-134.5 parent: 2 - - uid: 15653 + - uid: 12569 components: - type: Transform pos: -5.5,-279.5 parent: 2 - - uid: 15654 + - uid: 12570 components: - type: Transform pos: -5.5,-280.5 parent: 2 - proto: RandomVendingDrinks entities: - - uid: 752 + - uid: 12571 components: - type: Transform pos: -2.5,-26.5 parent: 2 - - uid: 810 + - uid: 12572 components: - type: Transform pos: 3.5,-45.5 parent: 2 - - uid: 887 + - uid: 12573 components: - type: Transform pos: -1.5,-37.5 parent: 2 - proto: RandomVendingSnacks entities: - - uid: 755 + - uid: 12574 components: - type: Transform pos: 3.5,-26.5 parent: 2 - - uid: 886 + - uid: 12575 components: - type: Transform pos: -1.5,-40.5 parent: 2 - proto: RCD entities: - - uid: 13005 + - uid: 12576 components: - type: Transform pos: 11.623424,-252.29977 parent: 2 - proto: RCDAmmo entities: - - uid: 8444 + - uid: 12577 components: - type: Transform pos: 11.413898,-252.65977 parent: 2 - - uid: 13004 + - uid: 12578 components: - type: Transform pos: 11.262441,-252.55502 parent: 2 - - uid: 13006 + - uid: 12579 components: - type: Transform pos: 11.403312,-252.39659 parent: 2 - proto: Recycler entities: - - uid: 5452 + - uid: 12580 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-219.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - proto: ReinforcedPlasmaWindow entities: - - uid: 2056 + - uid: 12581 components: - type: Transform pos: -17.5,-239.5 parent: 2 - - uid: 2211 + - uid: 12582 components: - type: Transform pos: -16.5,-239.5 parent: 2 - - uid: 2478 + - uid: 12583 components: - type: Transform pos: -19.5,-239.5 parent: 2 - - uid: 2920 + - uid: 12584 components: - type: Transform pos: -18.5,-239.5 parent: 2 - - uid: 7580 + - uid: 12585 components: - type: Transform pos: 20.5,-259.5 parent: 2 - - uid: 7739 + - uid: 12586 components: - type: Transform pos: 6.5,-339.5 parent: 2 - - uid: 7909 + - uid: 12587 components: - type: Transform pos: 20.5,-260.5 parent: 2 - - uid: 8616 + - uid: 12588 components: - type: Transform pos: 20.5,-258.5 parent: 2 - - uid: 9386 + - uid: 12589 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-299.5 parent: 2 - - uid: 9432 + - uid: 12590 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-298.5 parent: 2 - - uid: 9436 + - uid: 12591 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-306.5 parent: 2 - - uid: 9437 + - uid: 12592 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-307.5 parent: 2 - - uid: 9438 + - uid: 12593 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-308.5 parent: 2 - - uid: 9440 + - uid: 12594 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-297.5 parent: 2 - - uid: 9441 + - uid: 12595 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-297.5 parent: 2 - - uid: 9442 + - uid: 12596 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-298.5 parent: 2 - - uid: 9443 + - uid: 12597 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-299.5 parent: 2 - - uid: 9445 + - uid: 12598 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-315.5 parent: 2 - - uid: 9446 + - uid: 12599 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-316.5 parent: 2 - - uid: 9447 + - uid: 12600 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-317.5 parent: 2 - - uid: 9448 + - uid: 12601 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-315.5 parent: 2 - - uid: 9449 + - uid: 12602 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-316.5 parent: 2 - - uid: 9450 + - uid: 12603 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-317.5 parent: 2 - - uid: 11210 + - uid: 12604 components: - type: Transform pos: -7.5,-316.5 parent: 2 - - uid: 11213 + - uid: 12605 components: - type: Transform pos: -8.5,-316.5 parent: 2 - - uid: 12390 + - uid: 12606 components: - type: Transform pos: -8.5,-312.5 parent: 2 - - uid: 12404 + - uid: 12607 components: - type: Transform pos: -7.5,-312.5 parent: 2 - proto: ReinforcedWindow entities: - - uid: 15 + - uid: 12608 components: - type: Transform pos: -1.5,3.5 parent: 2 - - uid: 16 + - uid: 12609 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 17 + - uid: 12610 components: - type: Transform pos: 0.5,4.5 parent: 2 - - uid: 18 + - uid: 12611 components: - type: Transform pos: 1.5,4.5 parent: 2 - - uid: 19 + - uid: 12612 components: - type: Transform pos: 2.5,3.5 parent: 2 - - uid: 106 + - uid: 12613 components: - type: Transform pos: 4.5,-0.5 parent: 2 - - uid: 140 + - uid: 12614 components: - type: Transform pos: 6.5,-0.5 parent: 2 - - uid: 143 + - uid: 12615 components: - type: Transform pos: 7.5,-6.5 parent: 2 - - uid: 144 + - uid: 12616 components: - type: Transform pos: 7.5,-7.5 parent: 2 - - uid: 156 + - uid: 12617 components: - type: Transform pos: 7.5,-5.5 parent: 2 - - uid: 158 + - uid: 12618 components: - type: Transform pos: 10.5,-118.5 parent: 2 - - uid: 226 + - uid: 12619 components: - type: Transform pos: -6.5,-5.5 parent: 2 - - uid: 227 + - uid: 12620 components: - type: Transform pos: -6.5,-6.5 parent: 2 - - uid: 228 + - uid: 12621 components: - type: Transform pos: -6.5,-7.5 parent: 2 - - uid: 229 + - uid: 12622 components: - type: Transform pos: -6.5,-9.5 parent: 2 - - uid: 230 + - uid: 12623 components: - type: Transform pos: -6.5,-10.5 parent: 2 - - uid: 231 + - uid: 12624 components: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 264 + - uid: 12625 components: - type: Transform pos: 1.5,-351.5 parent: 2 - - uid: 315 + - uid: 12626 components: - type: Transform pos: 2.5,-173.5 parent: 2 - - uid: 322 + - uid: 12627 components: - type: Transform pos: 7.5,-8.5 parent: 2 - - uid: 440 + - uid: 12628 components: - type: Transform pos: -6.5,-39.5 parent: 2 - - uid: 486 + - uid: 12629 components: - type: Transform pos: -7.5,-60.5 parent: 2 - - uid: 578 + - uid: 12630 components: - type: Transform pos: -7.5,-68.5 parent: 2 - - uid: 579 + - uid: 12631 components: - type: Transform pos: -6.5,-372.5 parent: 2 - - uid: 589 + - uid: 12632 components: - type: Transform pos: 7.5,-38.5 parent: 2 - - uid: 591 + - uid: 12633 components: - type: Transform pos: 7.5,-39.5 parent: 2 - - uid: 592 + - uid: 12634 components: - type: Transform pos: 7.5,-40.5 parent: 2 - - uid: 593 + - uid: 12635 components: - type: Transform pos: 7.5,-41.5 parent: 2 - - uid: 890 + - uid: 12636 components: - type: Transform pos: -6.5,-53.5 parent: 2 - - uid: 893 + - uid: 12637 components: - type: Transform pos: -5.5,-52.5 parent: 2 - - uid: 904 + - uid: 12638 components: - type: Transform pos: 8.5,-56.5 parent: 2 - - uid: 909 + - uid: 12639 components: - type: Transform pos: 7.5,-61.5 parent: 2 - - uid: 936 + - uid: 12640 components: - type: Transform pos: 8.5,-55.5 parent: 2 - - uid: 937 + - uid: 12641 components: - type: Transform pos: 8.5,-68.5 parent: 2 - - uid: 942 + - uid: 12642 components: - type: Transform pos: 7.5,-63.5 parent: 2 - - uid: 946 + - uid: 12643 components: - type: Transform pos: -7.5,-67.5 parent: 2 - - uid: 948 + - uid: 12644 components: - type: Transform pos: -7.5,-57.5 parent: 2 - - uid: 949 + - uid: 12645 components: - type: Transform pos: -7.5,-59.5 parent: 2 - - uid: 958 + - uid: 12646 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-299.5 parent: 2 - - uid: 1016 + - uid: 12647 components: - type: Transform pos: -7.5,-58.5 parent: 2 - - uid: 1030 + - uid: 12648 components: - type: Transform pos: -7.5,-65.5 parent: 2 - - uid: 1031 + - uid: 12649 components: - type: Transform pos: -7.5,-66.5 parent: 2 - - uid: 1034 + - uid: 12650 components: - type: Transform pos: 7.5,-62.5 parent: 2 - - uid: 1228 + - uid: 12651 components: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 1440 + - uid: 12652 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-73.5 parent: 2 - - uid: 1584 + - uid: 12653 components: - type: Transform pos: -7.5,-82.5 parent: 2 - - uid: 1586 + - uid: 12654 components: - type: Transform pos: -10.5,-85.5 parent: 2 - - uid: 1588 + - uid: 12655 components: - type: Transform pos: -10.5,-87.5 parent: 2 - - uid: 1592 + - uid: 12656 components: - type: Transform pos: 7.5,-82.5 parent: 2 - - uid: 1593 + - uid: 12657 components: - type: Transform pos: 7.5,-83.5 parent: 2 - - uid: 1594 + - uid: 12658 components: - type: Transform pos: 7.5,-84.5 parent: 2 - - uid: 1595 + - uid: 12659 components: - type: Transform pos: 7.5,-85.5 parent: 2 - - uid: 1598 + - uid: 12660 components: - type: Transform pos: 7.5,-87.5 parent: 2 - - uid: 1599 + - uid: 12661 components: - type: Transform pos: 7.5,-88.5 parent: 2 - - uid: 1600 + - uid: 12662 components: - type: Transform pos: 7.5,-89.5 parent: 2 - - uid: 1601 + - uid: 12663 components: - type: Transform pos: 7.5,-90.5 parent: 2 - - uid: 1602 + - uid: 12664 components: - type: Transform pos: 7.5,-91.5 parent: 2 - - uid: 1604 + - uid: 12665 components: - type: Transform pos: 7.5,-93.5 parent: 2 - - uid: 1605 + - uid: 12666 components: - type: Transform pos: 7.5,-94.5 parent: 2 - - uid: 1606 + - uid: 12667 components: - type: Transform pos: 7.5,-95.5 parent: 2 - - uid: 1607 + - uid: 12668 components: - type: Transform pos: 7.5,-96.5 parent: 2 - - uid: 1732 + - uid: 12669 components: - type: Transform pos: -7.5,-90.5 parent: 2 - - uid: 1752 + - uid: 12670 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-74.5 parent: 2 - - uid: 1774 + - uid: 12671 components: - type: Transform pos: 8.5,-57.5 parent: 2 - - uid: 1775 + - uid: 12672 components: - type: Transform pos: 8.5,-69.5 parent: 2 - - uid: 1779 + - uid: 12673 components: - type: Transform pos: 7.5,-64.5 parent: 2 - - uid: 1807 + - uid: 12674 components: - type: Transform pos: -18.5,-249.5 parent: 2 - - uid: 1945 + - uid: 12675 components: - type: Transform pos: -9.5,-108.5 parent: 2 - - uid: 1964 + - uid: 12676 components: - type: Transform pos: -9.5,-124.5 parent: 2 - - uid: 1965 + - uid: 12677 components: - type: Transform pos: -9.5,-122.5 parent: 2 - - uid: 1966 + - uid: 12678 components: - type: Transform pos: -9.5,-121.5 parent: 2 - - uid: 1967 + - uid: 12679 components: - type: Transform pos: -9.5,-119.5 parent: 2 - - uid: 1968 + - uid: 12680 components: - type: Transform pos: -9.5,-118.5 parent: 2 - - uid: 1969 + - uid: 12681 components: - type: Transform pos: -9.5,-116.5 parent: 2 - - uid: 1970 + - uid: 12682 components: - type: Transform pos: -9.5,-115.5 parent: 2 - - uid: 1971 + - uid: 12683 components: - type: Transform pos: -9.5,-113.5 parent: 2 - - uid: 1972 + - uid: 12684 components: - type: Transform pos: -9.5,-112.5 parent: 2 - - uid: 1974 + - uid: 12685 components: - type: Transform pos: -9.5,-109.5 parent: 2 - - uid: 2124 + - uid: 12686 components: - type: Transform pos: 7.5,-124.5 parent: 2 - - uid: 2125 + - uid: 12687 components: - type: Transform pos: 7.5,-123.5 parent: 2 - - uid: 2126 + - uid: 12688 components: - type: Transform pos: 7.5,-122.5 parent: 2 - - uid: 2129 + - uid: 12689 components: - type: Transform pos: 10.5,-119.5 parent: 2 - - uid: 2149 + - uid: 12690 components: - type: Transform pos: 0.5,-122.5 parent: 2 - - uid: 2150 + - uid: 12691 components: - type: Transform pos: -1.5,-122.5 parent: 2 - - uid: 2151 + - uid: 12692 components: - type: Transform pos: -2.5,-121.5 parent: 2 - - uid: 2152 + - uid: 12693 components: - type: Transform pos: -2.5,-120.5 parent: 2 - - uid: 2168 + - uid: 12694 components: - type: Transform pos: 1.5,-122.5 parent: 2 - - uid: 2568 + - uid: 12695 components: - type: Transform pos: 9.5,-138.5 parent: 2 - - uid: 2569 + - uid: 12696 components: - type: Transform pos: 9.5,-145.5 parent: 2 - - uid: 2571 + - uid: 12697 components: - type: Transform pos: 9.5,-144.5 parent: 2 - - uid: 2572 + - uid: 12698 components: - type: Transform pos: 9.5,-147.5 parent: 2 - - uid: 2577 + - uid: 12699 components: - type: Transform pos: 9.5,-139.5 parent: 2 - - uid: 2594 + - uid: 12700 components: - type: Transform pos: -7.5,-141.5 parent: 2 - - uid: 2595 + - uid: 12701 components: - type: Transform pos: -7.5,-140.5 parent: 2 - - uid: 2597 + - uid: 12702 components: - type: Transform pos: -7.5,-150.5 parent: 2 - - uid: 2598 + - uid: 12703 components: - type: Transform pos: -7.5,-152.5 parent: 2 - - uid: 2603 + - uid: 12704 components: - type: Transform pos: -9.5,-125.5 parent: 2 - - uid: 2652 + - uid: 12705 components: - type: Transform pos: -4.5,-134.5 parent: 2 - - uid: 2655 + - uid: 12706 components: - type: Transform pos: -7.5,-139.5 parent: 2 - - uid: 2782 + - uid: 12707 components: - type: Transform pos: 7.5,-149.5 parent: 2 - - uid: 2943 + - uid: 12708 components: - type: Transform pos: -8.5,-173.5 parent: 2 - - uid: 2944 + - uid: 12709 components: - type: Transform pos: -8.5,-174.5 parent: 2 - - uid: 2945 + - uid: 12710 components: - type: Transform pos: -8.5,-175.5 parent: 2 - - uid: 2946 + - uid: 12711 components: - type: Transform pos: -8.5,-176.5 parent: 2 - - uid: 2947 + - uid: 12712 components: - type: Transform pos: 9.5,-176.5 parent: 2 - - uid: 2949 + - uid: 12713 components: - type: Transform pos: 9.5,-174.5 parent: 2 - - uid: 2950 + - uid: 12714 components: - type: Transform pos: 9.5,-173.5 parent: 2 - - uid: 2951 + - uid: 12715 components: - type: Transform pos: 8.5,-168.5 parent: 2 - - uid: 2952 + - uid: 12716 components: - type: Transform pos: 8.5,-167.5 parent: 2 - - uid: 2953 + - uid: 12717 components: - type: Transform pos: 8.5,-166.5 parent: 2 - - uid: 3060 + - uid: 12718 components: - type: Transform pos: 9.5,-175.5 parent: 2 - - uid: 3182 + - uid: 12719 components: - type: Transform pos: -9.5,-309.5 parent: 2 - - uid: 3559 + - uid: 12720 components: - type: Transform pos: -10.5,-308.5 parent: 2 - - uid: 3784 + - uid: 12721 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-242.5 parent: 2 - - uid: 3788 + - uid: 12722 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-74.5 parent: 2 - - uid: 3795 + - uid: 12723 components: - type: Transform pos: -7.5,-197.5 parent: 2 - - uid: 3796 + - uid: 12724 components: - type: Transform pos: -7.5,-196.5 parent: 2 - - uid: 3797 + - uid: 12725 components: - type: Transform pos: -7.5,-195.5 parent: 2 - - uid: 3802 + - uid: 12726 components: - type: Transform pos: -6.5,-202.5 parent: 2 - - uid: 3803 + - uid: 12727 components: - type: Transform pos: -6.5,-201.5 parent: 2 - - uid: 3805 + - uid: 12728 components: - type: Transform pos: -6.5,-204.5 parent: 2 - - uid: 3806 + - uid: 12729 components: - type: Transform pos: -6.5,-205.5 parent: 2 - - uid: 3843 + - uid: 12730 components: - type: Transform pos: 9.5,-146.5 parent: 2 - - uid: 3850 + - uid: 12731 components: - type: Transform pos: -1.5,-206.5 parent: 2 - - uid: 3870 + - uid: 12732 components: - type: Transform pos: -3.5,-204.5 parent: 2 - - uid: 4243 + - uid: 12733 components: - type: Transform pos: -4.5,-231.5 parent: 2 - - uid: 4324 + - uid: 12734 components: - type: Transform pos: -1.5,-225.5 parent: 2 - - uid: 4325 + - uid: 12735 components: - type: Transform pos: -1.5,-224.5 parent: 2 - - uid: 4326 + - uid: 12736 components: - type: Transform pos: 2.5,-225.5 parent: 2 - - uid: 4327 + - uid: 12737 components: - type: Transform pos: 2.5,-224.5 parent: 2 - - uid: 4328 + - uid: 12738 components: - type: Transform pos: 5.5,-230.5 parent: 2 - - uid: 4331 + - uid: 12739 components: - type: Transform pos: -3.5,-232.5 parent: 2 - - uid: 4332 + - uid: 12740 components: - type: Transform pos: -4.5,-230.5 parent: 2 - - uid: 4336 + - uid: 12741 components: - type: Transform pos: -4.5,-219.5 parent: 2 - - uid: 4337 + - uid: 12742 components: - type: Transform pos: -4.5,-218.5 parent: 2 - - uid: 4338 + - uid: 12743 components: - type: Transform pos: -4.5,-217.5 parent: 2 - - uid: 4339 + - uid: 12744 components: - type: Transform pos: -3.5,-217.5 parent: 2 - - uid: 4506 + - uid: 12745 components: - type: Transform pos: -4.5,-232.5 parent: 2 - - uid: 4634 + - uid: 12746 components: - type: Transform pos: -8.5,-191.5 parent: 2 - - uid: 4662 + - uid: 12747 components: - type: Transform pos: -8.5,-190.5 parent: 2 - - uid: 4739 + - uid: 12748 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-221.5 parent: 2 - - uid: 4817 + - uid: 12749 components: - type: Transform pos: 5.5,-231.5 parent: 2 - - uid: 4818 + - uid: 12750 components: - type: Transform pos: 5.5,-232.5 parent: 2 - - uid: 4819 + - uid: 12751 components: - type: Transform pos: 4.5,-232.5 parent: 2 - - uid: 4897 + - uid: 12752 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-218.5 parent: 2 - - uid: 5449 + - uid: 12753 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-220.5 parent: 2 - - uid: 6794 + - uid: 12754 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-241.5 parent: 2 - - uid: 6804 + - uid: 12755 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-255.5 parent: 2 - - uid: 6805 + - uid: 12756 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-254.5 parent: 2 - - uid: 6806 + - uid: 12757 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-256.5 parent: 2 - - uid: 6876 + - uid: 12758 components: - type: Transform pos: -9.5,-308.5 parent: 2 - - uid: 6877 + - uid: 12759 components: - type: Transform pos: -9.5,-307.5 parent: 2 - - uid: 6880 + - uid: 12760 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-301.5 parent: 2 - - uid: 6892 + - uid: 12761 components: - type: Transform pos: 18.5,-238.5 parent: 2 - - uid: 6893 + - uid: 12762 components: - type: Transform pos: -9.5,-190.5 parent: 2 - - uid: 6895 + - uid: 12763 components: - type: Transform pos: -8.5,-189.5 parent: 2 - - uid: 7190 + - uid: 12764 components: - type: Transform pos: 1.5,-200.5 parent: 2 - - uid: 7192 + - uid: 12765 components: - type: Transform pos: 0.5,-200.5 parent: 2 - - uid: 7419 + - uid: 12766 components: - type: Transform pos: 17.5,-238.5 parent: 2 - - uid: 7552 + - uid: 12767 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-146.5 parent: 2 - - uid: 7606 + - uid: 12768 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-217.5 parent: 2 - - uid: 7703 + - uid: 12769 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-201.5 parent: 2 - - uid: 7704 + - uid: 12770 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-200.5 parent: 2 - - uid: 7705 + - uid: 12771 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-199.5 parent: 2 - - uid: 7706 + - uid: 12772 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-198.5 parent: 2 - - uid: 7707 + - uid: 12773 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-197.5 parent: 2 - - uid: 7708 + - uid: 12774 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-196.5 parent: 2 - - uid: 7709 + - uid: 12775 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-195.5 parent: 2 - - uid: 7710 + - uid: 12776 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-194.5 parent: 2 - - uid: 7717 + - uid: 12777 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-219.5 parent: 2 - - uid: 7773 + - uid: 12778 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-60.5 parent: 2 - - uid: 7943 + - uid: 12779 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-245.5 parent: 2 - - uid: 8146 + - uid: 12780 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-246.5 parent: 2 - - uid: 8170 + - uid: 12781 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-251.5 parent: 2 - - uid: 8177 + - uid: 12782 components: - type: Transform pos: 16.5,-238.5 parent: 2 - - uid: 8232 + - uid: 12783 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-62.5 parent: 2 - - uid: 8388 + - uid: 12784 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-62.5 parent: 2 - - uid: 8395 + - uid: 12785 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-61.5 parent: 2 - - uid: 8436 + - uid: 12786 components: - type: Transform pos: -7.5,-285.5 parent: 2 - - uid: 8562 + - uid: 12787 components: - type: Transform pos: 2.5,-174.5 parent: 2 - - uid: 8602 + - uid: 12788 components: - type: Transform pos: -7.5,-286.5 parent: 2 - - uid: 8603 + - uid: 12789 components: - type: Transform pos: -7.5,-284.5 parent: 2 - - uid: 8606 + - uid: 12790 components: - type: Transform pos: -6.5,-280.5 parent: 2 - - uid: 8607 + - uid: 12791 components: - type: Transform pos: -6.5,-279.5 parent: 2 - - uid: 8608 + - uid: 12792 components: - type: Transform pos: -6.5,-278.5 parent: 2 - - uid: 8642 + - uid: 12793 components: - type: Transform pos: 2.5,-175.5 parent: 2 - - uid: 8940 + - uid: 12794 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-247.5 parent: 2 - - uid: 8999 + - uid: 12795 components: - type: Transform pos: -4.5,-381.5 parent: 2 - - uid: 9461 + - uid: 12796 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-308.5 parent: 2 - - uid: 9466 + - uid: 12797 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-306.5 parent: 2 - - uid: 9729 + - uid: 12798 components: - type: Transform pos: 11.5,-299.5 parent: 2 - - uid: 9730 + - uid: 12799 components: - type: Transform pos: 11.5,-298.5 parent: 2 - - uid: 9731 + - uid: 12800 components: - type: Transform pos: 11.5,-297.5 parent: 2 - - uid: 9747 + - uid: 12801 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-309.5 parent: 2 - - uid: 9748 + - uid: 12802 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-305.5 parent: 2 - - uid: 9755 + - uid: 12803 components: - type: Transform pos: 11.5,-315.5 parent: 2 - - uid: 9756 + - uid: 12804 components: - type: Transform pos: 11.5,-316.5 parent: 2 - - uid: 9757 + - uid: 12805 components: - type: Transform pos: 11.5,-317.5 parent: 2 - - uid: 9796 + - uid: 12806 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-317.5 parent: 2 - - uid: 9797 + - uid: 12807 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-318.5 parent: 2 - - uid: 9798 + - uid: 12808 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-319.5 parent: 2 - - uid: 9799 + - uid: 12809 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-320.5 parent: 2 - - uid: 9864 + - uid: 12810 components: - type: Transform pos: -10.5,-303.5 parent: 2 - - uid: 9899 + - uid: 12811 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-309.5 parent: 2 - - uid: 9902 + - uid: 12812 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-305.5 parent: 2 - - uid: 9903 + - uid: 12813 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-304.5 parent: 2 - - uid: 9935 + - uid: 12814 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-315.5 parent: 2 - - uid: 9936 + - uid: 12815 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-314.5 parent: 2 - - uid: 9937 + - uid: 12816 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-313.5 parent: 2 - - uid: 9938 + - uid: 12817 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-312.5 parent: 2 - - uid: 10021 + - uid: 12818 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-310.5 parent: 2 - - uid: 10031 + - uid: 12819 components: - type: Transform pos: -10.5,-302.5 parent: 2 - - uid: 10051 + - uid: 12820 components: - type: Transform pos: -10.5,-304.5 parent: 2 - - uid: 10632 + - uid: 12821 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-331.5 parent: 2 - - uid: 10719 + - uid: 12822 components: - type: Transform pos: 8.5,-366.5 parent: 2 - - uid: 10748 + - uid: 12823 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-330.5 parent: 2 - - uid: 10750 + - uid: 12824 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-329.5 parent: 2 - - uid: 10815 + - uid: 12825 components: - type: Transform pos: 8.5,-367.5 parent: 2 - - uid: 10920 + - uid: 12826 components: - type: Transform pos: 1.5,-350.5 parent: 2 - - uid: 10923 + - uid: 12827 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-327.5 parent: 2 - - uid: 11048 + - uid: 12828 components: - type: Transform pos: 1.5,-352.5 parent: 2 - - uid: 11049 + - uid: 12829 components: - type: Transform pos: -0.5,-350.5 parent: 2 - - uid: 11050 + - uid: 12830 components: - type: Transform pos: -0.5,-351.5 parent: 2 - - uid: 11051 + - uid: 12831 components: - type: Transform pos: -0.5,-352.5 parent: 2 - - uid: 11064 + - uid: 12832 components: - type: Transform pos: -7.5,-360.5 parent: 2 - - uid: 11104 + - uid: 12833 components: - type: Transform pos: -7.5,-361.5 parent: 2 - - uid: 11105 + - uid: 12834 components: - type: Transform pos: -7.5,-363.5 parent: 2 - - uid: 11106 + - uid: 12835 components: - type: Transform pos: -7.5,-364.5 parent: 2 - - uid: 11107 + - uid: 12836 components: - type: Transform pos: -7.5,-366.5 parent: 2 - - uid: 11108 + - uid: 12837 components: - type: Transform pos: -7.5,-367.5 parent: 2 - - uid: 11109 + - uid: 12838 components: - type: Transform pos: -6.5,-370.5 parent: 2 - - uid: 11110 + - uid: 12839 components: - type: Transform pos: -6.5,-371.5 parent: 2 - - uid: 11116 + - uid: 12840 components: - type: Transform pos: 7.5,-370.5 parent: 2 - - uid: 11117 + - uid: 12841 components: - type: Transform pos: 7.5,-371.5 parent: 2 - - uid: 11118 + - uid: 12842 components: - type: Transform pos: 7.5,-372.5 parent: 2 - - uid: 11123 + - uid: 12843 components: - type: Transform pos: 8.5,-364.5 parent: 2 - - uid: 11124 + - uid: 12844 components: - type: Transform pos: 8.5,-363.5 parent: 2 - - uid: 11256 + - uid: 12845 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-364.5 parent: 2 - - uid: 11367 + - uid: 12846 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-369.5 parent: 2 - - uid: 11386 + - uid: 12847 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-369.5 parent: 2 - - uid: 11387 + - uid: 12848 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-369.5 parent: 2 - - uid: 11388 + - uid: 12849 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-363.5 parent: 2 - - uid: 11389 + - uid: 12850 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-364.5 parent: 2 - - uid: 11390 + - uid: 12851 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-365.5 parent: 2 - - uid: 11391 + - uid: 12852 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-363.5 parent: 2 - - uid: 11392 + - uid: 12853 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-364.5 parent: 2 - - uid: 11393 + - uid: 12854 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-365.5 parent: 2 - - uid: 11402 + - uid: 12855 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-364.5 parent: 2 - - uid: 12021 + - uid: 12856 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-260.5 parent: 2 - - uid: 12027 + - uid: 12857 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-253.5 parent: 2 - - uid: 12028 + - uid: 12858 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-257.5 parent: 2 - - uid: 12083 + - uid: 12859 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-263.5 parent: 2 - - uid: 12606 + - uid: 12860 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-259.5 parent: 2 - - uid: 13216 + - uid: 12861 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-255.5 parent: 2 - - uid: 13300 + - uid: 12862 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-300.5 parent: 2 - - uid: 13349 + - uid: 12863 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-261.5 parent: 2 - - uid: 14313 + - uid: 12864 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-61.5 parent: 2 - - uid: 14314 + - uid: 12865 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-60.5 parent: 2 - - uid: 14913 + - uid: 12866 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-147.5 parent: 2 - - uid: 14915 + - uid: 12867 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-145.5 parent: 2 - - uid: 15134 + - uid: 12868 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-113.5 parent: 2 - - uid: 15135 + - uid: 12869 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-114.5 parent: 2 - - uid: 15136 + - uid: 12870 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-115.5 parent: 2 - - uid: 15138 + - uid: 12871 components: - type: Transform rot: -1.5707963267948966 rad @@ -84325,185 +83774,185 @@ entities: parent: 2 - proto: ReinforcedWindowDiagonal entities: - - uid: 9 + - uid: 12872 components: - type: Transform pos: -1.5,4.5 parent: 2 - - uid: 1237 + - uid: 12873 components: - type: Transform pos: -6.5,-52.5 parent: 2 - - uid: 1609 + - uid: 12874 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 1610 + - uid: 12875 components: - type: Transform pos: -9.5,-83.5 parent: 2 - - uid: 1611 + - uid: 12876 components: - type: Transform pos: -10.5,-84.5 parent: 2 - - uid: 2788 + - uid: 12877 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,3.5 parent: 2 - - uid: 2941 + - uid: 12878 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-84.5 parent: 2 - - uid: 4440 + - uid: 12879 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-217.5 parent: 2 - - uid: 4635 + - uid: 12880 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 2 - - uid: 4641 + - uid: 12881 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-191.5 parent: 2 - - uid: 4647 + - uid: 12882 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 2 - - uid: 4949 + - uid: 12883 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-88.5 parent: 2 - - uid: 4987 + - uid: 12884 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-83.5 parent: 2 - - uid: 4993 + - uid: 12885 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-90.5 parent: 2 - - uid: 4995 + - uid: 12886 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-88.5 parent: 2 - - uid: 4996 + - uid: 12887 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-89.5 parent: 2 - - uid: 4998 + - uid: 12888 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-89.5 parent: 2 - - uid: 6202 + - uid: 12889 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-193.5 parent: 2 - - uid: 6663 + - uid: 12890 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-307.5 parent: 2 - - uid: 6680 + - uid: 12891 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-191.5 parent: 2 - - uid: 6682 + - uid: 12892 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-189.5 parent: 2 - - uid: 6878 + - uid: 12893 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-309.5 parent: 2 - - uid: 6894 + - uid: 12894 components: - type: Transform pos: -9.5,-189.5 parent: 2 - - uid: 7677 + - uid: 12895 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-202.5 parent: 2 - - uid: 9072 + - uid: 12896 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-122.5 parent: 2 - - uid: 9743 + - uid: 12897 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-305.5 parent: 2 - - uid: 9800 + - uid: 12898 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-320.5 parent: 2 - - uid: 9904 + - uid: 12899 components: - type: Transform pos: 2.5,-309.5 parent: 2 - - uid: 9954 + - uid: 12900 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-305.5 parent: 2 - - uid: 10057 + - uid: 12901 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-309.5 parent: 2 - - uid: 13291 + - uid: 12902 components: - type: Transform pos: -10.5,-307.5 parent: 2 - - uid: 13292 + - uid: 12903 components: - type: Transform rot: 1.5707963267948966 rad @@ -84511,7 +83960,7 @@ entities: parent: 2 - proto: RemoteSignaller entities: - - uid: 17036 + - uid: 12904 components: - type: Transform rot: 1.5707963267948966 rad @@ -84519,20 +83968,20 @@ entities: parent: 2 - proto: ResearchAndDevelopmentServer entities: - - uid: 6662 + - uid: 12905 components: - type: Transform pos: -9.5,-299.5 parent: 2 - proto: RevolverCapGun entities: - - uid: 14632 + - uid: 12906 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.741016,-256.2104 parent: 2 - - uid: 14633 + - uid: 12907 components: - type: Transform rot: -1.5707963267948966 rad @@ -84540,41 +83989,41 @@ entities: parent: 2 - proto: SadTromboneImplanter entities: - - uid: 2503 + - uid: 12908 components: - type: Transform pos: 3.4744065,-18.482784 parent: 2 - proto: SalvageCanisterSpawner entities: - - uid: 7330 + - uid: 12909 components: - type: Transform pos: 17.5,-140.5 parent: 2 - - uid: 7860 + - uid: 12910 components: - type: Transform pos: -2.5,-196.5 parent: 2 - - uid: 8416 + - uid: 12911 components: - type: Transform pos: -2.5,-214.5 parent: 2 - - uid: 9418 + - uid: 12912 components: - type: Transform pos: -2.5,-193.5 parent: 2 - - uid: 16809 + - uid: 12913 components: - type: Transform pos: 6.5,-131.5 parent: 2 - proto: SalvageMagnet entities: - - uid: 8874 + - uid: 12914 components: - type: Transform rot: 1.5707963267948966 rad @@ -84582,32 +84031,32 @@ entities: parent: 2 - proto: SalvageMaterialCrateSpawner entities: - - uid: 7391 + - uid: 12915 components: - type: Transform pos: 17.5,-145.5 parent: 2 - - uid: 9048 + - uid: 12916 components: - type: Transform pos: 6.5,-279.5 parent: 2 - proto: SawElectric entities: - - uid: 3972 + - uid: 12917 components: - type: Transform pos: -2.4659972,-207.5625 parent: 2 - proto: SciFlash entities: - - uid: 12415 + - uid: 12918 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.375178,-310.24973 parent: 2 - - uid: 12416 + - uid: 12919 components: - type: Transform rot: -1.5707963267948966 rad @@ -84615,77 +84064,77 @@ entities: parent: 2 - proto: Screen entities: - - uid: 420 + - uid: 12920 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 903 + - uid: 12921 components: - type: Transform pos: -7.5,-64.5 parent: 2 - proto: Screwdriver entities: - - uid: 9519 + - uid: 12922 components: - type: Transform pos: 22.486492,-317.5223 parent: 2 - - uid: 9613 + - uid: 12923 components: - type: Transform pos: 23.43425,-299.4721 parent: 2 - - uid: 14744 + - uid: 12924 components: - type: Transform pos: -5.5653863,-307.57385 parent: 2 - proto: SecurityTechFab entities: - - uid: 2286 + - uid: 12925 components: - type: Transform pos: 4.5,-338.5 parent: 2 - proto: SeedExtractor entities: - - uid: 754 + - uid: 12926 components: - type: Transform pos: 3.5,-374.5 parent: 2 - - uid: 2330 + - uid: 12927 components: - type: Transform pos: -8.5,-84.5 parent: 2 - proto: ShardCrystalGreen entities: - - uid: 7386 + - uid: 12928 components: - type: Transform pos: 13.519403,-147.44946 parent: 2 - - uid: 7387 + - uid: 12929 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.347023,-140.45216 parent: 2 - - uid: 7388 + - uid: 12930 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.448226,-151.46065 parent: 2 - - uid: 7389 + - uid: 12931 components: - type: Transform pos: 16.276836,-137.70845 parent: 2 - - uid: 7390 + - uid: 12932 components: - type: Transform rot: 1.5707963267948966 rad @@ -84693,49 +84142,49 @@ entities: parent: 2 - proto: ShardGlass entities: - - uid: 3891 + - uid: 12933 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.7093341,-202.65921 parent: 2 - - uid: 3892 + - uid: 12934 components: - type: Transform rot: 3.141592653589793 rad pos: -2.8729095,-202.42155 parent: 2 - - uid: 3949 + - uid: 12935 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4470973,-197.77046 parent: 2 - - uid: 3950 + - uid: 12936 components: - type: Transform pos: -5.135233,-195.4101 parent: 2 - proto: ShardGlassReinforced entities: - - uid: 11709 + - uid: 12937 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.35029945,-377.53983 parent: 2 - - uid: 11823 + - uid: 12938 components: - type: Transform pos: -0.9622005,-378.77563 parent: 2 - - uid: 11824 + - uid: 12939 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.20967445,-378.4539 parent: 2 - - uid: 11826 + - uid: 12940 components: - type: Transform rot: -1.5707963267948966 rad @@ -84743,171 +84192,171 @@ entities: parent: 2 - proto: SheetGlass entities: - - uid: 3203 + - uid: 12941 components: - type: Transform pos: 18.454567,-257.30835 parent: 2 - - uid: 8926 + - uid: 12942 components: - type: Transform pos: 18.142067,-257.4021 parent: 2 - - uid: 9970 + - uid: 12943 components: - type: Transform pos: 3.3460228,-315.99377 parent: 2 - - uid: 9973 + - uid: 12944 components: - type: Transform pos: -4.3694625,-303.88837 parent: 2 - - uid: 12369 + - uid: 12945 components: - type: Transform pos: -1.1593688,-5.49177 parent: 2 - proto: SheetPlasma entities: - - uid: 94 + - uid: 12946 components: - type: Transform pos: 5.525622,-345.48483 parent: 2 - - uid: 2365 + - uid: 12947 components: - type: Transform pos: 16.489702,-242.50365 parent: 2 - - uid: 9976 + - uid: 12948 components: - type: Transform pos: 3.5577743,-304.39993 parent: 2 - proto: SheetPlasma1 entities: - - uid: 3148 + - uid: 12949 components: - type: Transform pos: 5.3013034,-167.3674 parent: 2 - proto: SheetPlasteel entities: - - uid: 6886 + - uid: 12950 components: - type: Transform pos: 19.023344,-257.24518 parent: 2 - proto: SheetPlastic entities: - - uid: 8540 + - uid: 12951 components: - type: Transform pos: 17.492094,-257.47955 parent: 2 - - uid: 8896 + - uid: 12952 components: - type: Transform pos: 17.507719,-257.1358 parent: 2 - - uid: 10119 + - uid: 12953 components: - type: Transform pos: -4.4883227,-304.0996 parent: 2 - - uid: 12132 + - uid: 12954 components: - type: Transform pos: -1.6015537,-5.438076 parent: 2 - - uid: 15269 + - uid: 12955 components: - type: Transform pos: 4.7201986,-242.37056 parent: 2 - proto: SheetSteel entities: - - uid: 1288 + - uid: 12956 components: - type: Transform pos: -2.0033119,-5.403715 parent: 2 - - uid: 2283 + - uid: 12957 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 2354 + - uid: 12958 components: - type: Transform pos: -11.540955,-257.3627 parent: 2 - - uid: 2373 + - uid: 12959 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 2388 + - uid: 12960 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 2389 + - uid: 12961 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 2443 + - uid: 12962 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 8528 + - uid: 12963 components: - type: Transform pos: 19.023344,-257.5108 parent: 2 - - uid: 8894 + - uid: 12964 components: - type: Transform pos: -13.564663,-246.11655 parent: 2 - - uid: 8924 + - uid: 12965 components: - type: Transform pos: 19.23179,-257.44897 parent: 2 - - uid: 9961 + - uid: 12966 components: - type: Transform pos: 3.5573292,-315.64984 parent: 2 - - uid: 9962 + - uid: 12967 components: - type: Transform pos: 3.3460228,-315.399 parent: 2 - - uid: 10118 + - uid: 12968 components: - type: Transform pos: -4.5543566,-303.82236 parent: 2 - - uid: 15268 + - uid: 12969 components: - type: Transform pos: 4.3490157,-242.4043 parent: 2 - proto: SheetUranium entities: - - uid: 2380 + - uid: 12970 components: - type: Transform pos: 16.614702,-242.50365 parent: 2 - proto: ShipBattlemap entities: - - uid: 14457 + - uid: 12971 components: - type: Transform rot: 3.141592653589793 rad @@ -84915,39 +84364,33 @@ entities: parent: 2 - proto: ShotGunCabinetFilled entities: - - uid: 11327 + - uid: 12972 components: - type: Transform pos: -0.5,-361.5 parent: 2 - proto: ShotGunCabinetOpen entities: - - uid: 8385 + - uid: 12973 components: - type: Transform pos: 16.5,-157.5 parent: 2 - proto: ShuttersNormalOpen entities: - - uid: 2392 + - uid: 12974 components: - type: Transform pos: 1.5,-200.5 parent: 2 - - type: DeviceLinkSink - links: - - 8740 - - uid: 2397 + - uid: 12975 components: - type: Transform pos: 0.5,-200.5 parent: 2 - - type: DeviceLinkSink - links: - - 8740 - proto: SignAi entities: - - uid: 12453 + - uid: 12976 components: - type: Transform rot: 3.141592653589793 rad @@ -84955,7 +84398,7 @@ entities: parent: 2 - proto: SignalButton entities: - - uid: 9008 + - uid: 12977 components: - type: Transform rot: -1.5707963267948966 rad @@ -84963,9 +84406,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 8801: + 848: - Pressed: Toggle - - uid: 9009 + - uid: 12978 components: - type: Transform rot: -1.5707963267948966 rad @@ -84973,9 +84416,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 8803: + 849: - Pressed: Toggle - - uid: 10008 + - uid: 12979 components: - type: Transform rot: -1.5707963267948966 rad @@ -84983,13 +84426,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 9941: + 835: - Pressed: Toggle - 9908: + 834: - Pressed: Toggle - 9906: + 833: - Pressed: Toggle - - uid: 10009 + - uid: 12980 components: - type: Transform rot: 1.5707963267948966 rad @@ -84997,15 +84440,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 10003: + 837: - Pressed: Toggle - 10001: + 836: - Pressed: Toggle - 10004: + 838: - Pressed: Toggle - proto: SignalButtonDirectional entities: - - uid: 1767 + - uid: 12981 components: - type: Transform rot: 1.5707963267948966 rad @@ -85013,11 +84456,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1749: + 828: - Pressed: Toggle - 1750: + 829: - Pressed: Toggle - - uid: 2094 + - uid: 12982 components: - type: Transform rot: -1.5707963267948966 rad @@ -85025,9 +84468,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2081: + 79: - Pressed: DoorBolt - - uid: 2095 + - uid: 12983 components: - type: Transform rot: -1.5707963267948966 rad @@ -85035,9 +84478,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2080: + 78: - Pressed: DoorBolt - - uid: 2096 + - uid: 12984 components: - type: Transform rot: -1.5707963267948966 rad @@ -85045,33 +84488,33 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2079: + 77: - Pressed: DoorBolt - - uid: 6906 + - uid: 12985 components: - type: Transform pos: -20.5,-239.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 3537: + 832: - Pressed: Toggle - 2972: + 831: - Pressed: Toggle - 2917: + 830: - Pressed: Toggle - - uid: 8740 + - uid: 12986 components: - type: Transform pos: -0.5,-200.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2397: + 12975: - Pressed: Toggle - 2392: + 12974: - Pressed: Toggle - - uid: 9683 + - uid: 12987 components: - type: MetaData name: Door Open Button @@ -85080,24 +84523,24 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 10746: + 89: - Pressed: Open - 10636: + 88: - Pressed: Open - - uid: 11312 + - uid: 12988 components: - type: Transform pos: -0.5,-115.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2222: + 842: - Pressed: Toggle - 2223: + 843: - Pressed: Toggle - 2224: + 844: - Pressed: Toggle - - uid: 11933 + - uid: 12989 components: - type: Transform rot: 3.141592653589793 rad @@ -85105,27 +84548,27 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2645: + 81: - Pressed: DoorBolt - - uid: 11983 + - uid: 12990 components: - type: Transform pos: -6.5,-151.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 4109: + 82: - Pressed: DoorBolt - proto: SignAnomaly entities: - - uid: 12682 + - uid: 12991 components: - type: Transform pos: -1.5,-311.5 parent: 2 - proto: SignAnomaly2 entities: - - uid: 12460 + - uid: 12992 components: - type: Transform rot: 3.141592653589793 rad @@ -85133,7 +84576,7 @@ entities: parent: 2 - proto: SignArmory entities: - - uid: 12264 + - uid: 12993 components: - type: Transform rot: -1.5707963267948966 rad @@ -85141,14 +84584,14 @@ entities: parent: 2 - proto: SignAtmosMinsky entities: - - uid: 17006 + - uid: 12994 components: - type: Transform pos: -3.5,-249.5 parent: 2 - proto: SignBar entities: - - uid: 12475 + - uid: 12995 components: - type: Transform rot: 3.141592653589793 rad @@ -85156,12 +84599,12 @@ entities: parent: 2 - proto: SignBiohazardMed entities: - - uid: 8612 + - uid: 12996 components: - type: Transform pos: -4.5,-192.5 parent: 2 - - uid: 12491 + - uid: 12997 components: - type: Transform rot: 3.141592653589793 rad @@ -85169,7 +84612,7 @@ entities: parent: 2 - proto: SignBridge entities: - - uid: 12528 + - uid: 12998 components: - type: Transform rot: 3.141592653589793 rad @@ -85177,40 +84620,40 @@ entities: parent: 2 - proto: SignCargo entities: - - uid: 12514 + - uid: 12999 components: - type: Transform pos: -1.5,-281.5 parent: 2 - proto: SignCargoDock entities: - - uid: 12515 + - uid: 13000 components: - type: Transform pos: -1.5,-277.5 parent: 2 - proto: SignChapel entities: - - uid: 2660 + - uid: 13001 components: - type: Transform pos: 2.5,-147.5 parent: 2 - - uid: 2661 + - uid: 13002 components: - type: Transform pos: 6.5,-147.5 parent: 2 - proto: SignChem entities: - - uid: 12520 + - uid: 13003 components: - type: Transform pos: 2.5,-165.5 parent: 2 - proto: SignCloning entities: - - uid: 12524 + - uid: 13004 components: - type: Transform rot: 3.141592653589793 rad @@ -85218,7 +84661,7 @@ entities: parent: 2 - proto: SignConference entities: - - uid: 12500 + - uid: 13005 components: - type: Transform rot: 3.141592653589793 rad @@ -85226,7 +84669,7 @@ entities: parent: 2 - proto: SignCryogenicsMed entities: - - uid: 6239 + - uid: 13006 components: - type: Transform rot: -1.5707963267948966 rad @@ -85234,20 +84677,20 @@ entities: parent: 2 - proto: SignDirectionalBar entities: - - uid: 12509 + - uid: 13007 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-80.5 parent: 2 - - uid: 12510 + - uid: 13008 components: - type: Transform pos: -0.5,-45.5 parent: 2 - proto: SignDirectionalBridge entities: - - uid: 12503 + - uid: 13009 components: - type: Transform rot: 3.141592653589793 rad @@ -85255,12 +84698,12 @@ entities: parent: 2 - proto: SignDirectionalBrig entities: - - uid: 12504 + - uid: 13010 components: - type: Transform pos: 1.5,-320.5 parent: 2 - - uid: 12992 + - uid: 13011 components: - type: Transform rot: 3.141592653589793 rad @@ -85268,12 +84711,12 @@ entities: parent: 2 - proto: SignDirectionalChapel entities: - - uid: 12395 + - uid: 13012 components: - type: Transform pos: -0.5,-126.5 parent: 2 - - uid: 12516 + - uid: 13013 components: - type: Transform rot: 3.141592653589793 rad @@ -85281,12 +84724,12 @@ entities: parent: 2 - proto: SignDirectionalChemistry entities: - - uid: 12522 + - uid: 13014 components: - type: Transform pos: 1.5,-153.5 parent: 2 - - uid: 12523 + - uid: 13015 components: - type: Transform rot: 3.141592653589793 rad @@ -85294,13 +84737,13 @@ entities: parent: 2 - proto: SignDirectionalCryo entities: - - uid: 11881 + - uid: 13016 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-168.5 parent: 2 - - uid: 12532 + - uid: 13017 components: - type: Transform rot: -1.5707963267948966 rad @@ -85308,12 +84751,12 @@ entities: parent: 2 - proto: SignDirectionalDorms entities: - - uid: 12541 + - uid: 13018 components: - type: Transform pos: 1.5,-99.5 parent: 2 - - uid: 12542 + - uid: 13019 components: - type: Transform rot: 3.141592653589793 rad @@ -85321,13 +84764,13 @@ entities: parent: 2 - proto: SignDirectionalEng entities: - - uid: 8463 + - uid: 13020 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-115.5 parent: 2 - - uid: 12579 + - uid: 13021 components: - type: Transform rot: 3.141592653589793 rad @@ -85335,25 +84778,25 @@ entities: parent: 2 - proto: SignDirectionalEvac entities: - - uid: 12582 + - uid: 13022 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-53.5 parent: 2 - - uid: 12585 + - uid: 13023 components: - type: Transform pos: 1.5,-18.5 parent: 2 - proto: SignDirectionalFood entities: - - uid: 12597 + - uid: 13024 components: - type: Transform pos: 1.5,-72.5 parent: 2 - - uid: 12598 + - uid: 13025 components: - type: Transform rot: 3.141592653589793 rad @@ -85361,56 +84804,56 @@ entities: parent: 2 - proto: SignDirectionalHop entities: - - uid: 7357 + - uid: 13026 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-256.5 parent: 2 - - uid: 12613 + - uid: 13027 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-134.5 parent: 2 - - uid: 12614 + - uid: 13028 components: - type: Transform pos: -0.5,-99.5 parent: 2 - proto: SignDirectionalHydro entities: - - uid: 12599 + - uid: 13029 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-85.5 parent: 2 - - uid: 12602 + - uid: 13030 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-107.5 parent: 2 - - uid: 12604 + - uid: 13031 components: - type: Transform pos: -0.5,-72.5 parent: 2 - proto: SignDirectionalJanitor entities: - - uid: 7507 + - uid: 13032 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-56.5 parent: 2 - - uid: 12625 + - uid: 13033 components: - type: Transform pos: 1.5,-45.5 parent: 2 - - uid: 12626 + - uid: 13034 components: - type: Transform rot: 3.141592653589793 rad @@ -85418,37 +84861,37 @@ entities: parent: 2 - proto: SignDirectionalLibrary entities: - - uid: 3619 + - uid: 13035 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-161.5 parent: 2 - - uid: 12628 + - uid: 13036 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-138.5 parent: 2 - - uid: 12630 + - uid: 13037 components: - type: Transform pos: 1.5,-126.5 parent: 2 - proto: SignDirectionalMed entities: - - uid: 12627 + - uid: 13038 components: - type: Transform pos: -0.5,-153.5 parent: 2 - - uid: 12635 + - uid: 13039 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-188.5 parent: 2 - - uid: 13307 + - uid: 13040 components: - type: Transform rot: -1.5707963267948966 rad @@ -85456,12 +84899,12 @@ entities: parent: 2 - proto: SignDirectionalSalvage entities: - - uid: 12655 + - uid: 13041 components: - type: Transform pos: -0.5,-261.5 parent: 2 - - uid: 12658 + - uid: 13042 components: - type: Transform rot: 3.141592653589793 rad @@ -85469,18 +84912,18 @@ entities: parent: 2 - proto: SignDirectionalSci entities: - - uid: 8174 + - uid: 13043 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-190.5 parent: 2 - - uid: 12659 + - uid: 13044 components: - type: Transform pos: -0.5,-288.5 parent: 2 - - uid: 12660 + - uid: 13045 components: - type: Transform rot: 3.141592653589793 rad @@ -85488,32 +84931,32 @@ entities: parent: 2 - proto: SignDirectionalSec entities: - - uid: 12661 + - uid: 13046 components: - type: Transform pos: -0.5,-347.5 parent: 2 - proto: SignDirectionalSolar entities: - - uid: 12673 + - uid: 13047 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-242.5 parent: 2 - - uid: 12674 + - uid: 13048 components: - type: Transform pos: 1.5,-207.5 parent: 2 - proto: SignDirectionalSupply entities: - - uid: 12675 + - uid: 13049 components: - type: Transform pos: 1.5,-261.5 parent: 2 - - uid: 12676 + - uid: 13050 components: - type: Transform rot: 3.141592653589793 rad @@ -85521,7 +84964,7 @@ entities: parent: 2 - proto: SignDirectionalWash entities: - - uid: 12680 + - uid: 13051 components: - type: Transform rot: -1.5707963267948966 rad @@ -85529,85 +84972,85 @@ entities: parent: 2 - proto: SignElectricalMed entities: - - uid: 3899 + - uid: 13052 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-341.5 parent: 2 - - uid: 9388 + - uid: 13053 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-361.5 parent: 2 - - uid: 12490 + - uid: 13054 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-98.5 parent: 2 - - uid: 12543 + - uid: 13055 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 2 - - uid: 12544 + - uid: 13056 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-43.5 parent: 2 - - uid: 12545 + - uid: 13057 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-55.5 parent: 2 - - uid: 12550 + - uid: 13058 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-111.5 parent: 2 - - uid: 12554 + - uid: 13059 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-152.5 parent: 2 - - uid: 12558 + - uid: 13060 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-162.5 parent: 2 - - uid: 12560 + - uid: 13061 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-188.5 parent: 2 - - uid: 12562 + - uid: 13062 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-220.5 parent: 2 - - uid: 12563 + - uid: 13063 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-228.5 parent: 2 - - uid: 12570 + - uid: 13064 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-286.5 parent: 2 - - uid: 12571 + - uid: 13065 components: - type: Transform rot: 3.141592653589793 rad @@ -85615,7 +85058,7 @@ entities: parent: 2 - proto: SignEVA entities: - - uid: 398 + - uid: 13066 components: - type: Transform rot: 1.5707963267948966 rad @@ -85623,34 +85066,34 @@ entities: parent: 2 - proto: SignHead entities: - - uid: 12607 + - uid: 13067 components: - type: Transform pos: 0.5,-9.5 parent: 2 - - uid: 12608 + - uid: 13068 components: - type: Transform pos: -2.5,-119.5 parent: 2 - - uid: 12610 + - uid: 13069 components: - type: Transform pos: 4.5,-283.5 parent: 2 - - uid: 12611 + - uid: 13070 components: - type: Transform pos: -7.5,-304.5 parent: 2 - - uid: 12612 + - uid: 13071 components: - type: Transform pos: -3.5,-343.5 parent: 2 - proto: SignInterrogation entities: - - uid: 12624 + - uid: 13072 components: - type: Transform rot: 3.141592653589793 rad @@ -85658,7 +85101,7 @@ entities: parent: 2 - proto: SignJanitor entities: - - uid: 539 + - uid: 13073 components: - type: Transform rot: 3.141592653589793 rad @@ -85666,7 +85109,7 @@ entities: parent: 2 - proto: SignLawyer entities: - - uid: 11212 + - uid: 13074 components: - type: Transform rot: 3.141592653589793 rad @@ -85674,7 +85117,7 @@ entities: parent: 2 - proto: SignLibrary entities: - - uid: 12629 + - uid: 13075 components: - type: Transform rot: -1.5707963267948966 rad @@ -85682,12 +85125,12 @@ entities: parent: 2 - proto: SignMedical entities: - - uid: 7194 + - uid: 13076 components: - type: Transform pos: 2.5,-177.5 parent: 2 - - uid: 12634 + - uid: 13077 components: - type: Transform rot: 3.141592653589793 rad @@ -85695,7 +85138,7 @@ entities: parent: 2 - proto: SignMorgue entities: - - uid: 12632 + - uid: 13078 components: - type: Transform rot: 3.141592653589793 rad @@ -85703,81 +85146,81 @@ entities: parent: 2 - proto: SignNosmoking entities: - - uid: 11345 + - uid: 13079 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-294.5 parent: 2 - - uid: 11370 + - uid: 13080 components: - type: Transform pos: -0.5,-290.5 parent: 2 - - uid: 11377 + - uid: 13081 components: - type: Transform pos: 1.5,-213.5 parent: 2 - - uid: 11383 + - uid: 13082 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-326.5 parent: 2 - - uid: 11384 + - uid: 13083 components: - type: Transform pos: -0.5,-236.5 parent: 2 - - uid: 11417 + - uid: 13084 components: - type: Transform pos: -0.5,-209.5 parent: 2 - - uid: 11418 + - uid: 13085 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-322.5 parent: 2 - - uid: 12638 + - uid: 13086 components: - type: Transform pos: 1.5,-353.5 parent: 2 - - uid: 12639 + - uid: 13087 components: - type: Transform pos: -0.5,-349.5 parent: 2 - - uid: 12640 + - uid: 13088 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-380.5 parent: 2 - - uid: 12679 + - uid: 13089 components: - type: Transform pos: 1.5,-240.5 parent: 2 - proto: SignPlaque entities: - - uid: 3748 + - uid: 13090 components: - type: Transform pos: -2.5,-0.5 parent: 2 - proto: SignPrison entities: - - uid: 13410 + - uid: 13091 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-367.5 parent: 2 - - uid: 13411 + - uid: 13092 components: - type: Transform rot: -1.5707963267948966 rad @@ -85785,13 +85228,13 @@ entities: parent: 2 - proto: SignRedEight entities: - - uid: 6613 + - uid: 13093 components: - type: Transform rot: 3.141592653589793 rad pos: -0.40827185,-213.49608 parent: 2 - - uid: 6614 + - uid: 13094 components: - type: Transform rot: 3.141592653589793 rad @@ -85799,13 +85242,13 @@ entities: parent: 2 - proto: SignRedFive entities: - - uid: 1354 + - uid: 13095 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5861752,-155.49748 parent: 2 - - uid: 4105 + - uid: 13096 components: - type: Transform rot: 3.141592653589793 rad @@ -85813,19 +85256,19 @@ entities: parent: 2 - proto: SignRedFour entities: - - uid: 4101 + - uid: 13097 components: - type: Transform rot: 3.141592653589793 rad pos: -0.41395348,-105.500565 parent: 2 - - uid: 4102 + - uid: 13098 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5827098,-128.49553 parent: 2 - - uid: 7056 + - uid: 13099 components: - type: Transform rot: -1.5707963267948966 rad @@ -85833,19 +85276,19 @@ entities: parent: 2 - proto: SignRedNine entities: - - uid: 6621 + - uid: 13100 components: - type: Transform rot: 3.141592653589793 rad pos: -0.4074493,-240.49269 parent: 2 - - uid: 6622 + - uid: 13101 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5921938,-263.49698 parent: 2 - - uid: 8449 + - uid: 13102 components: - type: Transform rot: 1.5707963267948966 rad @@ -85853,79 +85296,79 @@ entities: parent: 2 - proto: SignRedOne entities: - - uid: 4078 + - uid: 13103 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5852656,-47.503147 parent: 2 - - uid: 4089 + - uid: 13104 components: - type: Transform rot: 3.141592653589793 rad pos: -0.40152162,-24.502266 parent: 2 - - uid: 7857 + - uid: 13105 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.4400425,-190.7712 parent: 2 - - uid: 8125 + - uid: 13106 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.655262,-190.7712 parent: 2 - - uid: 8974 + - uid: 13107 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.65059656,-267.50113 parent: 2 - - uid: 10625 + - uid: 13108 components: - type: Transform pos: 1.3436816,-290.4902 parent: 2 - - uid: 10626 + - uid: 13109 components: - type: Transform pos: -0.6467193,-294.49783 parent: 2 - - uid: 10627 + - uid: 13110 components: - type: Transform pos: -0.39628136,-294.49783 parent: 2 - - uid: 10628 + - uid: 13111 components: - type: Transform pos: 1.3480468,-322.4933 parent: 2 - - uid: 10629 + - uid: 13112 components: - type: Transform pos: 1.5945721,-322.4972 parent: 2 - - uid: 10630 + - uid: 13113 components: - type: Transform pos: -0.66275233,-326.49893 parent: 2 - - uid: 11810 + - uid: 13114 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.3482165,-349.49252 parent: 2 - - uid: 11811 + - uid: 13115 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.6562117,-353.50278 parent: 2 - - uid: 11815 + - uid: 13116 components: - type: Transform rot: 1.5707963267948966 rad @@ -85933,19 +85376,19 @@ entities: parent: 2 - proto: SignRedSeven entities: - - uid: 4114 + - uid: 13117 components: - type: Transform rot: 3.141592653589793 rad pos: -0.40892178,-186.50111 parent: 2 - - uid: 6612 + - uid: 13118 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5926433,-209.5081 parent: 2 - - uid: 8933 + - uid: 13119 components: - type: Transform rot: 1.5707963267948966 rad @@ -85953,13 +85396,13 @@ entities: parent: 2 - proto: SignRedSix entities: - - uid: 737 + - uid: 13120 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5832694,-182.49539 parent: 2 - - uid: 1339 + - uid: 13121 components: - type: Transform rot: 3.141592653589793 rad @@ -85967,25 +85410,25 @@ entities: parent: 2 - proto: SignRedThree entities: - - uid: 4084 + - uid: 13122 components: - type: Transform rot: 3.141592653589793 rad pos: 1.588459,-101.49657 parent: 2 - - uid: 4093 + - uid: 13123 components: - type: Transform rot: 3.141592653589793 rad pos: -0.41010725,-78.500275 parent: 2 - - uid: 11812 + - uid: 13124 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.41125554,-353.50778 parent: 2 - - uid: 11814 + - uid: 13125 components: - type: Transform rot: 1.5707963267948966 rad @@ -85993,24 +85436,24 @@ entities: parent: 2 - proto: SignRedTwo entities: - - uid: 4081 + - uid: 13126 components: - type: Transform rot: 3.141592653589793 rad pos: -0.4081869,-51.5101 parent: 2 - - uid: 4082 + - uid: 13127 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5891788,-74.492035 parent: 2 - - uid: 10631 + - uid: 13128 components: - type: Transform pos: -0.40840113,-326.49893 parent: 2 - - uid: 11807 + - uid: 13129 components: - type: Transform rot: 1.5707963267948966 rad @@ -86018,150 +85461,150 @@ entities: parent: 2 - proto: SignRedZero entities: - - uid: 716 + - uid: 13130 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6534249,-159.49841 parent: 2 - - uid: 866 + - uid: 13131 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3433123,-182.50206 parent: 2 - - uid: 871 + - uid: 13132 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3428853,-155.49748 parent: 2 - - uid: 4073 + - uid: 13133 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5774398,-20.510248 parent: 2 - - uid: 4074 + - uid: 13134 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.3465674,-20.503857 parent: 2 - - uid: 4075 + - uid: 13135 components: - type: Transform rot: 3.141592653589793 rad pos: -0.64673156,-78.49695 parent: 2 - - uid: 4079 + - uid: 13136 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.3543932,-47.503147 parent: 2 - - uid: 4080 + - uid: 13137 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6514768,-51.50535 parent: 2 - - uid: 4083 + - uid: 13138 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.3504801,-74.492035 parent: 2 - - uid: 4088 + - uid: 13139 components: - type: Transform rot: 3.141592653589793 rad pos: -0.64814395,-24.502266 parent: 2 - - uid: 4095 + - uid: 13140 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3433409,-101.495316 parent: 2 - - uid: 4096 + - uid: 13141 components: - type: Transform rot: 3.141592653589793 rad pos: -0.64724535,-105.49722 parent: 2 - - uid: 4103 + - uid: 13142 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3494184,-128.49886 parent: 2 - - uid: 4104 + - uid: 13143 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6562591,-132.49622 parent: 2 - - uid: 4107 + - uid: 13144 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6522116,-186.49445 parent: 2 - - uid: 5423 + - uid: 13145 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6627056,-213.4963 parent: 2 - - uid: 5424 + - uid: 13146 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3530763,-209.50024 parent: 2 - - uid: 6615 + - uid: 13147 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3327662,-236.4863 parent: 2 - - uid: 6616 + - uid: 13148 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6607372,-240.49602 parent: 2 - - uid: 6623 + - uid: 13149 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3455713,-263.49365 parent: 2 - - uid: 7362 + - uid: 13150 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5789645,-256.74753 parent: 2 - - uid: 8130 + - uid: 13151 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.6912138,-115.74884 parent: 2 - - uid: 8971 + - uid: 13152 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.42397034,-267.50113 parent: 2 - - uid: 10624 + - uid: 13153 components: - type: Transform pos: 1.5823798,-290.49802 parent: 2 - - uid: 13306 + - uid: 13154 components: - type: Transform rot: -1.5707963267948966 rad @@ -86169,7 +85612,7 @@ entities: parent: 2 - proto: SignRND entities: - - uid: 12651 + - uid: 13155 components: - type: Transform rot: 3.141592653589793 rad @@ -86177,7 +85620,7 @@ entities: parent: 2 - proto: SignRobo entities: - - uid: 12654 + - uid: 13156 components: - type: Transform rot: 3.141592653589793 rad @@ -86185,85 +85628,85 @@ entities: parent: 2 - proto: SignSecureMed entities: - - uid: 103 + - uid: 13157 components: - type: Transform pos: 0.5,-3.5 parent: 2 - - uid: 12662 + - uid: 13158 components: - type: Transform pos: -3.5,-326.5 parent: 2 - - uid: 12663 + - uid: 13159 components: - type: Transform pos: 4.5,-326.5 parent: 2 - - uid: 12664 + - uid: 13160 components: - type: Transform pos: -3.5,-349.5 parent: 2 - - uid: 12665 + - uid: 13161 components: - type: Transform pos: 4.5,-349.5 parent: 2 - - uid: 12666 + - uid: 13162 components: - type: Transform pos: 4.5,-353.5 parent: 2 - - uid: 12667 + - uid: 13163 components: - type: Transform pos: -3.5,-353.5 parent: 2 - - uid: 12668 + - uid: 13164 components: - type: Transform pos: -3.5,-376.5 parent: 2 - - uid: 12670 + - uid: 13165 components: - type: Transform pos: 4.5,-376.5 parent: 2 - proto: SignSecureSmallRed entities: - - uid: 12671 + - uid: 13166 components: - type: Transform pos: -3.5,-380.5 parent: 2 - - uid: 12672 + - uid: 13167 components: - type: Transform pos: 4.5,-380.5 parent: 2 - proto: SignSecurity entities: - - uid: 7721 + - uid: 13168 components: - type: Transform pos: 2.5,-334.5 parent: 2 - proto: SignShipDock entities: - - uid: 12535 + - uid: 13169 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-30.5 parent: 2 - - uid: 12538 + - uid: 13170 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-42.5 parent: 2 - - uid: 12539 + - uid: 13171 components: - type: Transform rot: -1.5707963267948966 rad @@ -86271,72 +85714,72 @@ entities: parent: 2 - proto: SignSmoking entities: - - uid: 3397 + - uid: 13172 components: - type: Transform pos: -0.5,-182.5 parent: 2 - - uid: 4071 + - uid: 13173 components: - type: Transform pos: 1.5,-132.5 parent: 2 - - uid: 4076 + - uid: 13174 components: - type: Transform pos: 1.5,-159.5 parent: 2 - - uid: 4077 + - uid: 13175 components: - type: Transform pos: -0.5,-155.5 parent: 2 - - uid: 4085 + - uid: 13176 components: - type: Transform pos: 1.5,-105.5 parent: 2 - - uid: 4087 + - uid: 13177 components: - type: Transform pos: -0.5,-20.5 parent: 2 - - uid: 4090 + - uid: 13178 components: - type: Transform pos: 1.5,-24.5 parent: 2 - - uid: 4091 + - uid: 13179 components: - type: Transform pos: -0.5,-128.5 parent: 2 - - uid: 4092 + - uid: 13180 components: - type: Transform pos: -0.5,-101.5 parent: 2 - - uid: 4097 + - uid: 13181 components: - type: Transform pos: 1.5,-78.5 parent: 2 - - uid: 4098 + - uid: 13182 components: - type: Transform pos: -0.5,-74.5 parent: 2 - - uid: 4099 + - uid: 13183 components: - type: Transform pos: 1.5,-51.5 parent: 2 - - uid: 4100 + - uid: 13184 components: - type: Transform pos: -0.5,-47.5 parent: 2 - - uid: 4142 + - uid: 13185 components: - type: Transform rot: -1.5707963267948966 rad @@ -86344,69 +85787,69 @@ entities: parent: 2 - proto: SignSpace entities: - - uid: 12695 + - uid: 13186 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-316.5 parent: 2 - - uid: 12696 + - uid: 13187 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-312.5 parent: 2 - - uid: 13444 + - uid: 13188 components: - type: Transform pos: -6.5,-14.5 parent: 2 - - uid: 13446 + - uid: 13189 components: - type: Transform pos: 6.5,-26.5 parent: 2 - - uid: 13448 + - uid: 13190 components: - type: Transform pos: 7.5,-30.5 parent: 2 - - uid: 13456 + - uid: 13191 components: - type: Transform pos: 4.5,-153.5 parent: 2 - - uid: 13461 + - uid: 13192 components: - type: Transform pos: -3.5,-242.5 parent: 2 - - uid: 13463 + - uid: 13193 components: - type: Transform pos: 6.5,-269.5 parent: 2 - - uid: 13464 + - uid: 13194 components: - type: Transform pos: 6.5,-288.5 parent: 2 - - uid: 13465 + - uid: 13195 components: - type: Transform pos: 6.5,-295.5 parent: 2 - - uid: 13466 + - uid: 13196 components: - type: Transform pos: 4.5,-320.5 parent: 2 - - uid: 13468 + - uid: 13197 components: - type: Transform pos: -3.5,-327.5 parent: 2 - - uid: 15188 + - uid: 13198 components: - type: Transform rot: -1.5707963267948966 rad @@ -86414,7 +85857,7 @@ entities: parent: 2 - proto: SignTelecomms entities: - - uid: 12677 + - uid: 13199 components: - type: Transform rot: 3.141592653589793 rad @@ -86422,7 +85865,7 @@ entities: parent: 2 - proto: SignVirology entities: - - uid: 3876 + - uid: 13200 components: - type: Transform rot: 3.141592653589793 rad @@ -86430,39 +85873,39 @@ entities: parent: 2 - proto: SilverOre1 entities: - - uid: 10117 + - uid: 13201 components: - type: Transform pos: -4.418913,-304.40326 parent: 2 - proto: SingularityGenerator entities: - - uid: 7464 + - uid: 13202 components: - type: Transform pos: 19.5,-239.5 parent: 2 - proto: Sink entities: - - uid: 2865 + - uid: 13203 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-153.5 parent: 2 - - uid: 11477 + - uid: 13204 components: - type: Transform pos: 5.5,-370.5 parent: 2 - - uid: 11478 + - uid: 13205 components: - type: Transform pos: -4.5,-370.5 parent: 2 - proto: SinkStemlessWater entities: - - uid: 2867 + - uid: 13206 components: - type: Transform rot: 3.141592653589793 rad @@ -86470,101 +85913,101 @@ entities: parent: 2 - proto: SinkWide entities: - - uid: 1721 + - uid: 13207 components: - type: Transform pos: -3.5,-53.5 parent: 2 - - uid: 2288 + - uid: 13208 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-63.5 parent: 2 - - uid: 2299 + - uid: 13209 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-90.5 parent: 2 - - uid: 3031 + - uid: 13210 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-85.5 parent: 2 - - uid: 3398 + - uid: 13211 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-84.5 parent: 2 - - uid: 14369 + - uid: 13212 components: - type: Transform pos: 15.5,-59.5 parent: 2 - proto: SmartFridge entities: - - uid: 3068 + - uid: 13213 components: - type: Transform pos: 4.5,-170.5 parent: 2 - proto: SMESBasic entities: - - uid: 756 + - uid: 13214 components: - type: Transform pos: -11.5,-251.5 parent: 2 - - uid: 4169 + - uid: 13215 components: - type: Transform pos: 3.5,-346.5 parent: 2 - - uid: 5385 + - uid: 13216 components: - type: Transform pos: 3.5,-229.5 parent: 2 - - uid: 5434 + - uid: 13217 components: - type: Transform pos: -2.5,-220.5 parent: 2 - - uid: 6748 + - uid: 13218 components: - type: Transform pos: 13.5,-251.5 parent: 2 - - uid: 6815 + - uid: 13219 components: - type: Transform pos: 13.5,-252.5 parent: 2 - - uid: 6816 + - uid: 13220 components: - type: Transform pos: 13.5,-253.5 parent: 2 - proto: SmokingPipeFilledCannabis entities: - - uid: 14923 + - uid: 13221 components: - type: Transform pos: -6.578457,-148.21114 parent: 2 - proto: SmokingPipeFilledTobacco entities: - - uid: 1336 + - uid: 13222 components: - type: Transform pos: 3.2005093,-101.69577 parent: 2 - proto: SodaDispenser entities: - - uid: 1025 + - uid: 13223 components: - type: Transform rot: 3.141592653589793 rad @@ -86572,356 +86015,356 @@ entities: parent: 2 - proto: SolarAssembly entities: - - uid: 4384 + - uid: 13224 components: - type: Transform pos: 8.5,-219.5 parent: 2 - proto: SolarPanel entities: - - uid: 4242 + - uid: 13225 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-220.5 parent: 2 - - uid: 4362 + - uid: 13226 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-221.5 parent: 2 - - uid: 4363 + - uid: 13227 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-222.5 parent: 2 - - uid: 4364 + - uid: 13228 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-223.5 parent: 2 - - uid: 4365 + - uid: 13229 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-224.5 parent: 2 - - uid: 4367 + - uid: 13230 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-226.5 parent: 2 - - uid: 4368 + - uid: 13231 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-227.5 parent: 2 - - uid: 4369 + - uid: 13232 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-228.5 parent: 2 - - uid: 4370 + - uid: 13233 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-229.5 parent: 2 - - uid: 4372 + - uid: 13234 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-220.5 parent: 2 - - uid: 4373 + - uid: 13235 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-221.5 parent: 2 - - uid: 4374 + - uid: 13236 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-222.5 parent: 2 - - uid: 4375 + - uid: 13237 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-223.5 parent: 2 - - uid: 4376 + - uid: 13238 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-224.5 parent: 2 - - uid: 4377 + - uid: 13239 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-225.5 parent: 2 - - uid: 4379 + - uid: 13240 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-227.5 parent: 2 - - uid: 4380 + - uid: 13241 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-228.5 parent: 2 - - uid: 4381 + - uid: 13242 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-229.5 parent: 2 - - uid: 4382 + - uid: 13243 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-217.5 parent: 2 - - uid: 4383 + - uid: 13244 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-218.5 parent: 2 - - uid: 4386 + - uid: 13245 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-221.5 parent: 2 - - uid: 4387 + - uid: 13246 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-222.5 parent: 2 - - uid: 4388 + - uid: 13247 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-223.5 parent: 2 - - uid: 4390 + - uid: 13248 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-225.5 parent: 2 - - uid: 4391 + - uid: 13249 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-226.5 parent: 2 - - uid: 4392 + - uid: 13250 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-227.5 parent: 2 - - uid: 4393 + - uid: 13251 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-228.5 parent: 2 - - uid: 4395 + - uid: 13252 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-230.5 parent: 2 - - uid: 4396 + - uid: 13253 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-231.5 parent: 2 - - uid: 4397 + - uid: 13254 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-232.5 parent: 2 - - uid: 4398 + - uid: 13255 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-232.5 parent: 2 - - uid: 4399 + - uid: 13256 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-231.5 parent: 2 - - uid: 4400 + - uid: 13257 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-230.5 parent: 2 - - uid: 4402 + - uid: 13258 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-228.5 parent: 2 - - uid: 4404 + - uid: 13259 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-226.5 parent: 2 - - uid: 4405 + - uid: 13260 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-225.5 parent: 2 - - uid: 4406 + - uid: 13261 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-224.5 parent: 2 - - uid: 4407 + - uid: 13262 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-223.5 parent: 2 - - uid: 4408 + - uid: 13263 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-222.5 parent: 2 - - uid: 4409 + - uid: 13264 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-221.5 parent: 2 - - uid: 4411 + - uid: 13265 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-219.5 parent: 2 - - uid: 4412 + - uid: 13266 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-218.5 parent: 2 - - uid: 4413 + - uid: 13267 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-217.5 parent: 2 - - uid: 4414 + - uid: 13268 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-215.5 parent: 2 - - uid: 4418 + - uid: 13269 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-234.5 parent: 2 - - uid: 4421 + - uid: 13270 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-234.5 parent: 2 - - uid: 4422 + - uid: 13271 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-233.5 parent: 2 - - uid: 4423 + - uid: 13272 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-231.5 parent: 2 - - uid: 4424 + - uid: 13273 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-230.5 parent: 2 - - uid: 4425 + - uid: 13274 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-231.5 parent: 2 - - uid: 4426 + - uid: 13275 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-230.5 parent: 2 - - uid: 4427 + - uid: 13276 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-233.5 parent: 2 - - uid: 4428 + - uid: 13277 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-219.5 parent: 2 - - uid: 4429 + - uid: 13278 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-218.5 parent: 2 - - uid: 4430 + - uid: 13279 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-216.5 parent: 2 - - uid: 4431 + - uid: 13280 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-216.5 parent: 2 - - uid: 4432 + - uid: 13281 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-218.5 parent: 2 - - uid: 4433 + - uid: 13282 components: - type: Transform rot: 1.5707963267948966 rad @@ -86929,25 +86372,25 @@ entities: parent: 2 - proto: SolarPanelBroken entities: - - uid: 4366 + - uid: 13283 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-225.5 parent: 2 - - uid: 4389 + - uid: 13284 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-224.5 parent: 2 - - uid: 4809 + - uid: 13285 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-227.5 parent: 2 - - uid: 4812 + - uid: 13286 components: - type: Transform rot: 3.141592653589793 rad @@ -86955,74 +86398,74 @@ entities: parent: 2 - proto: SolarTracker entities: - - uid: 4417 + - uid: 13287 components: - type: Transform pos: -3.5,-214.5 parent: 2 - - uid: 4807 + - uid: 13288 components: - type: Transform pos: -3.5,-235.5 parent: 2 - - uid: 4808 + - uid: 13289 components: - type: Transform pos: 4.5,-235.5 parent: 2 - proto: SolidSecretDoor entities: - - uid: 2623 + - uid: 13290 components: - type: Transform pos: -3.5,-149.5 parent: 2 - proto: SpaceCash10 entities: - - uid: 14418 + - uid: 13291 components: - type: Transform pos: 14.544594,-78.46228 parent: 2 - - uid: 14473 + - uid: 13292 components: - type: Transform pos: 14.3597,-78.22464 parent: 2 - - uid: 14474 + - uid: 13293 components: - type: Transform pos: 13.567299,-82.76628 parent: 2 - proto: SpaceCash100 entities: - - uid: 14475 + - uid: 13294 components: - type: Transform pos: 17.648165,-82.3042 parent: 2 - proto: SpaceHeater entities: - - uid: 2335 + - uid: 13295 components: - type: Transform pos: -11.5,-256.5 parent: 2 - - uid: 2390 + - uid: 13296 components: - type: Transform pos: -11.5,-255.5 parent: 2 - proto: SpaceVillainArcadeComputerCircuitboard entities: - - uid: 15272 + - uid: 13297 components: - type: Transform pos: 6.583322,-242.507 parent: 2 - proto: SpaceVillainArcadeFilled entities: - - uid: 7558 + - uid: 13298 components: - type: Transform rot: -1.5707963267948966 rad @@ -87030,7 +86473,7 @@ entities: parent: 2 - type: SpamEmitSound enabled: False - - uid: 15273 + - uid: 13299 components: - type: Transform pos: 5.5,-242.5 @@ -87039,35 +86482,35 @@ entities: enabled: False - proto: SpawnMobAlexander entities: - - uid: 2310 + - uid: 13300 components: - type: Transform pos: 0.5,-87.5 parent: 2 - proto: SpawnMobBandito entities: - - uid: 12155 + - uid: 13301 components: - type: Transform pos: -2.5,-305.5 parent: 2 - proto: SpawnMobCat entities: - - uid: 7208 + - uid: 13302 components: - type: Transform pos: 0.5,-203.5 parent: 2 - proto: SpawnMobCorgi entities: - - uid: 2237 + - uid: 13303 components: - type: Transform pos: 1.5,-117.5 parent: 2 - proto: SpawnMobCow entities: - - uid: 43 + - uid: 13304 components: - type: Transform rot: 3.141592653589793 rad @@ -87075,93 +86518,79 @@ entities: parent: 2 - proto: SpawnMobCrabAtmos entities: - - uid: 14576 + - uid: 13305 components: - type: Transform pos: -15.5,-265.5 parent: 2 - proto: SpawnMobFoxRenault entities: - - uid: 12121 + - uid: 13306 components: - type: Transform pos: -1.5,-11.5 parent: 2 - proto: SpawnMobMcGriff entities: - - uid: 6770 + - uid: 13307 components: - type: Transform pos: -0.5,-363.5 parent: 2 -- proto: SpawnMobMedibot - entities: - - uid: 3102 - components: - - type: Transform - pos: 1.5,-167.5 - parent: 2 - proto: SpawnMobMonkeyPunpun entities: - - uid: 13626 + - uid: 13308 components: - type: Transform pos: -0.5,-61.5 parent: 2 - proto: SpawnMobMouse entities: - - uid: 4147 + - uid: 13309 components: - type: Transform pos: -3.5,-39.5 parent: 2 - - uid: 6842 + - uid: 13310 components: - type: Transform pos: 3.5,-112.5 parent: 2 - - uid: 8928 + - uid: 13311 components: - type: Transform pos: -4.5,-179.5 parent: 2 - - uid: 8970 + - uid: 13312 components: - type: Transform pos: -5.5,1.5 parent: 2 - - uid: 9385 + - uid: 13313 components: - type: Transform pos: 5.5,-67.5 parent: 2 - - uid: 15749 + - uid: 13314 components: - type: Transform pos: -4.5,-146.5 parent: 2 - proto: SpawnMobPossumMorty entities: - - uid: 2709 + - uid: 13315 components: - type: Transform pos: 5.5,-139.5 parent: 2 - - uid: 12154 + - uid: 13316 components: - type: Transform pos: -3.5,-176.5 parent: 2 -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 5881 - components: - - type: Transform - pos: 4.5,-280.5 - parent: 2 - proto: SpawnMobShiva entities: - - uid: 8229 + - uid: 13317 components: - type: Transform rot: -1.5707963267948966 rad @@ -87169,76 +86598,76 @@ entities: parent: 2 - proto: SpawnMobSlothPaperwork entities: - - uid: 12157 + - uid: 13318 components: - type: Transform pos: -2.5,-144.5 parent: 2 - proto: SpawnMobSmile entities: - - uid: 10536 + - uid: 13319 components: - type: Transform pos: -8.5,-304.5 parent: 2 - proto: SpawnMobWalter entities: - - uid: 12148 + - uid: 13320 components: - type: Transform pos: 6.5,-166.5 parent: 2 - proto: SpawnPointAtmos entities: - - uid: 16583 + - uid: 13321 components: - type: Transform pos: -14.5,-264.5 parent: 2 - - uid: 16585 + - uid: 13322 components: - type: Transform pos: -14.5,-263.5 parent: 2 - - uid: 16586 + - uid: 13323 components: - type: Transform pos: -14.5,-262.5 parent: 2 - proto: SpawnPointBartender entities: - - uid: 11976 + - uid: 13324 components: - type: Transform pos: 4.5,-64.5 parent: 2 - proto: SpawnPointBorg entities: - - uid: 12076 + - uid: 13325 components: - type: Transform pos: 3.5,-312.5 parent: 2 - - uid: 12077 + - uid: 13326 components: - type: Transform pos: 3.5,-314.5 parent: 2 - proto: SpawnPointBotanist entities: - - uid: 11977 + - uid: 13327 components: - type: Transform pos: 6.5,-82.5 parent: 2 - - uid: 11978 + - uid: 13328 components: - type: Transform pos: -6.5,-84.5 parent: 2 - proto: SpawnPointCaptain entities: - - uid: 11971 + - uid: 13329 components: - type: Transform pos: -0.5,-14.5 @@ -87259,439 +86688,439 @@ entities: parent: 2 - proto: SpawnPointCargoTechnician entities: - - uid: 14231 + - uid: 13330 components: - type: Transform pos: 2.5,-278.5 parent: 2 - - uid: 14234 + - uid: 13331 components: - type: Transform pos: 3.5,-272.5 parent: 2 - - uid: 14235 + - uid: 13332 components: - type: Transform pos: 6.5,-280.5 parent: 2 - proto: SpawnPointChaplain entities: - - uid: 11982 + - uid: 13333 components: - type: Transform pos: 6.5,-139.5 parent: 2 - proto: SpawnPointChef entities: - - uid: 11979 + - uid: 13334 components: - type: Transform pos: 4.5,-89.5 parent: 2 - proto: SpawnPointChemist entities: - - uid: 12032 + - uid: 13335 components: - type: Transform pos: 4.5,-166.5 parent: 2 - - uid: 12033 + - uid: 13336 components: - type: Transform pos: 6.5,-168.5 parent: 2 - proto: SpawnPointChiefEngineer entities: - - uid: 4806 + - uid: 13337 components: - type: Transform pos: 10.5,-250.5 parent: 2 - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 4112 + - uid: 13338 components: - type: Transform pos: 0.5,-202.5 parent: 2 - proto: SpawnPointClown entities: - - uid: 12071 + - uid: 13339 components: - type: Transform pos: -6.5,-124.5 parent: 2 - proto: SpawnPointDetective entities: - - uid: 2502 + - uid: 13340 components: - type: Transform pos: -5.5,-73.5 parent: 2 - proto: SpawnPointHeadOfPersonnel entities: - - uid: 11972 + - uid: 13341 components: - type: Transform pos: -0.5,-116.5 parent: 2 - proto: SpawnPointHeadOfSecurity entities: - - uid: 12054 + - uid: 13342 components: - type: Transform pos: -2.5,-344.5 parent: 2 - proto: SpawnPointJanitor entities: - - uid: 11985 + - uid: 13343 components: - type: Transform pos: -3.5,-54.5 parent: 2 - proto: SpawnPointLatejoin entities: - - uid: 12078 + - uid: 13344 components: - type: Transform pos: -6.5,-107.5 parent: 2 - - uid: 12706 + - uid: 13345 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 12707 + - uid: 13346 components: - type: Transform pos: -3.5,-30.5 parent: 2 - - uid: 12708 + - uid: 13347 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 12709 + - uid: 13348 components: - type: Transform pos: 2.5,-29.5 parent: 2 - - uid: 12710 + - uid: 13349 components: - type: Transform pos: 5.5,-39.5 parent: 2 - - uid: 12711 + - uid: 13350 components: - type: Transform pos: 3.5,-42.5 parent: 2 - proto: SpawnPointLawyer entities: - - uid: 12063 + - uid: 13351 components: - type: Transform pos: 5.5,-329.5 parent: 2 - - uid: 12067 + - uid: 13352 components: - type: Transform pos: 5.5,-331.5 parent: 2 - proto: SpawnPointLibrarian entities: - - uid: 11984 + - uid: 13353 components: - type: Transform pos: -5.5,-135.5 parent: 2 - proto: SpawnPointMedicalDoctor entities: - - uid: 12034 + - uid: 13354 components: - type: Transform pos: -3.5,-173.5 parent: 2 - - uid: 12035 + - uid: 13355 components: - type: Transform pos: 8.5,-174.5 parent: 2 - - uid: 12036 + - uid: 13356 components: - type: Transform pos: 3.5,-172.5 parent: 2 - proto: SpawnPointMedicalIntern entities: - - uid: 12037 + - uid: 13357 components: - type: Transform pos: 8.5,-172.5 parent: 2 - - uid: 12038 + - uid: 13358 components: - type: Transform pos: 3.5,-174.5 parent: 2 - proto: SpawnPointMime entities: - - uid: 12072 + - uid: 13359 components: - type: Transform pos: -6.5,-121.5 parent: 2 - proto: SpawnPointMusician entities: - - uid: 8927 + - uid: 13360 components: - type: Transform pos: -5.5,-65.5 parent: 2 - proto: SpawnPointObserver entities: - - uid: 12079 + - uid: 13361 components: - type: Transform pos: -0.5,-62.5 parent: 2 - proto: SpawnPointPassenger entities: - - uid: 12068 + - uid: 13362 components: - type: Transform pos: -8.5,-115.5 parent: 2 - - uid: 12069 + - uid: 13363 components: - type: Transform pos: -6.5,-118.5 parent: 2 - - uid: 12070 + - uid: 13364 components: - type: Transform pos: -6.5,-112.5 parent: 2 - proto: SpawnPointQuartermaster entities: - - uid: 14229 + - uid: 13365 components: - type: Transform pos: 4.5,-285.5 parent: 2 - proto: SpawnPointResearchAssistant entities: - - uid: 3364 + - uid: 13366 components: - type: Transform pos: -0.5,-312.5 parent: 2 - - uid: 12053 + - uid: 13367 components: - type: Transform pos: 1.5,-301.5 parent: 2 - proto: SpawnPointResearchDirector entities: - - uid: 12039 + - uid: 13368 components: - type: Transform pos: -9.5,-302.5 parent: 2 - proto: SpawnPointSalvageSpecialist entities: - - uid: 14230 + - uid: 13369 components: - type: Transform pos: -3.5,-287.5 parent: 2 - - uid: 14232 + - uid: 13370 components: - type: Transform pos: -5.5,-285.5 parent: 2 - - uid: 14233 + - uid: 13371 components: - type: Transform pos: -5.5,-273.5 parent: 2 - proto: SpawnPointScientist entities: - - uid: 12047 + - uid: 13372 components: - type: Transform pos: -2.5,-302.5 parent: 2 - - uid: 12048 + - uid: 13373 components: - type: Transform pos: 4.5,-303.5 parent: 2 - - uid: 12049 + - uid: 13374 components: - type: Transform pos: 6.5,-313.5 parent: 2 - - uid: 12050 + - uid: 13375 components: - type: Transform pos: -7.5,-318.5 parent: 2 - proto: SpawnPointSecurityCadet entities: - - uid: 9497 + - uid: 13376 components: - type: Transform pos: -5.5,-337.5 parent: 2 - - uid: 12874 + - uid: 13377 components: - type: Transform pos: 2.5,-337.5 parent: 2 - proto: SpawnPointSecurityOfficer entities: - - uid: 1669 + - uid: 13378 components: - type: Transform pos: -7.5,-338.5 parent: 2 - - uid: 10808 + - uid: 13379 components: - type: Transform pos: -6.5,-337.5 parent: 2 - - uid: 12059 + - uid: 13380 components: - type: Transform pos: -0.5,-344.5 parent: 2 - - uid: 12060 + - uid: 13381 components: - type: Transform pos: -0.5,-346.5 parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 11867 + - uid: 13382 components: - type: Transform pos: 4.5,-87.5 parent: 2 - - uid: 11986 + - uid: 13383 components: - type: Transform pos: -3.5,-62.5 parent: 2 - - uid: 14325 + - uid: 13384 components: - type: Transform pos: 15.5,-61.5 parent: 2 - proto: SpawnPointStationEngineer entities: - - uid: 4851 + - uid: 13385 components: - type: Transform pos: 6.5,-252.5 parent: 2 - - uid: 8780 + - uid: 13386 components: - type: Transform pos: 4.5,-252.5 parent: 2 - - uid: 9023 + - uid: 13387 components: - type: Transform pos: 6.5,-253.5 parent: 2 - - uid: 10931 + - uid: 13388 components: - type: Transform pos: 5.5,-251.5 parent: 2 - - uid: 12205 + - uid: 13389 components: - type: Transform pos: 4.5,-253.5 parent: 2 - proto: SpawnPointTechnicalAssistant entities: - - uid: 2484 + - uid: 13390 components: - type: Transform pos: -2.5,-249.5 parent: 2 - - uid: 4350 + - uid: 13391 components: - type: Transform pos: 1.5,-247.5 parent: 2 - - uid: 6660 + - uid: 13392 components: - type: Transform pos: -2.5,-250.5 parent: 2 - proto: SpawnPointWarden entities: - - uid: 12055 + - uid: 13393 components: - type: Transform pos: 0.5,-364.5 parent: 2 - proto: SpawnVendingMachineRestockDrink entities: - - uid: 1714 + - uid: 13394 components: - type: Transform pos: -5.5,-39.5 parent: 2 - proto: SpawnVendingMachineRestockFood entities: - - uid: 1585 + - uid: 13395 components: - type: Transform pos: 4.5,-59.5 parent: 2 - - uid: 2437 + - uid: 13396 components: - type: Transform pos: 6.5,-108.5 parent: 2 - proto: SpeedLoaderCap entities: - - uid: 14635 + - uid: 13397 components: - type: Transform pos: -2.3873794,-259.3928 parent: 2 - proto: SpiderWeb entities: - - uid: 1548 + - uid: 13398 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-28.5 parent: 2 - - uid: 14776 + - uid: 13399 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 - - uid: 14777 + - uid: 13400 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-32.5 parent: 2 - - uid: 14778 + - uid: 13401 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-34.5 parent: 2 - - uid: 14779 + - uid: 13402 components: - type: Transform rot: -1.5707963267948966 rad @@ -87699,37 +87128,37 @@ entities: parent: 2 - proto: StairStage entities: - - uid: 510 + - uid: 13403 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-36.5 parent: 2 - - uid: 604 + - uid: 13404 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 - - uid: 693 + - uid: 13405 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-31.5 parent: 2 - - uid: 694 + - uid: 13406 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-29.5 parent: 2 - - uid: 8821 + - uid: 13407 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-273.5 parent: 2 - - uid: 8822 + - uid: 13408 components: - type: Transform rot: 1.5707963267948966 rad @@ -87737,107 +87166,107 @@ entities: parent: 2 - proto: StasisBed entities: - - uid: 3119 + - uid: 13409 components: - type: Transform pos: 8.5,-178.5 parent: 2 - proto: StationMap entities: - - uid: 2859 + - uid: 13410 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-118.5 parent: 2 - - uid: 2860 + - uid: 13411 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-145.5 parent: 2 - - uid: 2862 + - uid: 13412 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-55.5 parent: 2 - - uid: 2863 + - uid: 13413 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-45.5 parent: 2 - - uid: 2864 + - uid: 13414 components: - type: Transform pos: 2.5,-26.5 parent: 2 - - uid: 2866 + - uid: 13415 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-14.5 parent: 2 - - uid: 3156 + - uid: 13416 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-170.5 parent: 2 - - uid: 4003 + - uid: 13417 components: - type: Transform pos: 1.5,-204.5 parent: 2 - - uid: 6821 + - uid: 13418 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-253.5 parent: 2 - - uid: 8664 + - uid: 13419 components: - type: Transform pos: -2.5,-306.5 parent: 2 - - uid: 11795 + - uid: 13420 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-275.5 parent: 2 - - uid: 11803 + - uid: 13421 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-222.5 parent: 2 - - uid: 11804 + - uid: 13422 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-195.5 parent: 2 - - uid: 12217 + - uid: 13423 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-337.5 parent: 2 - - uid: 14787 + - uid: 13424 components: - type: Transform pos: 6.5,-80.5 parent: 2 - proto: StationMapBroken entities: - - uid: 3186 + - uid: 13425 components: - type: Transform pos: -7.5,-170.5 parent: 2 - - uid: 9703 + - uid: 13426 components: - type: Transform rot: 1.5707963267948966 rad @@ -87845,49 +87274,49 @@ entities: parent: 2 - proto: StatueVenusBlue entities: - - uid: 2665 + - uid: 13427 components: - type: Transform pos: 3.5,-141.5 parent: 2 - proto: StatueVenusRed entities: - - uid: 2506 + - uid: 13428 components: - type: Transform pos: 5.5,-141.5 parent: 2 - proto: SteelBench entities: - - uid: 10873 + - uid: 13429 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-337.5 parent: 2 - - uid: 12697 + - uid: 13430 components: - type: Transform pos: 5.5,-306.5 parent: 2 - - uid: 12698 + - uid: 13431 components: - type: Transform pos: 4.5,-306.5 parent: 2 - - uid: 12699 + - uid: 13432 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-308.5 parent: 2 - - uid: 12700 + - uid: 13433 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-308.5 parent: 2 - - uid: 12875 + - uid: 13434 components: - type: Transform rot: -1.5707963267948966 rad @@ -87895,30 +87324,30 @@ entities: parent: 2 - proto: Stool entities: - - uid: 2338 + - uid: 13435 components: - type: Transform pos: -5.5,-337.5 parent: 2 - - uid: 2356 + - uid: 13436 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-342.5 parent: 2 - - uid: 2448 + - uid: 13437 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-339.5 parent: 2 - - uid: 2464 + - uid: 13438 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-335.5 parent: 2 - - uid: 7430 + - uid: 13439 components: - type: Transform rot: -1.5707963267948966 rad @@ -87926,37 +87355,37 @@ entities: parent: 2 - proto: StoolBar entities: - - uid: 44 + - uid: 13440 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-87.5 parent: 2 - - uid: 951 + - uid: 13441 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-62.5 parent: 2 - - uid: 1093 + - uid: 13442 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-61.5 parent: 2 - - uid: 1245 + - uid: 13443 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-63.5 parent: 2 - - uid: 1246 + - uid: 13444 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-64.5 parent: 2 - - uid: 5174 + - uid: 13445 components: - type: Transform rot: -1.5707963267948966 rad @@ -87964,115 +87393,115 @@ entities: parent: 2 - proto: StorageCanister entities: - - uid: 7200 + - uid: 13446 components: - type: Transform pos: -21.5,-240.5 parent: 2 - proto: Stunbaton entities: - - uid: 10736 - components: - - type: Transform - pos: -5.4655995,-340.5027 - parent: 2 - - uid: 12775 + - uid: 5608 components: - type: Transform - parent: 12773 + parent: 5605 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15299 + - uid: 13447 + components: + - type: Transform + pos: -5.4655995,-340.5027 + parent: 2 + - uid: 13448 components: - type: Transform pos: -5.6637,-340.33105 parent: 2 - proto: SubstationBasic entities: - - uid: 364 + - uid: 13449 components: - type: Transform pos: 7.5,-2.5 parent: 2 - - uid: 726 + - uid: 13450 components: - type: Transform pos: -2.5,-43.5 parent: 2 - - uid: 1430 + - uid: 13451 components: - type: Transform pos: 3.5,-53.5 parent: 2 - - uid: 1452 + - uid: 13452 components: - type: Transform pos: -11.5,-252.5 parent: 2 - - uid: 2035 + - uid: 13453 components: - type: Transform pos: -2.5,-99.5 parent: 2 - - uid: 2298 + - uid: 13454 components: - type: Transform pos: 6.5,-111.5 parent: 2 - - uid: 2815 + - uid: 13455 components: - type: Transform pos: 7.5,-153.5 parent: 2 - - uid: 4714 + - uid: 13456 components: - type: Transform pos: -2.5,-161.5 parent: 2 - - uid: 4731 + - uid: 13457 components: - type: Transform pos: 5.5,-187.5 parent: 2 - - uid: 7876 + - uid: 13458 components: - type: Transform pos: 11.5,-250.5 parent: 2 - - uid: 8474 + - uid: 13459 components: - type: Transform pos: 19.5,-265.5 parent: 2 - - uid: 8673 + - uid: 13460 components: - type: Transform pos: 8.5,-284.5 parent: 2 - - uid: 9540 + - uid: 13461 components: - type: Transform pos: 23.5,-306.5 parent: 2 - - uid: 10169 + - uid: 13462 components: - type: Transform pos: -8.5,-297.5 parent: 2 - - uid: 10710 + - uid: 13463 components: - type: Transform pos: 5.5,-346.5 parent: 2 - - uid: 11263 + - uid: 13464 components: - type: Transform pos: 6.5,-361.5 parent: 2 - proto: SubstationWallBasic entities: - - uid: 5460 + - uid: 13465 components: - type: Transform rot: -1.5707963267948966 rad @@ -88080,210 +87509,210 @@ entities: parent: 2 - proto: Sugarcane entities: - - uid: 10997 + - uid: 13466 components: - type: Transform pos: 29.942026,-307.55215 parent: 2 - proto: SuitStorageBasic entities: - - uid: 15156 + - uid: 13467 components: - type: Transform pos: 5.5,-114.5 parent: 2 - - uid: 15171 + - uid: 13468 components: - type: Transform pos: 9.5,-118.5 parent: 2 - proto: SuitStorageCaptain entities: - - uid: 299 + - uid: 13469 components: - type: Transform pos: -3.5,-13.5 parent: 2 - proto: SuitStorageCE entities: - - uid: 13003 + - uid: 13470 components: - type: Transform pos: 11.5,-251.5 parent: 2 - proto: SuitStorageCMO entities: - - uid: 2395 + - uid: 13471 components: - type: Transform pos: -0.5,-203.5 parent: 2 - proto: SuitStorageEVA entities: - - uid: 399 + - uid: 13472 components: - type: Transform pos: 6.5,0.5 parent: 2 - - uid: 400 + - uid: 13473 components: - type: Transform pos: 6.5,1.5 parent: 2 - - uid: 4990 + - uid: 13474 components: - type: Transform pos: 7.5,-113.5 parent: 2 - - uid: 10084 + - uid: 13475 components: - type: Transform pos: 7.5,-116.5 parent: 2 - - uid: 15155 + - uid: 13476 components: - type: Transform pos: 5.5,-113.5 parent: 2 - - uid: 15157 + - uid: 13477 components: - type: Transform pos: 5.5,-115.5 parent: 2 - - uid: 15158 + - uid: 13478 components: - type: Transform pos: 9.5,-113.5 parent: 2 - - uid: 15159 + - uid: 13479 components: - type: Transform pos: 8.5,-113.5 parent: 2 - - uid: 15168 + - uid: 13480 components: - type: Transform pos: 7.5,-117.5 parent: 2 - - uid: 15169 + - uid: 13481 components: - type: Transform pos: 9.5,-116.5 parent: 2 - - uid: 15170 + - uid: 13482 components: - type: Transform pos: 9.5,-117.5 parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 11446 + - uid: 13483 components: - type: Transform pos: 1.5,-375.5 parent: 2 - - uid: 11447 + - uid: 13484 components: - type: Transform pos: -0.5,-375.5 parent: 2 - proto: SuitStorageHOS entities: - - uid: 11095 + - uid: 13485 components: - type: Transform pos: -5.5,-345.5 parent: 2 - proto: SuitStorageNTSRA entities: - - uid: 7607 + - uid: 13486 components: - type: Transform pos: 14.5,-154.5 parent: 2 - proto: SuitStorageRD entities: - - uid: 9850 + - uid: 13487 components: - type: Transform pos: -9.5,-305.5 parent: 2 - proto: SuitStorageSalv entities: - - uid: 8619 + - uid: 13488 components: - type: Transform pos: -2.5,-269.5 parent: 2 - - uid: 8620 + - uid: 13489 components: - type: Transform pos: -3.5,-269.5 parent: 2 - - uid: 8621 + - uid: 13490 components: - type: Transform pos: -4.5,-269.5 parent: 2 - proto: SuitStorageSec entities: - - uid: 3792 + - uid: 13491 components: - type: Transform pos: 4.5,-343.5 parent: 2 - - uid: 10803 + - uid: 13492 components: - type: Transform pos: 6.5,-335.5 parent: 2 - - uid: 10872 + - uid: 13493 components: - type: Transform pos: 5.5,-335.5 parent: 2 - - uid: 13388 + - uid: 13494 components: - type: Transform pos: 7.5,-343.5 parent: 2 - - uid: 13389 + - uid: 13495 components: - type: Transform pos: 5.5,-343.5 parent: 2 - - uid: 14605 + - uid: 13496 components: - type: Transform pos: 6.5,-343.5 parent: 2 - - uid: 15811 + - uid: 13497 components: - type: Transform pos: 7.5,-335.5 parent: 2 - proto: SuitStorageWarden entities: - - uid: 12864 + - uid: 13498 components: - type: Transform pos: 1.5,-362.5 parent: 2 - proto: SurveillanceCameraCommand entities: - - uid: 2127 + - uid: 13499 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-113.5 parent: 2 - - uid: 7824 + - uid: 13500 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-253.5 parent: 2 - - uid: 8923 + - uid: 13501 components: - type: Transform rot: 3.141592653589793 rad @@ -88294,45 +87723,45 @@ entities: - SurveillanceCameraCommand nameSet: True id: Telecomms - - uid: 11473 + - uid: 13502 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-10.5 parent: 2 - - uid: 11517 + - uid: 13503 components: - type: Transform pos: 0.5,0.5 parent: 2 - - uid: 11528 + - uid: 13504 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-4.5 parent: 2 - - uid: 11529 + - uid: 13505 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 11684 + - uid: 13506 components: - type: Transform pos: -2.5,-7.5 parent: 2 - - uid: 11685 + - uid: 13507 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-14.5 parent: 2 - - uid: 11687 + - uid: 13508 components: - type: Transform pos: 4.5,-2.5 parent: 2 - - uid: 11697 + - uid: 13509 components: - type: Transform rot: 3.141592653589793 rad @@ -88340,19 +87769,19 @@ entities: parent: 2 - proto: SurveillanceCameraEngineering entities: - - uid: 8034 + - uid: 13510 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-251.5 parent: 2 - - uid: 8064 + - uid: 13511 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-255.5 parent: 2 - - uid: 8840 + - uid: 13512 components: - type: Transform rot: 3.141592653589793 rad @@ -88360,67 +87789,67 @@ entities: parent: 2 - proto: SurveillanceCameraGeneral entities: - - uid: 3832 + - uid: 13513 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-305.5 parent: 2 - - uid: 11291 + - uid: 13514 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-111.5 parent: 2 - - uid: 11688 + - uid: 13515 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-27.5 parent: 2 - - uid: 11689 + - uid: 13516 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-37.5 parent: 2 - - uid: 11699 + - uid: 13517 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-138.5 parent: 2 - - uid: 11700 + - uid: 13518 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-143.5 parent: 2 - - uid: 11701 + - uid: 13519 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-149.5 parent: 2 - - uid: 11703 + - uid: 13520 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-196.5 parent: 2 - - uid: 11706 + - uid: 13521 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-171.5 parent: 2 - - uid: 11712 + - uid: 13522 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-223.5 parent: 2 - - uid: 11754 + - uid: 13523 components: - type: Transform rot: -1.5707963267948966 rad @@ -88428,7 +87857,7 @@ entities: parent: 2 - proto: SurveillanceCameraMedical entities: - - uid: 7201 + - uid: 13524 components: - type: Transform rot: -1.5707963267948966 rad @@ -88439,104 +87868,104 @@ entities: - SurveillanceCameraMedical nameSet: True id: Morgue - - uid: 11702 + - uid: 13525 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-166.5 parent: 2 - - uid: 11704 + - uid: 13526 components: - type: Transform pos: 6.5,-176.5 parent: 2 - - uid: 11707 + - uid: 13527 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-199.5 parent: 2 - - uid: 11708 + - uid: 13528 components: - type: Transform pos: 0.5,-194.5 parent: 2 - proto: SurveillanceCameraRouterCommand entities: - - uid: 2156 + - uid: 13529 components: - type: Transform pos: 19.5,-315.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 2250 + - uid: 13530 components: - type: Transform pos: 20.5,-315.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 2291 + - uid: 13531 components: - type: Transform pos: 24.5,-315.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 2417 + - uid: 13532 components: - type: Transform pos: 25.5,-315.5 parent: 2 - proto: SurveillanceCameraRouterScience entities: - - uid: 2000 + - uid: 13533 components: - type: Transform pos: 25.5,-317.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 2184 + - uid: 13534 components: - type: Transform pos: 24.5,-317.5 parent: 2 - proto: SurveillanceCameraRouterService entities: - - uid: 2251 + - uid: 13535 components: - type: Transform pos: 20.5,-317.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 2416 + - uid: 13536 components: - type: Transform pos: 19.5,-317.5 parent: 2 - proto: SurveillanceCameraScience entities: - - uid: 11759 + - uid: 13537 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-301.5 parent: 2 - - uid: 11760 + - uid: 13538 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-310.5 parent: 2 - - uid: 11761 + - uid: 13539 components: - type: Transform pos: -5.5,-319.5 parent: 2 - - uid: 11766 + - uid: 13540 components: - type: Transform rot: -1.5707963267948966 rad @@ -88544,116 +87973,115 @@ entities: parent: 2 - proto: SurveillanceCameraSecurity entities: - - uid: 2280 + - uid: 13541 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-342.5 parent: 2 - - uid: 3072 + - uid: 13542 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-336.5 parent: 2 - - uid: 8470 + - uid: 13543 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-335.5 parent: 2 - - uid: 10821 + - uid: 13544 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-335.5 parent: 2 - - uid: 11767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-331.5 - parent: 2 - - uid: 11768 + - uid: 13545 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-329.5 parent: 2 - - uid: 11778 + - uid: 13546 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-356.5 parent: 2 - - uid: 11783 + - uid: 13547 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-356.5 parent: 2 - - uid: 11784 + - uid: 13548 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-356.5 parent: 2 - - uid: 11785 + - uid: 13549 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-366.5 parent: 2 - - uid: 11786 + - uid: 13550 components: - type: Transform pos: -1.5,-373.5 parent: 2 - - uid: 11788 + - uid: 13551 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-362.5 parent: 2 - - uid: 11790 + - uid: 13552 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-362.5 parent: 2 + - uid: 13553 + components: + - type: Transform + pos: -1.5,-333.5 + parent: 2 - proto: SurveillanceCameraService entities: - - uid: 11691 + - uid: 13554 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-61.5 parent: 2 - - uid: 11692 + - uid: 13555 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-60.5 parent: 2 - - uid: 11693 + - uid: 13556 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-53.5 parent: 2 - - uid: 11694 + - uid: 13557 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-70.5 parent: 2 - - uid: 11695 + - uid: 13558 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-85.5 parent: 2 - - uid: 11696 + - uid: 13559 components: - type: Transform rot: 3.141592653589793 rad @@ -88661,49 +88089,49 @@ entities: parent: 2 - proto: SurveillanceCameraSupply entities: - - uid: 11753 + - uid: 13560 components: - type: Transform pos: 4.5,-282.5 parent: 2 - - uid: 11755 + - uid: 13561 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-270.5 parent: 2 - - uid: 11756 + - uid: 13562 components: - type: Transform pos: -3.5,-288.5 parent: 2 - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 632 + - uid: 13563 components: - type: Transform pos: 23.5,-317.5 parent: 2 - - uid: 8597 + - uid: 13564 components: - type: Transform pos: 21.5,-317.5 parent: 2 - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 10677 + - uid: 13565 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-371.5 parent: 2 - - uid: 12683 + - uid: 13566 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-119.5 parent: 2 - - uid: 13451 + - uid: 13567 components: - type: Transform rot: -1.5707963267948966 rad @@ -88711,193 +88139,187 @@ entities: parent: 2 - proto: Syringe entities: - - uid: 2475 - components: - - type: Transform - pos: -1.3886902,-168.44508 - parent: 2 - - uid: 3693 + - uid: 13569 components: - type: Transform pos: 8.467955,-171.31325 parent: 2 - - uid: 12391 + - uid: 13570 components: - type: Transform pos: -4.482805,-317.1948 parent: 2 -- proto: SyringeIpecac - entities: - - uid: 3566 + - uid: 16326 components: - type: Transform - pos: -7.5644717,-177.28705 + rot: 1.5707963267948966 rad + pos: -2.6946619,-168.4281 parent: 2 - proto: Table entities: - - uid: 577 + - uid: 13572 components: - type: Transform pos: 8.5,-173.5 parent: 2 - - uid: 1072 + - uid: 13573 components: - type: Transform pos: -3.5,-26.5 parent: 2 - - uid: 1483 + - uid: 13574 components: - type: Transform pos: 7.5,-56.5 parent: 2 - - uid: 1761 + - uid: 13575 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-32.5 parent: 2 - - uid: 2320 + - uid: 13576 components: - type: Transform pos: 8.5,-175.5 parent: 2 - - uid: 2350 + - uid: 13577 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-257.5 parent: 2 - - uid: 2738 + - uid: 13578 components: - type: Transform pos: 8.5,-177.5 parent: 2 - - uid: 2779 + - uid: 13579 components: - type: Transform pos: 3.5,-173.5 parent: 2 - - uid: 3075 + - uid: 13580 components: - type: Transform pos: 8.5,-171.5 parent: 2 - - uid: 3166 + - uid: 13581 components: - type: Transform pos: 3.5,-171.5 parent: 2 - - uid: 3187 + - uid: 13582 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-32.5 parent: 2 - - uid: 3920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-202.5 - parent: 2 - - uid: 6509 + - uid: 13583 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-32.5 parent: 2 - - uid: 7209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-198.5 - parent: 2 - - uid: 8855 + - uid: 13584 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-201.5 parent: 2 - - uid: 11328 + - uid: 13585 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 + - uid: 13586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-198.5 + parent: 2 + - uid: 13587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-202.5 + parent: 2 - proto: TableCarpet entities: - - uid: 2696 + - uid: 13588 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-140.5 parent: 2 - - uid: 2699 + - uid: 13589 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-141.5 parent: 2 - - uid: 2704 + - uid: 13590 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-139.5 parent: 2 - - uid: 14426 + - uid: 13591 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-82.5 parent: 2 - - uid: 14429 + - uid: 13592 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-78.5 parent: 2 - - uid: 14430 + - uid: 13593 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-78.5 parent: 2 - - uid: 14431 + - uid: 13594 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-78.5 parent: 2 - - uid: 14432 + - uid: 13595 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-78.5 parent: 2 - - uid: 14433 + - uid: 13596 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-79.5 parent: 2 - - uid: 14434 + - uid: 13597 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-79.5 parent: 2 - - uid: 14441 + - uid: 13598 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-83.5 parent: 2 - - uid: 14445 + - uid: 13599 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-83.5 parent: 2 - - uid: 14447 + - uid: 13600 components: - type: Transform rot: 3.141592653589793 rad @@ -88905,45 +88327,45 @@ entities: parent: 2 - proto: TableCounterMetal entities: - - uid: 1835 + - uid: 13601 components: - type: Transform pos: 3.5,-99.5 parent: 2 - - uid: 1836 + - uid: 13602 components: - type: Transform pos: 4.5,-99.5 parent: 2 - - uid: 1838 + - uid: 13603 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-94.5 parent: 2 - - uid: 1840 + - uid: 13604 components: - type: Transform pos: 6.5,-95.5 parent: 2 - - uid: 1849 + - uid: 13605 components: - type: Transform pos: 6.5,-94.5 parent: 2 - - uid: 1850 + - uid: 13606 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-94.5 parent: 2 - - uid: 7835 + - uid: 13607 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-245.5 parent: 2 - - uid: 11913 + - uid: 13608 components: - type: Transform rot: -1.5707963267948966 rad @@ -88951,1266 +88373,1267 @@ entities: parent: 2 - proto: TableCounterWood entities: - - uid: 2725 + - uid: 13609 components: - type: Transform pos: -3.5,-136.5 parent: 2 - - uid: 2726 + - uid: 13610 components: - type: Transform pos: -2.5,-136.5 parent: 2 - proto: TableFancyRed entities: - - uid: 8981 + - uid: 13611 components: - type: Transform pos: -5.5,-63.5 parent: 2 - - uid: 9075 + - uid: 13612 components: - type: Transform pos: -6.5,-62.5 parent: 2 - - uid: 9185 + - uid: 13613 components: - type: Transform pos: -3.5,-67.5 parent: 2 - - uid: 9348 + - uid: 13614 components: - type: Transform pos: -6.5,-63.5 parent: 2 - - uid: 9349 + - uid: 13615 components: - type: Transform pos: 1.5,-58.5 parent: 2 - - uid: 9350 + - uid: 13616 components: - type: Transform pos: 1.5,-59.5 parent: 2 - - uid: 9351 + - uid: 13617 components: - type: Transform pos: 1.5,-67.5 parent: 2 - - uid: 9352 + - uid: 13618 components: - type: Transform pos: 1.5,-66.5 parent: 2 - - uid: 9353 + - uid: 13619 components: - type: Transform pos: -6.5,-67.5 parent: 2 - - uid: 9354 + - uid: 13620 components: - type: Transform pos: -2.5,-58.5 parent: 2 - - uid: 9355 + - uid: 13621 components: - type: Transform pos: -6.5,-58.5 parent: 2 - - uid: 9356 + - uid: 13622 components: - type: Transform pos: -2.5,-67.5 parent: 2 - - uid: 9357 + - uid: 13623 components: - type: Transform pos: -6.5,-59.5 parent: 2 - - uid: 9358 + - uid: 13624 components: - type: Transform pos: -3.5,-58.5 parent: 2 - - uid: 9359 + - uid: 13625 components: - type: Transform pos: -5.5,-62.5 parent: 2 - proto: TableGlass entities: - - uid: 2083 + - uid: 7556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-168.5 + parent: 2 + - uid: 13626 components: - type: Transform pos: -7.5,-115.5 parent: 2 - - uid: 2084 + - uid: 13627 components: - type: Transform pos: -7.5,-112.5 parent: 2 - - uid: 2085 + - uid: 13628 components: - type: Transform pos: -7.5,-118.5 parent: 2 - - uid: 2752 + - uid: 13629 components: - type: Transform pos: 6.5,-123.5 parent: 2 - - uid: 2931 + - uid: 13630 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-174.5 parent: 2 - - uid: 2966 + - uid: 13631 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-175.5 parent: 2 - - uid: 3703 + - uid: 13632 components: - type: Transform pos: 6.5,-122.5 parent: 2 - - uid: 6659 - components: - - type: Transform - pos: -1.5,-168.5 - parent: 2 - - uid: 14350 + - uid: 13634 components: - type: Transform pos: 14.5,-59.5 parent: 2 - - uid: 14355 + - uid: 13635 components: - type: Transform pos: 16.5,-59.5 parent: 2 - - uid: 14628 + - uid: 13636 components: - type: Transform pos: -7.5,-256.5 parent: 2 - - uid: 14629 + - uid: 13637 components: - type: Transform pos: -7.5,-255.5 parent: 2 - - uid: 14659 + - uid: 13638 components: - type: Transform pos: 17.5,-73.5 parent: 2 - - uid: 14660 + - uid: 13639 components: - type: Transform pos: 13.5,-73.5 parent: 2 - - uid: 14661 + - uid: 13640 components: - type: Transform pos: 17.5,-69.5 parent: 2 - - uid: 14662 + - uid: 13641 components: - type: Transform pos: 13.5,-69.5 parent: 2 - - uid: 16506 + - uid: 13642 components: - type: Transform pos: -13.5,-161.5 parent: 2 - - uid: 16507 + - uid: 13643 components: - type: Transform pos: -14.5,-161.5 parent: 2 - - uid: 16508 + - uid: 13644 components: - type: Transform pos: -11.5,-168.5 parent: 2 - - uid: 16509 + - uid: 13645 components: - type: Transform pos: -12.5,-168.5 parent: 2 - - uid: 16510 + - uid: 13646 components: - type: Transform pos: -13.5,-168.5 parent: 2 - proto: TablePlasmaGlass entities: - - uid: 2007 + - uid: 13647 components: - type: Transform pos: -7.5,-124.5 parent: 2 - - uid: 14739 + - uid: 13648 components: - type: Transform pos: -6.5,-307.5 parent: 2 - - uid: 14740 + - uid: 13649 components: - type: Transform pos: -5.5,-307.5 parent: 2 - proto: TableReinforced entities: - - uid: 58 + - uid: 13650 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,2.5 parent: 2 - - uid: 59 + - uid: 13651 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 2 - - uid: 192 + - uid: 13652 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-12.5 parent: 2 - - uid: 198 + - uid: 13653 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-11.5 parent: 2 - - uid: 213 + - uid: 13654 components: - type: Transform pos: 6.5,-12.5 parent: 2 - - uid: 924 + - uid: 13655 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-60.5 parent: 2 - - uid: 932 + - uid: 13656 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-60.5 parent: 2 - - uid: 996 + - uid: 13657 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-64.5 parent: 2 - - uid: 997 + - uid: 13658 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-62.5 parent: 2 - - uid: 998 + - uid: 13659 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-63.5 parent: 2 - - uid: 999 + - uid: 13660 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-61.5 parent: 2 - - uid: 1090 + - uid: 13661 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-60.5 parent: 2 - - uid: 1212 + - uid: 13662 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-65.5 parent: 2 - - uid: 1229 + - uid: 13663 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-65.5 parent: 2 - - uid: 1231 + - uid: 13664 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-87.5 parent: 2 - - uid: 1694 + - uid: 13665 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-85.5 parent: 2 - - uid: 1695 + - uid: 13666 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-86.5 parent: 2 - - uid: 1696 + - uid: 13667 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-87.5 parent: 2 - - uid: 1697 + - uid: 13668 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-88.5 parent: 2 - - uid: 1698 + - uid: 13669 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-89.5 parent: 2 - - uid: 1699 + - uid: 13670 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-90.5 parent: 2 - - uid: 1700 + - uid: 13671 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-91.5 parent: 2 - - uid: 1928 + - uid: 13672 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-88.5 parent: 2 - - uid: 1929 + - uid: 13673 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-87.5 parent: 2 - - uid: 1934 + - uid: 13674 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-86.5 parent: 2 - - uid: 1935 + - uid: 13675 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-86.5 parent: 2 - - uid: 1936 + - uid: 13676 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-86.5 parent: 2 - - uid: 1946 + - uid: 13677 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-85.5 parent: 2 - - uid: 2239 + - uid: 13678 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-122.5 parent: 2 - - uid: 2435 + - uid: 13679 components: - type: Transform pos: 2.5,-192.5 parent: 2 - - uid: 2468 + - uid: 13680 components: - type: Transform pos: 5.5,-339.5 parent: 2 - - uid: 3042 + - uid: 13681 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-87.5 parent: 2 - - uid: 3097 + - uid: 13682 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-170.5 parent: 2 - - uid: 3098 + - uid: 13683 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-168.5 parent: 2 - - uid: 3099 + - uid: 13684 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-167.5 parent: 2 - - uid: 3100 + - uid: 13685 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-166.5 parent: 2 - - uid: 3159 + - uid: 13686 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-253.5 parent: 2 - - uid: 3176 + - uid: 13687 components: - type: Transform pos: 3.5,-192.5 parent: 2 - - uid: 3178 + - uid: 13688 components: - type: Transform pos: 1.5,-192.5 parent: 2 - - uid: 3234 + - uid: 13689 components: - type: Transform pos: 1.5,-193.5 parent: 2 - - uid: 3826 + - uid: 13690 components: - type: Transform pos: 7.5,-196.5 parent: 2 - - uid: 3884 + - uid: 13691 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-200.5 parent: 2 - - uid: 3885 + - uid: 13692 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-206.5 parent: 2 - - uid: 3896 + - uid: 13693 components: - type: Transform pos: -6.5,-194.5 parent: 2 - - uid: 3897 + - uid: 13694 components: - type: Transform pos: -6.5,-195.5 parent: 2 - - uid: 3911 + - uid: 13695 components: - type: Transform pos: -4.5,-198.5 parent: 2 - - uid: 3912 + - uid: 13696 components: - type: Transform pos: -3.5,-198.5 parent: 2 - - uid: 4133 + - uid: 13697 components: - type: Transform pos: -1.5,-166.5 parent: 2 - - uid: 4237 + - uid: 13698 components: - type: Transform pos: 4.5,-254.5 parent: 2 - - uid: 4576 + - uid: 13699 components: - type: Transform pos: 7.5,-245.5 parent: 2 - - uid: 4780 + - uid: 13700 components: - type: Transform pos: 8.5,-250.5 parent: 2 - - uid: 4847 + - uid: 13701 components: - type: Transform pos: 8.5,-249.5 parent: 2 - - uid: 4951 + - uid: 13702 components: - type: Transform pos: 5.5,-252.5 parent: 2 - - uid: 5019 + - uid: 13703 components: - type: Transform pos: 4.5,-245.5 parent: 2 - - uid: 5148 + - uid: 13704 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-206.5 parent: 2 - - uid: 6642 + - uid: 13705 components: - type: Transform pos: 5.5,-254.5 parent: 2 - - uid: 6644 + - uid: 13706 components: - type: Transform pos: 5.5,-253.5 parent: 2 - - uid: 7377 + - uid: 13707 components: - type: Transform pos: -5.5,-338.5 parent: 2 - - uid: 7428 + - uid: 13708 components: - type: Transform pos: -5.5,-189.5 parent: 2 - - uid: 7467 + - uid: 13709 components: - type: Transform pos: 18.5,-257.5 parent: 2 - - uid: 7475 + - uid: 13710 components: - type: Transform pos: 7.5,-244.5 parent: 2 - - uid: 7555 + - uid: 13711 components: - type: Transform pos: 7.5,-197.5 parent: 2 - - uid: 7863 + - uid: 13712 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-246.5 parent: 2 - - uid: 7864 + - uid: 13713 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-245.5 parent: 2 - - uid: 7892 + - uid: 13714 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-245.5 parent: 2 - - uid: 8261 + - uid: 13715 components: - type: Transform pos: 11.5,-252.5 parent: 2 - - uid: 8435 + - uid: 13716 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-247.5 parent: 2 - - uid: 8499 + - uid: 13717 components: - type: Transform pos: -4.5,-273.5 parent: 2 - - uid: 8516 + - uid: 13718 components: - type: Transform pos: -4.5,-272.5 parent: 2 - - uid: 8526 + - uid: 13719 components: - type: Transform pos: 17.5,-257.5 parent: 2 - - uid: 8531 + - uid: 13720 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-272.5 parent: 2 - - uid: 8532 + - uid: 13721 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-271.5 parent: 2 - - uid: 8534 + - uid: 13722 components: - type: Transform pos: -4.5,-285.5 parent: 2 - - uid: 8661 + - uid: 13723 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-251.5 parent: 2 - - uid: 8685 + - uid: 13724 components: - type: Transform pos: -4.5,-286.5 parent: 2 - - uid: 8689 + - uid: 13725 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-250.5 parent: 2 - - uid: 8857 + - uid: 13726 components: - type: Transform pos: -7.5,-271.5 parent: 2 - - uid: 8902 + - uid: 13727 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-254.5 parent: 2 - - uid: 8954 + - uid: 13728 components: - type: Transform pos: -5.5,-272.5 parent: 2 - - uid: 9054 + - uid: 13729 components: - type: Transform pos: 3.5,-282.5 parent: 2 - - uid: 9055 + - uid: 13730 components: - type: Transform pos: 4.5,-282.5 parent: 2 - - uid: 9056 + - uid: 13731 components: - type: Transform pos: 5.5,-282.5 parent: 2 - - uid: 9080 + - uid: 13732 components: - type: Transform pos: 4.5,-273.5 parent: 2 - - uid: 9081 + - uid: 13733 components: - type: Transform pos: 4.5,-272.5 parent: 2 - - uid: 9515 + - uid: 13734 components: - type: Transform pos: 22.5,-317.5 parent: 2 - - uid: 9517 + - uid: 13735 components: - type: Transform pos: 21.5,-315.5 parent: 2 - - uid: 9576 + - uid: 13736 components: - type: Transform pos: 23.5,-297.5 parent: 2 - - uid: 9617 + - uid: 13737 components: - type: Transform pos: 23.5,-299.5 parent: 2 - - uid: 9618 + - uid: 13738 components: - type: Transform pos: 22.5,-297.5 parent: 2 - - uid: 9620 + - uid: 13739 components: - type: Transform pos: 21.5,-299.5 parent: 2 - - uid: 9698 + - uid: 13740 components: - type: Transform pos: 21.5,-309.5 parent: 2 - - uid: 9699 + - uid: 13741 components: - type: Transform pos: 23.5,-305.5 parent: 2 - - uid: 9700 + - uid: 13742 components: - type: Transform pos: 22.5,-309.5 parent: 2 - - uid: 9701 + - uid: 13743 components: - type: Transform pos: 22.5,-305.5 parent: 2 - - uid: 9963 + - uid: 13744 components: - type: Transform pos: 4.5,-316.5 parent: 2 - - uid: 9964 + - uid: 13745 components: - type: Transform pos: 7.5,-312.5 parent: 2 - - uid: 9965 + - uid: 13746 components: - type: Transform pos: 7.5,-313.5 parent: 2 - - uid: 9966 + - uid: 13747 components: - type: Transform pos: 7.5,-314.5 parent: 2 - - uid: 9967 + - uid: 13748 components: - type: Transform pos: 3.5,-316.5 parent: 2 - - uid: 9969 + - uid: 13749 components: - type: Transform pos: 6.5,-314.5 parent: 2 - - uid: 9977 + - uid: 13750 components: - type: Transform pos: 3.5,-315.5 parent: 2 - - uid: 9981 + - uid: 13751 components: - type: Transform pos: 3.5,-304.5 parent: 2 - - uid: 9982 + - uid: 13752 components: - type: Transform pos: 3.5,-303.5 parent: 2 - - uid: 9983 + - uid: 13753 components: - type: Transform pos: 4.5,-304.5 parent: 2 - - uid: 10024 + - uid: 13754 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-302.5 parent: 2 - - uid: 10077 + - uid: 13755 components: - type: Transform pos: -6.5,-317.5 parent: 2 - - uid: 10078 + - uid: 13756 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-302.5 parent: 2 - - uid: 10097 + - uid: 13757 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-303.5 parent: 2 - - uid: 10098 + - uid: 13758 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-304.5 parent: 2 - - uid: 10100 + - uid: 13759 components: - type: Transform pos: -1.5,-301.5 parent: 2 - - uid: 10101 + - uid: 13760 components: - type: Transform pos: -1.5,-300.5 parent: 2 - - uid: 10113 + - uid: 13761 components: - type: Transform pos: -4.5,-303.5 parent: 2 - - uid: 10115 + - uid: 13762 components: - type: Transform pos: -4.5,-302.5 parent: 2 - - uid: 10116 + - uid: 13763 components: - type: Transform pos: -4.5,-304.5 parent: 2 - - uid: 10690 + - uid: 13764 components: - type: Transform pos: -6.5,-339.5 parent: 2 - - uid: 10755 + - uid: 13765 components: - type: Transform pos: -3.5,-334.5 parent: 2 - - uid: 10771 + - uid: 13766 components: - type: Transform pos: -0.5,-345.5 parent: 2 - - uid: 10849 + - uid: 13767 components: - type: Transform pos: -6.5,-338.5 parent: 2 - - uid: 10855 + - uid: 13768 components: - type: Transform pos: -6.5,-340.5 parent: 2 - - uid: 11043 + - uid: 13769 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-328.5 parent: 2 - - uid: 11045 + - uid: 13770 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-328.5 parent: 2 - - uid: 11059 + - uid: 13771 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-331.5 parent: 2 - - uid: 11060 + - uid: 13772 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-332.5 parent: 2 - - uid: 11061 + - uid: 13773 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-332.5 parent: 2 - - uid: 11062 + - uid: 13774 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-332.5 parent: 2 - - uid: 11099 + - uid: 13775 components: - type: Transform pos: -2.5,-346.5 parent: 2 - - uid: 11100 + - uid: 13776 components: - type: Transform pos: -3.5,-346.5 parent: 2 - - uid: 11101 + - uid: 13777 components: - type: Transform pos: -4.5,-346.5 parent: 2 - - uid: 11200 + - uid: 13778 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-358.5 parent: 2 - - uid: 11430 + - uid: 13779 components: - type: Transform pos: -6.5,-360.5 parent: 2 - - uid: 11431 + - uid: 13780 components: - type: Transform pos: -0.5,-365.5 parent: 2 - - uid: 11484 + - uid: 13781 components: - type: Transform pos: 2.5,-370.5 parent: 2 - - uid: 11485 + - uid: 13782 components: - type: Transform pos: 1.5,-370.5 parent: 2 - - uid: 11486 + - uid: 13783 components: - type: Transform pos: 0.5,-370.5 parent: 2 - - uid: 11487 + - uid: 13784 components: - type: Transform pos: -0.5,-370.5 parent: 2 - - uid: 11488 + - uid: 13785 components: - type: Transform pos: -1.5,-370.5 parent: 2 - - uid: 11489 + - uid: 13786 components: - type: Transform pos: -1.5,-371.5 parent: 2 - - uid: 11752 + - uid: 13787 components: - type: Transform pos: -4.5,-357.5 parent: 2 - - uid: 11757 + - uid: 13788 components: - type: Transform pos: -5.5,-357.5 parent: 2 - - uid: 11758 + - uid: 13789 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-189.5 parent: 2 - - uid: 11764 + - uid: 13790 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-357.5 parent: 2 - - uid: 11765 + - uid: 13791 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-358.5 parent: 2 - - uid: 12372 + - uid: 13792 components: - type: Transform pos: -5.5,-317.5 parent: 2 - - uid: 12373 + - uid: 13793 components: - type: Transform pos: -4.5,-317.5 parent: 2 - - uid: 12374 + - uid: 13794 components: - type: Transform pos: -4.5,-316.5 parent: 2 - - uid: 12886 + - uid: 13795 components: - type: Transform pos: -0.5,-366.5 parent: 2 - - uid: 12887 + - uid: 13796 components: - type: Transform pos: 0.5,-366.5 parent: 2 - - uid: 14799 + - uid: 13797 components: - type: Transform pos: -5.5,-339.5 parent: 2 - - uid: 14800 + - uid: 13798 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-193.5 parent: 2 - - uid: 15030 + - uid: 13799 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-133.5 parent: 2 - - uid: 15031 + - uid: 13800 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-134.5 parent: 2 - - uid: 15187 + - uid: 13801 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-193.5 parent: 2 - - uid: 15260 + - uid: 13802 components: - type: Transform pos: 5.5,-245.5 parent: 2 - - uid: 15586 + - uid: 13803 components: - type: Transform pos: 19.5,-257.5 parent: 2 - - uid: 15788 + - uid: 13804 components: - type: Transform pos: -7.5,-172.5 parent: 2 - - uid: 15804 + - uid: 13805 components: - type: Transform pos: -5.5,-340.5 parent: 2 - proto: TableReinforcedGlass entities: - - uid: 79 + - uid: 13806 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-7.5 parent: 2 - - uid: 85 + - uid: 13807 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-1.5 parent: 2 - - uid: 86 + - uid: 13808 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 - - uid: 87 + - uid: 13809 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 2 - - uid: 154 + - uid: 13810 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 2 - - uid: 159 + - uid: 13811 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-6.5 parent: 2 - - uid: 163 + - uid: 13812 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-7.5 parent: 2 - - uid: 165 + - uid: 13813 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-7.5 parent: 2 - - uid: 166 + - uid: 13814 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-6.5 parent: 2 - - uid: 169 + - uid: 13815 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 2 - - uid: 212 + - uid: 13816 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 2 - - uid: 1917 + - uid: 13817 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-120.5 parent: 2 - - uid: 2214 + - uid: 13818 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-121.5 parent: 2 - - uid: 2217 + - uid: 13819 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-121.5 parent: 2 - - uid: 2220 + - uid: 13820 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-121.5 parent: 2 - - uid: 2666 + - uid: 13821 components: - type: Transform pos: 6.5,-142.5 parent: 2 - - uid: 2667 + - uid: 13822 components: - type: Transform pos: 6.5,-143.5 parent: 2 - - uid: 2668 + - uid: 13823 components: - type: Transform pos: 2.5,-142.5 parent: 2 - - uid: 2669 + - uid: 13824 components: - type: Transform pos: 2.5,-143.5 parent: 2 - - uid: 3127 + - uid: 13825 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-169.5 parent: 2 - - uid: 3712 + - uid: 13826 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-1.5 parent: 2 - - uid: 4138 + - uid: 13827 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-1.5 parent: 2 - - uid: 11532 + - uid: 13828 components: - type: Transform pos: -0.5,-5.5 parent: 2 - - uid: 11533 + - uid: 13829 components: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 11534 + - uid: 13830 components: - type: Transform pos: -2.5,-5.5 parent: 2 - - uid: 11535 + - uid: 13831 components: - type: Transform pos: -3.5,-5.5 parent: 2 - - uid: 11536 + - uid: 13832 components: - type: Transform pos: -3.5,-6.5 parent: 2 - - uid: 11537 + - uid: 13833 components: - type: Transform pos: -3.5,-7.5 parent: 2 - - uid: 11538 + - uid: 13834 components: - type: Transform pos: -2.5,-7.5 parent: 2 - - uid: 11539 + - uid: 13835 components: - type: Transform pos: -1.5,-7.5 parent: 2 - - uid: 11540 + - uid: 13836 components: - type: Transform pos: -0.5,-7.5 parent: 2 - proto: TableStone entities: - - uid: 2030 + - uid: 13837 components: - type: Transform pos: -8.5,-122.5 parent: 2 - - uid: 3118 + - uid: 13838 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-165.5 parent: 2 - - uid: 3133 + - uid: 13839 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-167.5 parent: 2 - - uid: 3189 + - uid: 13840 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-168.5 parent: 2 - - uid: 3190 + - uid: 13841 components: - type: Transform rot: 1.5707963267948966 rad @@ -90218,69 +89641,69 @@ entities: parent: 2 - proto: TableWeb entities: - - uid: 14354 + - uid: 13842 components: - type: Transform pos: 13.5,-63.5 parent: 2 - - uid: 14380 + - uid: 13843 components: - type: Transform pos: 14.5,-63.5 parent: 2 - proto: TableWood entities: - - uid: 301 + - uid: 13844 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-13.5 parent: 2 - - uid: 310 + - uid: 13845 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 314 + - uid: 13846 components: - type: Transform pos: -1.5,-9.5 parent: 2 - - uid: 436 + - uid: 13847 components: - type: Transform pos: -3.5,2.5 parent: 2 - - uid: 1126 + - uid: 13848 components: - type: Transform pos: 1.5,-64.5 parent: 2 - - uid: 1186 + - uid: 13849 components: - type: Transform pos: 0.5,-64.5 parent: 2 - - uid: 1359 + - uid: 13850 components: - type: Transform pos: -5.5,-71.5 parent: 2 - - uid: 1475 + - uid: 13851 components: - type: Transform pos: -5.5,-72.5 parent: 2 - proto: TargetDarts entities: - - uid: 14772 + - uid: 13852 components: - type: Transform pos: 2.5088735,-32.514496 parent: 2 - proto: TegCenter entities: - - uid: 3677 + - uid: 13853 components: - type: Transform rot: -1.5707963267948966 rad @@ -90288,7 +89711,7 @@ entities: parent: 2 - proto: TegCirculator entities: - - uid: 3584 + - uid: 13854 components: - type: Transform rot: 3.141592653589793 rad @@ -90296,7 +89719,7 @@ entities: parent: 2 - type: PointLight color: '#FF3300FF' - - uid: 6828 + - uid: 13855 components: - type: Transform pos: -16.5,-244.5 @@ -90305,10 +89728,10 @@ entities: color: '#FF3300FF' - proto: TelecomServer entities: - - uid: 1192 + - uid: 7257 components: - type: Transform - pos: 24.5,-299.5 + pos: 20.5,-299.5 parent: 2 - type: ContainerContainer containers: @@ -90316,7 +89739,7 @@ entities: showEnts: False occludes: True ents: - - 1285 + - 7258 machine_board: !type:Container showEnts: False occludes: True @@ -90325,10 +89748,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 1333 + - uid: 7259 components: - type: Transform - pos: 25.5,-299.5 + pos: 19.5,-297.5 parent: 2 - type: ContainerContainer containers: @@ -90336,7 +89759,7 @@ entities: showEnts: False occludes: True ents: - - 1341 + - 7260 machine_board: !type:Container showEnts: False occludes: True @@ -90345,10 +89768,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 1343 + - uid: 7261 components: - type: Transform - pos: 20.5,-299.5 + pos: 25.5,-299.5 parent: 2 - type: ContainerContainer containers: @@ -90356,7 +89779,7 @@ entities: showEnts: False occludes: True ents: - - 1344 + - 7262 machine_board: !type:Container showEnts: False occludes: True @@ -90365,7 +89788,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 1345 + - uid: 7263 components: - type: Transform pos: 19.5,-299.5 @@ -90376,7 +89799,7 @@ entities: showEnts: False occludes: True ents: - - 2910 + - 7264 machine_board: !type:Container showEnts: False occludes: True @@ -90385,10 +89808,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2911 + - uid: 7265 components: - type: Transform - pos: 24.5,-297.5 + pos: 25.5,-297.5 parent: 2 - type: ContainerContainer containers: @@ -90396,7 +89819,7 @@ entities: showEnts: False occludes: True ents: - - 2912 + - 7266 machine_board: !type:Container showEnts: False occludes: True @@ -90405,10 +89828,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 3023 + - uid: 7269 components: - type: Transform - pos: 25.5,-297.5 + pos: 24.5,-297.5 parent: 2 - type: ContainerContainer containers: @@ -90416,7 +89839,7 @@ entities: showEnts: False occludes: True ents: - - 3033 + - 7270 machine_board: !type:Container showEnts: False occludes: True @@ -90425,7 +89848,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 3054 + - uid: 7271 components: - type: Transform pos: 20.5,-297.5 @@ -90436,7 +89859,7 @@ entities: showEnts: False occludes: True ents: - - 3071 + - 7272 machine_board: !type:Container showEnts: False occludes: True @@ -90445,10 +89868,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 3149 + - uid: 7273 components: - type: Transform - pos: 19.5,-297.5 + pos: 24.5,-299.5 parent: 2 - type: ContainerContainer containers: @@ -90456,7 +89879,7 @@ entities: showEnts: False occludes: True ents: - - 3583 + - 7274 machine_board: !type:Container showEnts: False occludes: True @@ -90467,54 +89890,54 @@ entities: ents: [] - proto: TeslaCoil entities: - - uid: 651 + - uid: 13856 components: - type: Transform pos: 16.5,-239.5 parent: 2 - - uid: 3147 + - uid: 13857 components: - type: Transform pos: 15.5,-239.5 parent: 2 - - uid: 6780 + - uid: 13858 components: - type: Transform pos: 15.5,-240.5 parent: 2 - - uid: 7809 + - uid: 13859 components: - type: Transform pos: 15.5,-241.5 parent: 2 - proto: TeslaGenerator entities: - - uid: 11715 + - uid: 13860 components: - type: Transform pos: 18.5,-239.5 parent: 2 - proto: TeslaGroundingRod entities: - - uid: 3013 + - uid: 13861 components: - type: Transform pos: 16.5,-241.5 parent: 2 - - uid: 3164 + - uid: 13862 components: - type: Transform pos: 16.5,-240.5 parent: 2 - proto: Thruster entities: - - uid: 224 + - uid: 13863 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-4.5 parent: 2 - - uid: 225 + - uid: 13864 components: - type: Transform rot: 3.141592653589793 rad @@ -90522,7 +89945,7 @@ entities: parent: 2 - proto: ToiletDirtyWater entities: - - uid: 2641 + - uid: 13865 components: - type: Transform rot: -1.5707963267948966 rad @@ -90530,289 +89953,289 @@ entities: parent: 2 - proto: ToolboxArtisticFilled entities: - - uid: 15264 + - uid: 13866 components: - type: Transform pos: 7.491327,-244.8711 parent: 2 - proto: ToolboxElectricalFilled entities: - - uid: 2974 + - uid: 13867 components: - type: Transform pos: 5.522824,-253.77805 parent: 2 - - uid: 5162 + - uid: 13868 components: - type: Transform pos: 5.4776406,-31.552532 parent: 2 - - uid: 5405 + - uid: 13869 components: - type: Transform pos: 1.2603997,-187.48691 parent: 2 - - uid: 15265 + - uid: 13870 components: - type: Transform pos: 7.48008,-245.11847 parent: 2 - proto: ToolboxEmergencyFilled entities: - - uid: 3674 + - uid: 13871 components: - type: Transform pos: -7.4139504,-177.44359 parent: 2 - - uid: 5410 + - uid: 13872 components: - type: Transform pos: 5.4776406,-31.341396 parent: 2 - - uid: 9452 + - uid: 13873 components: - type: Transform pos: 21.599606,-315.52435 parent: 2 - - uid: 14644 + - uid: 13874 components: - type: Transform pos: 6.4216676,-260.47906 parent: 2 - - uid: 15263 + - uid: 13875 components: - type: Transform pos: 7.4688315,-244.61247 parent: 2 - proto: ToolboxGoldFilled entities: - - uid: 84 + - uid: 13876 components: - type: Transform pos: -0.54247516,-3.4301338 parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 47 + - uid: 13877 components: - type: Transform pos: 1.4461527,2.44579 parent: 2 - - uid: 1615 + - uid: 13878 components: - type: Transform pos: -2.7865536,-5.3156295 parent: 2 - - uid: 5407 + - uid: 13879 components: - type: Transform pos: -5.2525826,-162.94519 parent: 2 - - uid: 5409 + - uid: 13880 components: - type: Transform pos: 7.516703,-56.70343 parent: 2 - - uid: 8681 + - uid: 13881 components: - type: Transform pos: -5.3442082,-288.47815 parent: 2 - - uid: 8688 + - uid: 13882 components: - type: Transform pos: -5.606662,-288.27576 parent: 2 - - uid: 9453 + - uid: 13883 components: - type: Transform pos: 21.414711,-315.2735 parent: 2 - - uid: 9980 + - uid: 13884 components: - type: Transform pos: 3.6579065,-316.43753 parent: 2 - - uid: 10124 + - uid: 13885 components: - type: Transform pos: -4.3656063,-303.19275 parent: 2 - - uid: 10125 + - uid: 13886 components: - type: Transform pos: -4.537293,-302.90228 parent: 2 - - uid: 11677 + - uid: 13887 components: - type: Transform pos: -2.539098,-5.506784 parent: 2 - - uid: 12227 + - uid: 13888 components: - type: Transform pos: 15.403523,-247.25401 parent: 2 - - uid: 15262 + - uid: 13889 components: - type: Transform pos: 7.48008,-244.32011 parent: 2 - proto: ToyAi entities: - - uid: 9478 + - uid: 13890 components: - type: Transform pos: 29.472055,-307.37292 parent: 2 - proto: ToyAmongPequeno entities: - - uid: 2749 + - uid: 13891 components: - type: Transform pos: 3.5588014,-101.58778 parent: 2 - - uid: 3191 + - uid: 13892 components: - type: Transform pos: -7.3859177,-94.83316 parent: 2 - - uid: 3250 + - uid: 13893 components: - type: Transform pos: -7.59963,-94.50708 parent: 2 - - uid: 4347 + - uid: 13894 components: - type: Transform pos: -7.7233577,-95.00183 parent: 2 - proto: ToyFigurineBartender entities: - - uid: 12179 + - uid: 13895 components: - type: Transform pos: -2.566748,-60.54726 parent: 2 - proto: ToyFigurineBotanist entities: - - uid: 12172 + - uid: 13896 components: - type: Transform pos: -4.5218763,-87.44556 parent: 2 - proto: ToyFigurineCaptain entities: - - uid: 12175 + - uid: 13897 components: - type: Transform pos: -0.56393987,3.0352368 parent: 2 - proto: ToyFigurineCargoTech entities: - - uid: 12180 + - uid: 13898 components: - type: Transform pos: 4.883979,-282.15594 parent: 2 - proto: ToyFigurineChaplain entities: - - uid: 2672 + - uid: 13899 components: - type: Transform pos: 6.4167213,-142.44421 parent: 2 - proto: ToyFigurineChef entities: - - uid: 12181 + - uid: 13900 components: - type: Transform pos: 3.5768247,-91.526825 parent: 2 - proto: ToyFigurineChemist entities: - - uid: 12177 + - uid: 13901 components: - type: Transform pos: 2.5620208,-166.28375 parent: 2 - proto: ToyFigurineClown entities: - - uid: 12178 + - uid: 13902 components: - type: Transform pos: -7.7240214,-124.14133 parent: 2 - proto: ToyFigurineDetective entities: - - uid: 2653 + - uid: 13903 components: - type: Transform pos: -5.2573676,-71.2794 parent: 2 - proto: ToyFigurineFootsoldier entities: - - uid: 2329 + - uid: 13904 components: - type: Transform pos: -4.5065055,4.5218883 parent: 2 - proto: ToyFigurineGreytider entities: - - uid: 12183 + - uid: 13905 components: - type: Transform pos: 13.608401,-144.38652 parent: 2 - proto: ToyFigurineHamlet entities: - - uid: 3621 + - uid: 5324 components: - type: MetaData desc: The sixth of thirteen collectible Hamlet figures! This one is dressed as a monk. - type: Transform - parent: 7334 + parent: 5323 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 3625 + - uid: 5389 components: - type: MetaData desc: The fifth of thirteen collectible Hamlet figures! This one looks troubled. - type: Transform - parent: 3001 + parent: 5388 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 11966 + - uid: 13906 components: - type: MetaData desc: The thirteenth of thirteen collectible figurines of Hamlet. This one looks like an evil dictator - type: Transform pos: -3.6355574,-334.1145 parent: 2 - - uid: 12225 + - uid: 13907 components: - type: MetaData desc: The second of thirteen collectible Hamlet figures! This one has fallen asleep. - type: Transform pos: 2.6170347,-39.208244 parent: 2 - - uid: 12228 + - uid: 13908 components: - type: MetaData desc: The third of thirteen collectible Hamlet figurines! This one looks jolly and drunk. - type: Transform pos: -3.1984427,-67.30008 parent: 2 - - uid: 12233 + - uid: 13909 components: - type: MetaData desc: The seventh of thirteen collectible Hamlet figures! This one is holding a syringe in his teeth. - type: Transform pos: 5.5009203,-182.15453 parent: 2 - - uid: 12236 + - uid: 13910 components: - type: MetaData desc: The eighth of thirteen collectible Hamlet figures! This one is sick and bald. @@ -90820,14 +90243,14 @@ entities: rot: -1.5707963267948966 rad pos: -4.4284077,-206.78868 parent: 2 - - uid: 12241 + - uid: 13911 components: - type: MetaData desc: The ninth of thirteen collectible Hamlet figures! This one looks like an astronaut. - type: Transform pos: 10.498955,-225.02173 parent: 2 - - uid: 12287 + - uid: 13912 components: - type: MetaData desc: The twelfth of thirteen collectible Hamlet figures! This one wears glasses and looks extremely intelligent. @@ -90836,202 +90259,202 @@ entities: parent: 2 - proto: ToyFigurineHeadOfPersonnel entities: - - uid: 12185 + - uid: 13913 components: - type: Transform pos: 1.7322779,-121.02217 parent: 2 - proto: ToyFigurineHeadOfSecurity entities: - - uid: 12186 + - uid: 13914 components: - type: Transform pos: -3.5431526,-346.0501 parent: 2 - proto: ToyFigurineLawyer entities: - - uid: 12188 + - uid: 13915 components: - type: Transform pos: 6.025828,-332.01364 parent: 2 - proto: ToyFigurineLibrarian entities: - - uid: 12189 + - uid: 13916 components: - type: Transform pos: -5.419599,-139.50743 parent: 2 - proto: ToyFigurineMedicalDoctor entities: - - uid: 12190 + - uid: 13917 components: - type: Transform pos: 8.682559,-175.29884 parent: 2 - proto: ToyFigurineMime entities: - - uid: 11661 + - uid: 5486 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ToyFigurineMouse entities: - - uid: 12191 + - uid: 13918 components: - type: Transform pos: -2.4079862,-180.0877 parent: 2 - proto: ToyFigurineMusician entities: - - uid: 1754 + - uid: 13919 components: - type: Transform pos: -6.7045426,-67.02318 parent: 2 - proto: ToyFigurineParamedic entities: - - uid: 14077 + - uid: 13920 components: - type: Transform pos: -1.2981937,-166.44269 parent: 2 - proto: ToyFigurinePassenger entities: - - uid: 12196 + - uid: 13921 components: - type: Transform pos: -7.6109595,-112.14438 parent: 2 - proto: ToyFigurineQuartermaster entities: - - uid: 12197 + - uid: 13922 components: - type: Transform pos: 6.0710835,-285.60263 parent: 2 - proto: ToyFigurineRatKing entities: - - uid: 12211 + - uid: 13923 components: - type: Transform pos: -6.4882874,-17.106768 parent: 2 - proto: ToyFigurineRatServant entities: - - uid: 12123 + - uid: 13924 components: - type: Transform pos: -6.144914,-17.326809 parent: 2 - - uid: 12212 + - uid: 13925 components: - type: Transform pos: -6.726009,-17.326809 parent: 2 - - uid: 12213 + - uid: 13926 components: - type: Transform pos: -6.4354615,-17.49404 parent: 2 - proto: ToyFigurineResearchDirector entities: - - uid: 4044 + - uid: 13927 components: - type: Transform pos: -5.49094,-305.1008 parent: 2 - proto: ToyFigurineSalvage entities: - - uid: 12216 + - uid: 13928 components: - type: Transform pos: -4.4907207,-272.15012 parent: 2 - proto: ToyFigurineScientist entities: - - uid: 12207 + - uid: 13929 components: - type: Transform pos: 7.126124,-314.31253 parent: 2 - proto: ToyFigurineSecurity entities: - - uid: 13405 + - uid: 13930 components: - type: Transform pos: -3.2948563,-334.34607 parent: 2 - proto: ToyFigurineSlime entities: - - uid: 12219 + - uid: 13931 components: - type: Transform pos: -2.4844923,-219.90608 parent: 2 - proto: ToyFigurineSpaceDragon entities: - - uid: 12221 + - uid: 13932 components: - type: Transform pos: -6.453235,-181.61153 parent: 2 - proto: ToyFigurineWarden entities: - - uid: 12223 + - uid: 13933 components: - type: Transform pos: 0.62263775,-366.41714 parent: 2 - proto: ToyFigurineWizard entities: - - uid: 15038 + - uid: 13934 components: - type: Transform pos: -9.568627,-133.52042 parent: 2 - proto: ToyFigurineWizardFake entities: - - uid: 3199 + - uid: 13935 components: - type: Transform pos: -8.133195,-94.51872 parent: 2 - proto: ToyGriffin entities: - - uid: 12184 + - uid: 13936 components: - type: Transform pos: -2.8305314,-148.27542 parent: 2 - proto: ToyOwlman entities: - - uid: 3852 + - uid: 13937 components: - type: Transform pos: 1.7216189,-370.325 parent: 2 - proto: ToySpawner entities: - - uid: 2162 + - uid: 13938 components: - type: Transform pos: -7.5,-112.5 parent: 2 - - uid: 2166 + - uid: 13939 components: - type: Transform pos: -8.5,-113.5 parent: 2 - - uid: 3893 + - uid: 13940 components: - type: Transform pos: -5.5,-204.5 parent: 2 - - uid: 13430 + - uid: 13941 components: - type: Transform rot: -1.5707963267948966 rad @@ -91039,141 +90462,141 @@ entities: parent: 2 - proto: ToySword entities: - - uid: 2774 + - uid: 13942 components: - type: Transform pos: 16.54856,-152.46567 parent: 2 - proto: TrashBananaPeel entities: - - uid: 470 + - uid: 13943 components: - type: Transform pos: -4.4094033,-127.49721 parent: 2 - - uid: 521 + - uid: 13944 components: - type: Transform pos: -6.1094556,-127.684784 parent: 2 - - uid: 761 + - uid: 13945 components: - type: Transform pos: -6.493462,-127.34697 parent: 2 - proto: trayScanner entities: - - uid: 16799 + - uid: 3960 components: - type: Transform - parent: 16798 + parent: 3958 - type: Physics canCollide: False - type: InsideEntityStorage - proto: TrumpetInstrument entities: - - uid: 14305 + - uid: 13946 components: - type: Transform pos: -22.876137,-264.95584 parent: 2 - proto: TwoWayLever entities: - - uid: 7621 + - uid: 13947 components: - type: Transform pos: 3.5,-218.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 7644: + 5579: - Left: Forward - Right: Reverse - Middle: Off - 6589: + 5577: - Left: Forward - Right: Reverse - Middle: Off - 7715: + 5580: - Left: Forward - Right: Reverse - Middle: Off - 4899: + 5575: - Left: Forward - Right: Reverse - Middle: Off - 5452: + 12580: - Left: Forward - Right: Reverse - Middle: Off - 5450: + 5576: - Left: Forward - Right: Reverse - Middle: Off - 7620: + 5578: - Left: Forward - Right: Reverse - Middle: Off - - uid: 9006 + - uid: 13948 components: - type: Transform pos: 8.5,-282.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 8996: + 5587: - Left: Forward - Right: Reverse - Middle: Off - 8992: + 5583: - Left: Forward - Right: Reverse - Middle: Off - 8991: + 5582: - Left: Forward - Right: Reverse - Middle: Off - 8990: + 5581: - Left: Forward - Right: Reverse - Middle: Off - - uid: 9007 + - uid: 13949 components: - type: Transform pos: 8.5,-276.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 8997: + 5588: - Left: Forward - Right: Reverse - Middle: Off - 8995: + 5586: - Left: Forward - Right: Reverse - Middle: Off - 8994: + 5585: - Left: Forward - Right: Reverse - Middle: Off - 8993: + 5584: - Left: Forward - Right: Reverse - Middle: Off - - uid: 11710 + - uid: 13950 components: - type: Transform pos: 5.5,-358.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 11201: + 839: - Left: Open - Right: Open - Middle: Toggle - proto: UniformPrinter entities: - - uid: 13684 + - uid: 13951 components: - type: Transform rot: 3.141592653589793 rad @@ -91181,296 +90604,296 @@ entities: parent: 2 - proto: Vaccinator entities: - - uid: 3898 + - uid: 13952 components: - type: Transform pos: -6.5,-196.5 parent: 2 - proto: VariantCubeBox entities: - - uid: 8980 + - uid: 13953 components: - type: Transform pos: -6.010586,-317.41095 parent: 2 - proto: VendingBarDrobe entities: - - uid: 1023 + - uid: 13954 components: - type: Transform pos: 3.5,-61.5 parent: 2 - proto: VendingMachineAtmosDrobe entities: - - uid: 14575 + - uid: 13955 components: - type: Transform pos: -14.5,-265.5 parent: 2 - proto: VendingMachineBooze entities: - - uid: 13627 + - uid: 13956 components: - type: Transform pos: 1.5,-61.5 parent: 2 - proto: VendingMachineCargoDrobe entities: - - uid: 8502 + - uid: 13957 components: - type: Transform pos: 0.5,-276.5 parent: 2 - proto: VendingMachineCart entities: - - uid: 2210 + - uid: 13958 components: - type: Transform pos: -1.5,-119.5 parent: 2 - proto: VendingMachineChapel entities: - - uid: 2710 + - uid: 13959 components: - type: Transform pos: 5.5,-137.5 parent: 2 - proto: VendingMachineChefDrobe entities: - - uid: 1780 + - uid: 13960 components: - type: Transform pos: -1.5,-92.5 parent: 2 - proto: VendingMachineChefvend entities: - - uid: 1784 + - uid: 13961 components: - type: Transform pos: 0.5,-92.5 parent: 2 - proto: VendingMachineChemDrobe entities: - - uid: 3130 + - uid: 13962 components: - type: Transform pos: 6.5,-162.5 parent: 2 - proto: VendingMachineChemicals entities: - - uid: 3125 + - uid: 13963 components: - type: Transform pos: 3.5,-169.5 parent: 2 - proto: VendingMachineCigs entities: - - uid: 950 + - uid: 13964 components: - type: Transform pos: 3.5,-80.5 parent: 2 - - uid: 5089 + - uid: 13965 components: - type: Transform pos: 3.5,-47.5 parent: 2 - - uid: 5300 + - uid: 13966 components: - type: Transform pos: 3.5,-188.5 parent: 2 - proto: VendingMachineClothing entities: - - uid: 2367 + - uid: 13967 components: - type: Transform pos: 4.5,-126.5 parent: 2 - proto: VendingMachineCoffee entities: - - uid: 14361 + - uid: 13968 components: - type: Transform pos: 16.5,-63.5 parent: 2 - proto: VendingMachineCondiments entities: - - uid: 2027 + - uid: 13969 components: - type: Transform pos: 3.5,-85.5 parent: 2 - proto: VendingMachineCuraDrobe entities: - - uid: 2722 + - uid: 13970 components: - type: Transform pos: -2.5,-134.5 parent: 2 - proto: VendingMachineDetDrobe entities: - - uid: 11000 + - uid: 13971 components: - type: Transform pos: -5.5,-70.5 parent: 2 - proto: VendingMachineDinnerware entities: - - uid: 1783 + - uid: 13972 components: - type: Transform pos: 1.5,-92.5 parent: 2 - proto: VendingMachineDonut entities: - - uid: 8878 + - uid: 13973 components: - type: Transform pos: 2.5,-356.5 parent: 2 - proto: VendingMachineEngiDrobe entities: - - uid: 8476 + - uid: 13974 components: - type: Transform pos: 8.5,-255.5 parent: 2 - proto: VendingMachineEngivend entities: - - uid: 4973 + - uid: 13975 components: - type: Transform pos: 5.5,-247.5 parent: 2 - - uid: 8979 + - uid: 13976 components: - type: Transform pos: 19.5,-245.5 parent: 2 - proto: VendingMachineGames entities: - - uid: 2117 + - uid: 13977 components: - type: Transform pos: -2.5,-146.5 parent: 2 - - uid: 14567 + - uid: 13978 components: - type: Transform pos: 13.5,-80.5 parent: 2 - proto: VendingMachineHappyHonk entities: - - uid: 10698 + - uid: 13979 components: - type: Transform pos: 6.5,-17.5 parent: 2 - proto: VendingMachineHydrobe entities: - - uid: 2321 + - uid: 13980 components: - type: Transform pos: -4.5,-82.5 parent: 2 - proto: VendingMachineJaniDrobe entities: - - uid: 1718 + - uid: 13981 components: - type: Transform pos: -2.5,-53.5 parent: 2 - proto: VendingMachineLawDrobe entities: - - uid: 11046 + - uid: 13982 components: - type: Transform pos: 6.5,-329.5 parent: 2 - proto: VendingMachineMedical entities: - - uid: 2258 + - uid: 13983 components: - type: Transform pos: 7.5,-179.5 parent: 2 - - uid: 4206 + - uid: 13984 components: - type: Transform pos: 3.5,-196.5 parent: 2 - - uid: 11248 + - uid: 13985 components: - type: Transform pos: -6.5,-361.5 parent: 2 - proto: VendingMachineMediDrobe entities: - - uid: 2461 + - uid: 13986 components: - type: Transform pos: -0.5,-193.5 parent: 2 - proto: VendingMachineNutri entities: - - uid: 1743 + - uid: 13987 components: - type: Transform pos: -5.5,-88.5 parent: 2 - proto: VendingMachineRestockMedical entities: - - uid: 1270 + - uid: 13988 components: - type: Transform pos: 3.449893,-163.3618 parent: 2 - proto: VendingMachineRoboDrobe entities: - - uid: 9947 + - uid: 13989 components: - type: Transform pos: 8.5,-315.5 parent: 2 - proto: VendingMachineRobotics entities: - - uid: 9948 + - uid: 13990 components: - type: Transform pos: 8.5,-316.5 parent: 2 - proto: VendingMachineSalvage entities: - - uid: 8547 + - uid: 13991 components: - type: Transform pos: -2.5,-287.5 parent: 2 - proto: VendingMachineSciDrobe entities: - - uid: 9819 + - uid: 13992 components: - type: Transform pos: -6.5,-305.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 844 + - uid: 13993 components: - type: Transform pos: -6.5,-342.5 parent: 2 - proto: VendingMachineSecDrobe entities: - - uid: 13394 + - uid: 13994 components: - type: Transform pos: -5.5,-342.5 parent: 2 - proto: VendingMachineSeeds entities: - - uid: 1618 + - uid: 13995 components: - type: Transform anchored: False @@ -91480,755 +90903,755 @@ entities: bodyType: Dynamic - proto: VendingMachineSeedsUnlocked entities: - - uid: 11483 + - uid: 13996 components: - type: Transform pos: 6.5,-373.5 parent: 2 - proto: VendingMachineSnackOrange entities: - - uid: 6701 + - uid: 13997 components: - type: Transform pos: -2.5,-242.5 parent: 2 - - uid: 14341 + - uid: 13998 components: - type: Transform pos: 17.5,-63.5 parent: 2 - proto: VendingMachineSovietSoda entities: - - uid: 1490 + - uid: 13999 components: - type: Transform pos: 4.5,-56.5 parent: 2 - proto: VendingMachineSustenance entities: - - uid: 11456 + - uid: 14000 components: - type: Transform pos: 5.5,-374.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 2444 + - uid: 14001 components: - type: Transform pos: -13.5,-259.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: - - uid: 402 + - uid: 14002 components: - type: Transform pos: 5.5,2.5 parent: 2 - - uid: 3717 + - uid: 14003 components: - type: Transform pos: 3.5,-161.5 parent: 2 - - uid: 7730 + - uid: 14004 components: - type: Transform pos: -1.5,-257.5 parent: 2 - - uid: 8237 + - uid: 14005 components: - type: Transform pos: 8.5,-247.5 parent: 2 - - uid: 8552 + - uid: 14006 components: - type: Transform pos: -2.5,-288.5 parent: 2 - - uid: 15163 + - uid: 14007 components: - type: Transform pos: 7.5,-118.5 parent: 2 - - uid: 15172 + - uid: 14008 components: - type: Transform pos: 9.5,-120.5 parent: 2 - - uid: 16961 + - uid: 14009 components: - type: Transform pos: -14.5,-250.5 parent: 2 - proto: VendingMachineTheater entities: - - uid: 5065 + - uid: 14010 components: - type: Transform pos: 3.5,-126.5 parent: 2 - proto: VendingMachineVendomat entities: - - uid: 10121 + - uid: 14011 components: - type: Transform pos: -2.5,-299.5 parent: 2 - - uid: 11003 + - uid: 14012 components: - type: Transform pos: 3.5,-242.5 parent: 2 - proto: VendingMachineViroDrobe entities: - - uid: 3902 + - uid: 14013 components: - type: Transform pos: -6.5,-198.5 parent: 2 - proto: VendingMachineWallMedical entities: - - uid: 3702 + - uid: 14014 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-172.5 parent: 2 - - uid: 3721 + - uid: 14015 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-195.5 parent: 2 - - uid: 14308 + - uid: 14016 components: - type: Transform pos: 7.5,-170.5 parent: 2 - proto: VendingMachineWinter entities: - - uid: 7487 + - uid: 14017 components: - type: Transform pos: 6.5,-125.5 parent: 2 - proto: VendingMachineYouTool entities: - - uid: 4997 + - uid: 14018 components: - type: Transform pos: 2.5,-253.5 parent: 2 - - uid: 9077 + - uid: 14019 components: - type: Transform pos: 7.5,-242.5 parent: 2 - proto: WallMining entities: - - uid: 1998 + - uid: 14020 components: - type: Transform pos: 12.5,-82.5 parent: 2 - - uid: 3844 + - uid: 14021 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-142.5 parent: 2 - - uid: 3845 + - uid: 14022 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-140.5 parent: 2 - - uid: 5247 + - uid: 14023 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-149.5 parent: 2 - - uid: 6631 + - uid: 14024 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-157.5 parent: 2 - - uid: 6823 + - uid: 14025 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-148.5 parent: 2 - - uid: 7240 + - uid: 14026 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-136.5 parent: 2 - - uid: 7241 + - uid: 14027 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-137.5 parent: 2 - - uid: 7242 + - uid: 14028 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-137.5 parent: 2 - - uid: 7244 + - uid: 14029 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-136.5 parent: 2 - - uid: 7245 + - uid: 14030 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-137.5 parent: 2 - - uid: 7246 + - uid: 14031 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-137.5 parent: 2 - - uid: 7252 + - uid: 14032 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-143.5 parent: 2 - - uid: 7261 + - uid: 14033 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-143.5 parent: 2 - - uid: 7264 + - uid: 14034 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-140.5 parent: 2 - - uid: 7269 + - uid: 14035 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-148.5 parent: 2 - - uid: 7271 + - uid: 14036 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-151.5 parent: 2 - - uid: 7272 + - uid: 14037 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-151.5 parent: 2 - - uid: 7277 + - uid: 14038 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-154.5 parent: 2 - - uid: 7278 + - uid: 14039 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-154.5 parent: 2 - - uid: 7279 + - uid: 14040 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-155.5 parent: 2 - - uid: 7280 + - uid: 14041 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-155.5 parent: 2 - - uid: 7281 + - uid: 14042 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-155.5 parent: 2 - - uid: 7282 + - uid: 14043 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-155.5 parent: 2 - - uid: 7283 + - uid: 14044 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-154.5 parent: 2 - - uid: 7284 + - uid: 14045 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-154.5 parent: 2 - - uid: 7291 + - uid: 14046 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-157.5 parent: 2 - - uid: 7292 + - uid: 14047 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-158.5 parent: 2 - - uid: 7294 + - uid: 14048 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-158.5 parent: 2 - - uid: 7295 + - uid: 14049 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-157.5 parent: 2 - - uid: 7296 + - uid: 14050 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-157.5 parent: 2 - - uid: 7297 + - uid: 14051 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-158.5 parent: 2 - - uid: 7298 + - uid: 14052 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-158.5 parent: 2 - - uid: 7303 + - uid: 14053 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-161.5 parent: 2 - - uid: 7304 + - uid: 14054 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-161.5 parent: 2 - - uid: 7305 + - uid: 14055 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-163.5 parent: 2 - - uid: 7308 + - uid: 14056 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-164.5 parent: 2 - - uid: 7394 + - uid: 14057 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-167.5 parent: 2 - - uid: 7783 + - uid: 14058 components: - type: Transform pos: 12.5,-71.5 parent: 2 - - uid: 7836 + - uid: 14059 components: - type: Transform pos: 13.5,-59.5 parent: 2 - - uid: 7839 + - uid: 14060 components: - type: Transform pos: 12.5,-59.5 parent: 2 - - uid: 7840 + - uid: 14061 components: - type: Transform pos: 13.5,-58.5 parent: 2 - - uid: 8175 + - uid: 14062 components: - type: Transform pos: 18.5,-83.5 parent: 2 - - uid: 8226 + - uid: 14063 components: - type: Transform pos: 12.5,-69.5 parent: 2 - - uid: 8379 + - uid: 14064 components: - type: Transform pos: 17.5,-66.5 parent: 2 - - uid: 8405 + - uid: 14065 components: - type: Transform pos: 12.5,-67.5 parent: 2 - - uid: 8409 + - uid: 14066 components: - type: Transform pos: 14.5,-66.5 parent: 2 - - uid: 8439 + - uid: 14067 components: - type: Transform pos: 16.5,-58.5 parent: 2 - - uid: 8475 + - uid: 14068 components: - type: Transform pos: 12.5,-63.5 parent: 2 - - uid: 8693 + - uid: 14069 components: - type: Transform pos: 13.5,-66.5 parent: 2 - - uid: 8832 + - uid: 14070 components: - type: Transform pos: 17.5,-58.5 parent: 2 - - uid: 8972 + - uid: 14071 components: - type: Transform pos: 12.5,-68.5 parent: 2 - - uid: 9018 + - uid: 14072 components: - type: Transform pos: 15.5,-58.5 parent: 2 - - uid: 9024 + - uid: 14073 components: - type: Transform pos: 16.5,-66.5 parent: 2 - - uid: 11007 + - uid: 14074 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-150.5 parent: 2 - - uid: 11047 + - uid: 14075 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-141.5 parent: 2 - - uid: 11057 + - uid: 14076 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-162.5 parent: 2 - - uid: 11112 + - uid: 14077 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-149.5 parent: 2 - - uid: 11113 + - uid: 14078 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-142.5 parent: 2 - - uid: 11114 + - uid: 14079 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-163.5 parent: 2 - - uid: 12127 + - uid: 14080 components: - type: Transform pos: 14.5,-58.5 parent: 2 - - uid: 14078 + - uid: 14081 components: - type: Transform pos: 18.5,-67.5 parent: 2 - - uid: 14079 + - uid: 14082 components: - type: Transform pos: 18.5,-68.5 parent: 2 - - uid: 14093 + - uid: 14083 components: - type: Transform pos: 17.5,-86.5 parent: 2 - - uid: 14098 + - uid: 14084 components: - type: Transform pos: 17.5,-85.5 parent: 2 - - uid: 14099 + - uid: 14085 components: - type: Transform pos: 18.5,-85.5 parent: 2 - - uid: 14100 + - uid: 14086 components: - type: Transform pos: 18.5,-84.5 parent: 2 - - uid: 14102 + - uid: 14087 components: - type: Transform pos: 12.5,-83.5 parent: 2 - - uid: 14103 + - uid: 14088 components: - type: Transform pos: 13.5,-86.5 parent: 2 - - uid: 14228 + - uid: 14089 components: - type: Transform pos: 13.5,-85.5 parent: 2 - - uid: 14236 + - uid: 14090 components: - type: Transform pos: 12.5,-85.5 parent: 2 - - uid: 14237 + - uid: 14091 components: - type: Transform pos: 12.5,-84.5 parent: 2 - - uid: 14238 + - uid: 14092 components: - type: Transform pos: 12.5,-80.5 parent: 2 - - uid: 14239 + - uid: 14093 components: - type: Transform pos: 18.5,-70.5 parent: 2 - - uid: 14240 + - uid: 14094 components: - type: Transform pos: 18.5,-71.5 parent: 2 - - uid: 14241 + - uid: 14095 components: - type: Transform pos: 12.5,-76.5 parent: 2 - - uid: 14242 + - uid: 14096 components: - type: Transform pos: 12.5,-75.5 parent: 2 - - uid: 14243 + - uid: 14097 components: - type: Transform pos: 18.5,-69.5 parent: 2 - - uid: 14244 + - uid: 14098 components: - type: Transform pos: 18.5,-82.5 parent: 2 - - uid: 14245 + - uid: 14099 components: - type: Transform pos: 18.5,-81.5 parent: 2 - - uid: 14246 + - uid: 14100 components: - type: Transform pos: 18.5,-80.5 parent: 2 - - uid: 14247 + - uid: 14101 components: - type: Transform pos: 18.5,-76.5 parent: 2 - - uid: 14248 + - uid: 14102 components: - type: Transform pos: 18.5,-75.5 parent: 2 - - uid: 14311 + - uid: 14103 components: - type: Transform pos: 17.5,-59.5 parent: 2 - - uid: 14312 + - uid: 14104 components: - type: Transform pos: 18.5,-59.5 parent: 2 - - uid: 14315 + - uid: 14105 components: - type: Transform pos: 18.5,-63.5 parent: 2 - - uid: 14317 + - uid: 14106 components: - type: Transform pos: 17.5,-64.5 parent: 2 - - uid: 14318 + - uid: 14107 components: - type: Transform pos: 16.5,-64.5 parent: 2 - - uid: 14319 + - uid: 14108 components: - type: Transform pos: 14.5,-64.5 parent: 2 - - uid: 14320 + - uid: 14109 components: - type: Transform pos: 13.5,-64.5 parent: 2 - - uid: 14366 + - uid: 14110 components: - type: Transform pos: 13.5,-76.5 parent: 2 - - uid: 14386 + - uid: 14111 components: - type: Transform pos: 17.5,-76.5 parent: 2 - proto: WallMiningDiagonal entities: - - uid: 4136 + - uid: 14112 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-87.5 parent: 2 - - uid: 7395 + - uid: 14113 components: - type: Transform pos: 12.5,-136.5 parent: 2 - - uid: 7396 + - uid: 14114 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-136.5 parent: 2 - - uid: 7397 + - uid: 14115 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-155.5 parent: 2 - - uid: 7398 + - uid: 14116 components: - type: Transform pos: 12.5,-157.5 parent: 2 - - uid: 7399 + - uid: 14117 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-157.5 parent: 2 - - uid: 7400 + - uid: 14118 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-155.5 parent: 2 - - uid: 8581 + - uid: 14119 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-135.5 parent: 2 - - uid: 14265 + - uid: 14120 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-87.5 parent: 2 - - uid: 14277 + - uid: 14121 components: - type: Transform pos: 12.5,-66.5 parent: 2 - - uid: 14278 + - uid: 14122 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-66.5 parent: 2 - - uid: 14279 + - uid: 14123 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-86.5 parent: 2 - - uid: 14280 + - uid: 14124 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-86.5 parent: 2 - - uid: 14287 + - uid: 14125 components: - type: Transform pos: 13.5,-135.5 parent: 2 - - uid: 14310 + - uid: 14126 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-58.5 parent: 2 - - uid: 14322 + - uid: 14127 components: - type: Transform pos: 12.5,-58.5 parent: 2 - - uid: 14323 + - uid: 14128 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-64.5 parent: 2 - - uid: 14324 + - uid: 14129 components: - type: Transform rot: 1.5707963267948966 rad @@ -92236,49 +91659,49 @@ entities: parent: 2 - proto: WallmountTelevision entities: - - uid: 2723 + - uid: 14130 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-111.5 parent: 2 - - uid: 6052 + - uid: 14131 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-343.5 parent: 2 - - uid: 11205 + - uid: 14132 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-13.5 parent: 2 - - uid: 12686 + - uid: 14133 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-374.5 parent: 2 - - uid: 12688 + - uid: 14134 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-299.5 parent: 2 - - uid: 12690 + - uid: 14135 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-201.5 parent: 2 - - uid: 12691 + - uid: 14136 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-150.5 parent: 2 - - uid: 12693 + - uid: 14137 components: - type: Transform rot: -1.5707963267948966 rad @@ -92286,197 +91709,197 @@ entities: parent: 2 - proto: WallPlastitaniumDiagonal entities: - - uid: 8142 + - uid: 14138 components: - type: Transform pos: 18.5,-296.5 parent: 2 - - uid: 9398 + - uid: 14139 components: - type: Transform pos: 18.5,-314.5 parent: 2 - - uid: 9399 + - uid: 14140 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-300.5 parent: 2 - - uid: 9407 + - uid: 14141 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-296.5 parent: 2 - - uid: 9408 + - uid: 14142 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-300.5 parent: 2 - - uid: 9411 + - uid: 14143 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-314.5 parent: 2 - - uid: 9412 + - uid: 14144 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-318.5 parent: 2 - - uid: 9413 + - uid: 14145 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-318.5 parent: 2 - - uid: 9427 + - uid: 14146 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-309.5 parent: 2 - - uid: 9428 + - uid: 14147 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-305.5 parent: 2 - - uid: 9451 + - uid: 14148 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-304.5 parent: 2 - - uid: 9456 + - uid: 14149 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-303.5 parent: 2 - - uid: 9458 + - uid: 14150 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-302.5 parent: 2 - - uid: 9479 + - uid: 14151 components: - type: Transform pos: 25.5,-310.5 parent: 2 - - uid: 9480 + - uid: 14152 components: - type: Transform pos: 24.5,-311.5 parent: 2 - - uid: 9481 + - uid: 14153 components: - type: Transform pos: 26.5,-309.5 parent: 2 - - uid: 9482 + - uid: 14154 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-312.5 parent: 2 - - uid: 9483 + - uid: 14155 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-311.5 parent: 2 - - uid: 9484 + - uid: 14156 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-310.5 parent: 2 - - uid: 9485 + - uid: 14157 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-312.5 parent: 2 - - uid: 9486 + - uid: 14158 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-311.5 parent: 2 - - uid: 9487 + - uid: 14159 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-310.5 parent: 2 - - uid: 9488 + - uid: 14160 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-309.5 parent: 2 - - uid: 9489 + - uid: 14161 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-310.5 parent: 2 - - uid: 9490 + - uid: 14162 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-311.5 parent: 2 - - uid: 9491 + - uid: 14163 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-305.5 parent: 2 - - uid: 9492 + - uid: 14164 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-304.5 parent: 2 - - uid: 9493 + - uid: 14165 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-303.5 parent: 2 - - uid: 9494 + - uid: 14166 components: - type: Transform pos: 19.5,-302.5 parent: 2 - - uid: 9495 + - uid: 14167 components: - type: Transform pos: 18.5,-303.5 parent: 2 - - uid: 9496 + - uid: 14168 components: - type: Transform pos: 17.5,-304.5 parent: 2 - - uid: 9511 + - uid: 14169 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-305.5 parent: 2 - - uid: 9512 + - uid: 14170 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-304.5 parent: 2 - - uid: 9513 + - uid: 14171 components: - type: Transform rot: 1.5707963267948966 rad @@ -92484,10161 +91907,10162 @@ entities: parent: 2 - proto: WallReinforced entities: - - uid: 22 + - uid: 14172 components: - type: Transform pos: -2.5,3.5 parent: 2 - - uid: 23 + - uid: 14173 components: - type: Transform pos: -2.5,2.5 parent: 2 - - uid: 24 + - uid: 14174 components: - type: Transform pos: -3.5,3.5 parent: 2 - - uid: 27 + - uid: 14175 components: - type: Transform pos: 3.5,2.5 parent: 2 - - uid: 28 + - uid: 14176 components: - type: Transform pos: 3.5,3.5 parent: 2 - - uid: 29 + - uid: 14177 components: - type: Transform pos: 4.5,3.5 parent: 2 - - uid: 30 + - uid: 14178 components: - type: Transform pos: 5.5,3.5 parent: 2 - - uid: 32 + - uid: 14179 components: - type: Transform pos: -2.5,0.5 parent: 2 - - uid: 33 + - uid: 14180 components: - type: Transform pos: -2.5,-0.5 parent: 2 - - uid: 34 + - uid: 14181 components: - type: Transform pos: -1.5,-0.5 parent: 2 - - uid: 35 + - uid: 14182 components: - type: Transform pos: -0.5,-0.5 parent: 2 - - uid: 36 + - uid: 14183 components: - type: Transform pos: 0.5,-0.5 parent: 2 - - uid: 37 + - uid: 14184 components: - type: Transform pos: 2.5,-0.5 parent: 2 - - uid: 38 + - uid: 14185 components: - type: Transform pos: 3.5,-0.5 parent: 2 - - uid: 39 + - uid: 14186 components: - type: Transform pos: 3.5,0.5 parent: 2 - - uid: 40 + - uid: 14187 components: - type: Transform pos: 3.5,1.5 parent: 2 - - uid: 63 + - uid: 14188 components: - type: Transform pos: 7.5,-10.5 parent: 2 - - uid: 66 + - uid: 14189 components: - type: Transform pos: 0.5,-1.5 parent: 2 - - uid: 67 + - uid: 14190 components: - type: Transform pos: 7.5,-11.5 parent: 2 - - uid: 68 + - uid: 14191 components: - type: Transform pos: 7.5,-9.5 parent: 2 - - uid: 70 + - uid: 14192 components: - type: Transform pos: -4.5,-2.5 parent: 2 - - uid: 71 + - uid: 14193 components: - type: Transform pos: -4.5,-3.5 parent: 2 - - uid: 72 + - uid: 14194 components: - type: Transform pos: -4.5,-4.5 parent: 2 - - uid: 73 + - uid: 14195 components: - type: Transform pos: -3.5,-4.5 parent: 2 - - uid: 75 + - uid: 14196 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-342.5 parent: 2 - - uid: 77 + - uid: 14197 components: - type: Transform pos: 0.5,-4.5 parent: 2 - - uid: 78 + - uid: 14198 components: - type: Transform pos: 0.5,-3.5 parent: 2 - - uid: 104 + - uid: 14199 components: - type: Transform pos: 3.5,-1.5 parent: 2 - - uid: 108 + - uid: 14200 components: - type: Transform pos: 6.5,-3.5 parent: 2 - - uid: 109 + - uid: 14201 components: - type: Transform pos: 7.5,-3.5 parent: 2 - - uid: 110 + - uid: 14202 components: - type: Transform pos: 8.5,-3.5 parent: 2 - - uid: 111 + - uid: 14203 components: - type: Transform pos: 8.5,-2.5 parent: 2 - - uid: 112 + - uid: 14204 components: - type: Transform pos: 8.5,-1.5 parent: 2 - - uid: 114 + - uid: 14205 components: - type: Transform pos: 7.5,-0.5 parent: 2 - - uid: 115 + - uid: 14206 components: - type: Transform pos: 7.5,1.5 parent: 2 - - uid: 116 + - uid: 14207 components: - type: Transform pos: 7.5,0.5 parent: 2 - - uid: 118 + - uid: 14208 components: - type: Transform pos: 6.5,2.5 parent: 2 - - uid: 119 + - uid: 14209 components: - type: Transform pos: -4.5,3.5 parent: 2 - - uid: 127 + - uid: 14210 components: - type: Transform pos: -7.5,-1.5 parent: 2 - - uid: 128 + - uid: 14211 components: - type: Transform pos: -7.5,-2.5 parent: 2 - - uid: 129 + - uid: 14212 components: - type: Transform pos: -7.5,-3.5 parent: 2 - - uid: 134 + - uid: 14213 components: - type: Transform pos: 7.5,-4.5 parent: 2 - - uid: 136 + - uid: 14214 components: - type: Transform pos: 7.5,-12.5 parent: 2 - - uid: 137 + - uid: 14215 components: - type: Transform pos: 7.5,-13.5 parent: 2 - - uid: 138 + - uid: 14216 components: - type: Transform pos: 6.5,-13.5 parent: 2 - - uid: 157 + - uid: 14217 components: - type: Transform pos: 0.5,-5.5 parent: 2 - - uid: 167 + - uid: 14218 components: - type: Transform pos: 0.5,-7.5 parent: 2 - - uid: 175 + - uid: 14219 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 176 + - uid: 14220 components: - type: Transform pos: 0.5,-9.5 parent: 2 - - uid: 177 + - uid: 14221 components: - type: Transform pos: 0.5,-11.5 parent: 2 - - uid: 178 + - uid: 14222 components: - type: Transform pos: 0.5,-12.5 parent: 2 - - uid: 179 + - uid: 14223 components: - type: Transform pos: 0.5,-13.5 parent: 2 - - uid: 182 + - uid: 14224 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 183 + - uid: 14225 components: - type: Transform pos: -1.5,-8.5 parent: 2 - - uid: 184 + - uid: 14226 components: - type: Transform pos: -2.5,-8.5 parent: 2 - - uid: 185 + - uid: 14227 components: - type: Transform pos: 4.5,-13.5 parent: 2 - - uid: 186 + - uid: 14228 components: - type: Transform pos: 3.5,-13.5 parent: 2 - - uid: 187 + - uid: 14229 components: - type: Transform pos: 1.5,-13.5 parent: 2 - - uid: 189 + - uid: 14230 components: - type: Transform pos: -4.5,-5.5 parent: 2 - - uid: 240 + - uid: 14231 components: - type: Transform pos: -6.5,-12.5 parent: 2 - - uid: 241 + - uid: 14232 components: - type: Transform pos: -6.5,-13.5 parent: 2 - - uid: 242 + - uid: 14233 components: - type: Transform pos: -6.5,-14.5 parent: 2 - - uid: 243 + - uid: 14234 components: - type: Transform pos: 7.5,-14.5 parent: 2 - - uid: 245 + - uid: 14235 components: - type: Transform pos: -4.5,-10.5 parent: 2 - - uid: 246 + - uid: 14236 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 247 + - uid: 14237 components: - type: Transform pos: -4.5,-12.5 parent: 2 - - uid: 248 + - uid: 14238 components: - type: Transform pos: -4.5,-13.5 parent: 2 - - uid: 251 + - uid: 14239 components: - type: Transform pos: -1.5,-12.5 parent: 2 - - uid: 252 + - uid: 14240 components: - type: Transform pos: -0.5,-12.5 parent: 2 - - uid: 253 + - uid: 14241 components: - type: Transform pos: 0.5,-14.5 parent: 2 - - uid: 255 + - uid: 14242 components: - type: Transform pos: -0.5,-15.5 parent: 2 - - uid: 256 + - uid: 14243 components: - type: Transform pos: -1.5,-15.5 parent: 2 - - uid: 257 + - uid: 14244 components: - type: Transform pos: -2.5,-15.5 parent: 2 - - uid: 263 + - uid: 14245 components: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 265 + - uid: 14246 components: - type: Transform pos: -7.5,-15.5 parent: 2 - - uid: 327 + - uid: 14247 components: - type: Transform pos: -7.5,-17.5 parent: 2 - - uid: 328 + - uid: 14248 components: - type: Transform pos: -7.5,-18.5 parent: 2 - - uid: 335 + - uid: 14249 components: - type: Transform pos: -2.5,-19.5 parent: 2 - - uid: 336 + - uid: 14250 components: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 337 + - uid: 14251 components: - type: Transform pos: -1.5,-18.5 parent: 2 - - uid: 338 + - uid: 14252 components: - type: Transform pos: -0.5,-18.5 parent: 2 - - uid: 340 + - uid: 14253 components: - type: Transform pos: -0.5,-20.5 parent: 2 - - uid: 341 + - uid: 14254 components: - type: Transform pos: 1.5,-20.5 parent: 2 - - uid: 343 + - uid: 14255 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 344 + - uid: 14256 components: - type: Transform pos: 2.5,-18.5 parent: 2 - - uid: 345 + - uid: 14257 components: - type: Transform pos: 1.5,-18.5 parent: 2 - - uid: 346 + - uid: 14258 components: - type: Transform pos: 3.5,-19.5 parent: 2 - - uid: 347 + - uid: 14259 components: - type: Transform pos: 4.5,-19.5 parent: 2 - - uid: 348 + - uid: 14260 components: - type: Transform pos: 4.5,-20.5 parent: 2 - - uid: 353 + - uid: 14261 components: - type: Transform pos: 8.5,-18.5 parent: 2 - - uid: 354 + - uid: 14262 components: - type: Transform pos: 8.5,-17.5 parent: 2 - - uid: 355 + - uid: 14263 components: - type: Transform pos: 8.5,-16.5 parent: 2 - - uid: 357 + - uid: 14264 components: - type: Transform pos: 4.5,-17.5 parent: 2 - - uid: 358 + - uid: 14265 components: - type: Transform pos: 3.5,-17.5 parent: 2 - - uid: 360 + - uid: 14266 components: - type: Transform pos: -1.5,-16.5 parent: 2 - - uid: 361 + - uid: 14267 components: - type: Transform pos: -3.5,-19.5 parent: 2 - - uid: 362 + - uid: 14268 components: - type: Transform pos: -3.5,-20.5 parent: 2 - - uid: 366 + - uid: 14269 components: - type: Transform pos: 1.5,-24.5 parent: 2 - - uid: 373 + - uid: 14270 components: - type: Transform pos: -6.5,1.5 parent: 2 - - uid: 374 + - uid: 14271 components: - type: Transform pos: -5.5,2.5 parent: 2 - - uid: 426 + - uid: 14272 components: - type: Transform pos: 2.5,-25.5 parent: 2 - - uid: 427 + - uid: 14273 components: - type: Transform pos: 2.5,-26.5 parent: 2 - - uid: 428 + - uid: 14274 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 429 + - uid: 14275 components: - type: Transform pos: -0.5,-24.5 parent: 2 - - uid: 431 + - uid: 14276 components: - type: Transform pos: -1.5,-25.5 parent: 2 - - uid: 432 + - uid: 14277 components: - type: Transform pos: -1.5,-26.5 parent: 2 - - uid: 433 + - uid: 14278 components: - type: Transform pos: -0.5,-26.5 parent: 2 - - uid: 435 + - uid: 14279 components: - type: Transform pos: -2.5,-25.5 parent: 2 - - uid: 445 + - uid: 14280 components: - type: Transform pos: -6.5,-27.5 parent: 2 - - uid: 446 + - uid: 14281 components: - type: Transform pos: -6.5,-28.5 parent: 2 - - uid: 448 + - uid: 14282 components: - type: Transform pos: -5.5,-25.5 parent: 2 - - uid: 449 + - uid: 14283 components: - type: Transform pos: -6.5,-26.5 parent: 2 - - uid: 450 + - uid: 14284 components: - type: Transform pos: -7.5,-28.5 parent: 2 - - uid: 451 + - uid: 14285 components: - type: Transform pos: -6.5,-30.5 parent: 2 - - uid: 452 + - uid: 14286 components: - type: Transform pos: -7.5,-30.5 parent: 2 - - uid: 453 + - uid: 14287 components: - type: Transform pos: -7.5,-32.5 parent: 2 - - uid: 454 + - uid: 14288 components: - type: Transform pos: -6.5,-32.5 parent: 2 - - uid: 455 + - uid: 14289 components: - type: Transform pos: -6.5,-33.5 parent: 2 - - uid: 456 + - uid: 14290 components: - type: Transform pos: -6.5,-34.5 parent: 2 - - uid: 471 + - uid: 14291 components: - type: Transform pos: -2.5,-42.5 parent: 2 - - uid: 474 + - uid: 14292 components: - type: Transform pos: -6.5,-40.5 parent: 2 - - uid: 485 + - uid: 14293 components: - type: Transform pos: 4.5,-26.5 parent: 2 - - uid: 494 + - uid: 14294 components: - type: Transform pos: 7.5,-35.5 parent: 2 - - uid: 495 + - uid: 14295 components: - type: Transform pos: 7.5,-34.5 parent: 2 - - uid: 496 + - uid: 14296 components: - type: Transform pos: 7.5,-33.5 parent: 2 - - uid: 498 + - uid: 14297 components: - type: Transform pos: 8.5,-32.5 parent: 2 - - uid: 499 + - uid: 14298 components: - type: Transform pos: 8.5,-30.5 parent: 2 - - uid: 500 + - uid: 14299 components: - type: Transform pos: 7.5,-30.5 parent: 2 - - uid: 501 + - uid: 14300 components: - type: Transform pos: 8.5,-28.5 parent: 2 - - uid: 503 + - uid: 14301 components: - type: Transform pos: 7.5,-26.5 parent: 2 - - uid: 505 + - uid: 14302 components: - type: Transform pos: 6.5,-26.5 parent: 2 - - uid: 506 + - uid: 14303 components: - type: Transform pos: 8.5,-37.5 parent: 2 - - uid: 507 + - uid: 14304 components: - type: Transform pos: 6.5,-25.5 parent: 2 - - uid: 508 + - uid: 14305 components: - type: Transform pos: 7.5,-37.5 parent: 2 - - uid: 513 + - uid: 14306 components: - type: Transform pos: 7.5,-42.5 parent: 2 - - uid: 514 + - uid: 14307 components: - type: Transform pos: 8.5,-42.5 parent: 2 - - uid: 515 + - uid: 14308 components: - type: Transform pos: 8.5,-44.5 parent: 2 - - uid: 516 + - uid: 14309 components: - type: Transform pos: 7.5,-44.5 parent: 2 - - uid: 522 + - uid: 14310 components: - type: Transform pos: 4.5,-46.5 parent: 2 - - uid: 523 + - uid: 14311 components: - type: Transform pos: 3.5,-46.5 parent: 2 - - uid: 524 + - uid: 14312 components: - type: Transform pos: 2.5,-46.5 parent: 2 - - uid: 525 + - uid: 14313 components: - type: Transform pos: 4.5,-47.5 parent: 2 - - uid: 526 + - uid: 14314 components: - type: Transform pos: 4.5,-45.5 parent: 2 - - uid: 527 + - uid: 14315 components: - type: Transform pos: 2.5,-45.5 parent: 2 - - uid: 528 + - uid: 14316 components: - type: Transform pos: 1.5,-45.5 parent: 2 - - uid: 530 + - uid: 14317 components: - type: Transform pos: 1.5,-47.5 parent: 2 - - uid: 532 + - uid: 14318 components: - type: Transform pos: -0.5,-47.5 parent: 2 - - uid: 534 + - uid: 14319 components: - type: Transform pos: -1.5,-46.5 parent: 2 - - uid: 535 + - uid: 14320 components: - type: Transform pos: -1.5,-45.5 parent: 2 - - uid: 536 + - uid: 14321 components: - type: Transform pos: -0.5,-45.5 parent: 2 - - uid: 537 + - uid: 14322 components: - type: Transform pos: -2.5,-46.5 parent: 2 - - uid: 538 + - uid: 14323 components: - type: Transform pos: -3.5,-46.5 parent: 2 - - uid: 542 + - uid: 14324 components: - type: Transform pos: -3.5,-45.5 parent: 2 - - uid: 543 + - uid: 14325 components: - type: Transform pos: -6.5,-38.5 parent: 2 - - uid: 544 + - uid: 14326 components: - type: Transform pos: -6.5,-37.5 parent: 2 - - uid: 546 + - uid: 14327 components: - type: Transform pos: -7.5,-37.5 parent: 2 - - uid: 547 + - uid: 14328 components: - type: Transform pos: -5.5,-45.5 parent: 2 - - uid: 548 + - uid: 14329 components: - type: Transform pos: -6.5,-45.5 parent: 2 - - uid: 549 + - uid: 14330 components: - type: Transform pos: -6.5,-41.5 parent: 2 - - uid: 550 + - uid: 14331 components: - type: Transform pos: -6.5,-44.5 parent: 2 - - uid: 551 + - uid: 14332 components: - type: Transform pos: -6.5,-42.5 parent: 2 - - uid: 552 + - uid: 14333 components: - type: Transform pos: -7.5,-42.5 parent: 2 - - uid: 553 + - uid: 14334 components: - type: Transform pos: -7.5,-44.5 parent: 2 - - uid: 554 + - uid: 14335 components: - type: Transform pos: -1.5,-42.5 parent: 2 - - uid: 555 + - uid: 14336 components: - type: Transform pos: -1.5,-43.5 parent: 2 - - uid: 566 + - uid: 14337 components: - type: Transform pos: 4.5,-25.5 parent: 2 - - uid: 567 + - uid: 14338 components: - type: Transform pos: 3.5,-25.5 parent: 2 - - uid: 585 + - uid: 14339 components: - type: Transform pos: 3.5,-55.5 parent: 2 - - uid: 603 + - uid: 14340 components: - type: Transform pos: -3.5,-42.5 parent: 2 - - uid: 608 + - uid: 14341 components: - type: Transform pos: -3.5,-101.5 parent: 2 - - uid: 626 + - uid: 14342 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-335.5 parent: 2 - - uid: 643 + - uid: 14343 components: - type: Transform pos: -18.5,-254.5 parent: 2 - - uid: 646 + - uid: 14344 components: - type: Transform pos: 2.5,-52.5 parent: 2 - - uid: 663 + - uid: 14345 components: - type: Transform pos: -2.5,-100.5 parent: 2 - - uid: 674 + - uid: 14346 components: - type: Transform pos: 1.5,-51.5 parent: 2 - - uid: 675 + - uid: 14347 components: - type: Transform pos: -0.5,-51.5 parent: 2 - - uid: 676 + - uid: 14348 components: - type: Transform pos: -1.5,-52.5 parent: 2 - - uid: 677 + - uid: 14349 components: - type: Transform pos: -1.5,-53.5 parent: 2 - - uid: 678 + - uid: 14350 components: - type: Transform pos: -0.5,-53.5 parent: 2 - - uid: 679 + - uid: 14351 components: - type: Transform pos: 2.5,-53.5 parent: 2 - - uid: 680 + - uid: 14352 components: - type: Transform pos: 1.5,-53.5 parent: 2 - - uid: 712 + - uid: 14353 components: - type: Transform pos: -1.5,-44.5 parent: 2 - - uid: 727 + - uid: 14354 components: - type: Transform pos: -3.5,-43.5 parent: 2 - - uid: 883 + - uid: 14355 components: - type: Transform pos: -7.5,-64.5 parent: 2 - - uid: 892 + - uid: 14356 components: - type: Transform pos: -3.5,-52.5 parent: 2 - - uid: 894 + - uid: 14357 components: - type: Transform pos: -20.5,-250.5 parent: 2 - - uid: 899 + - uid: 14358 components: - type: Transform pos: 6.5,-53.5 parent: 2 - - uid: 901 + - uid: 14359 components: - type: Transform pos: 6.5,-52.5 parent: 2 - - uid: 902 + - uid: 14360 components: - type: Transform pos: 7.5,-54.5 parent: 2 - - uid: 907 + - uid: 14361 components: - type: Transform pos: 7.5,-53.5 parent: 2 - - uid: 910 + - uid: 14362 components: - type: Transform pos: 7.5,-60.5 parent: 2 - - uid: 911 + - uid: 14363 components: - type: Transform pos: 7.5,-59.5 parent: 2 - - uid: 913 + - uid: 14364 components: - type: Transform pos: -7.5,-62.5 parent: 2 - - uid: 926 + - uid: 14365 components: - type: Transform pos: -7.5,-63.5 parent: 2 - - uid: 939 + - uid: 14366 components: - type: Transform pos: 7.5,-65.5 parent: 2 - - uid: 940 + - uid: 14367 components: - type: Transform pos: 7.5,-66.5 parent: 2 - - uid: 944 + - uid: 14368 components: - type: Transform pos: 8.5,-54.5 parent: 2 - - uid: 952 + - uid: 14369 components: - type: Transform pos: -6.5,-55.5 parent: 2 - - uid: 953 + - uid: 14370 components: - type: Transform pos: -6.5,-54.5 parent: 2 - - uid: 957 + - uid: 14371 components: - type: Transform pos: 7.5,-67.5 parent: 2 - - uid: 975 + - uid: 14372 components: - type: Transform pos: -6.5,-70.5 parent: 2 - - uid: 989 + - uid: 14373 components: - type: Transform pos: 3.5,-228.5 parent: 2 - - uid: 1000 + - uid: 14374 components: - type: Transform pos: 1.5,-72.5 parent: 2 - - uid: 1001 + - uid: 14375 components: - type: Transform pos: 3.5,-73.5 parent: 2 - - uid: 1003 + - uid: 14376 components: - type: Transform pos: 2.5,-73.5 parent: 2 - - uid: 1009 + - uid: 14377 components: - type: Transform pos: -5.5,-133.5 parent: 2 - - uid: 1029 + - uid: 14378 components: - type: Transform pos: -7.5,-69.5 parent: 2 - - uid: 1083 + - uid: 14379 components: - type: Transform pos: 4.5,-74.5 parent: 2 - - uid: 1085 + - uid: 14380 components: - type: Transform pos: 4.5,-73.5 parent: 2 - - uid: 1088 + - uid: 14381 components: - type: Transform pos: 4.5,-72.5 parent: 2 - - uid: 1089 + - uid: 14382 components: - type: Transform pos: 2.5,-72.5 parent: 2 - - uid: 1122 + - uid: 14383 components: - type: Transform pos: -7.5,-61.5 parent: 2 - - uid: 1140 + - uid: 14384 components: - type: Transform pos: -6.5,-71.5 parent: 2 - - uid: 1146 + - uid: 14385 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-334.5 parent: 2 - - uid: 1158 + - uid: 14386 components: - type: Transform pos: -0.5,-72.5 parent: 2 - - uid: 1179 + - uid: 14387 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-333.5 parent: 2 - - uid: 1215 + - uid: 14388 components: - type: Transform pos: -2.5,-52.5 parent: 2 - - uid: 1216 + - uid: 14389 components: - type: Transform pos: -0.5,-74.5 parent: 2 - - uid: 1221 + - uid: 14390 components: - type: Transform pos: 1.5,-74.5 parent: 2 - - uid: 1224 + - uid: 14391 components: - type: Transform pos: 7.5,-58.5 parent: 2 - - uid: 1241 + - uid: 14392 components: - type: Transform pos: -7.5,-56.5 parent: 2 - - uid: 1266 + - uid: 14393 components: - type: Transform pos: 5.5,-228.5 parent: 2 - - uid: 1316 + - uid: 14394 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-328.5 parent: 2 - - uid: 1342 + - uid: 14395 components: - type: Transform pos: 3.5,-217.5 parent: 2 - - uid: 1402 + - uid: 14396 components: - type: Transform pos: -12.5,-236.5 parent: 2 - - uid: 1407 + - uid: 14397 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-332.5 parent: 2 - - uid: 1426 + - uid: 14398 components: - type: Transform pos: 4.5,-55.5 parent: 2 - - uid: 1435 + - uid: 14399 components: - type: Transform pos: -3.5,-79.5 parent: 2 - - uid: 1436 + - uid: 14400 components: - type: Transform pos: -3.5,-99.5 parent: 2 - - uid: 1465 + - uid: 14401 components: - type: Transform pos: 1.5,-78.5 parent: 2 - - uid: 1466 + - uid: 14402 components: - type: Transform pos: -0.5,-78.5 parent: 2 - - uid: 1469 + - uid: 14403 components: - type: Transform pos: 2.5,-79.5 parent: 2 - - uid: 1470 + - uid: 14404 components: - type: Transform pos: -1.5,-79.5 parent: 2 - - uid: 1473 + - uid: 14405 components: - type: Transform pos: -1.5,-80.5 parent: 2 - - uid: 1474 + - uid: 14406 components: - type: Transform pos: -0.5,-80.5 parent: 2 - - uid: 1476 + - uid: 14407 components: - type: Transform pos: 1.5,-80.5 parent: 2 - - uid: 1477 + - uid: 14408 components: - type: Transform pos: 2.5,-80.5 parent: 2 - - uid: 1502 + - uid: 14409 components: - type: Transform pos: -10.5,-86.5 parent: 2 - - uid: 1505 + - uid: 14410 components: - type: Transform pos: -2.5,-79.5 parent: 2 - - uid: 1506 + - uid: 14411 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 1507 + - uid: 14412 components: - type: Transform pos: -5.5,-79.5 parent: 2 - - uid: 1508 + - uid: 14413 components: - type: Transform pos: -5.5,-80.5 parent: 2 - - uid: 1509 + - uid: 14414 components: - type: Transform pos: -6.5,-80.5 parent: 2 - - uid: 1510 + - uid: 14415 components: - type: Transform pos: -6.5,-81.5 parent: 2 - - uid: 1511 + - uid: 14416 components: - type: Transform pos: -6.5,-82.5 parent: 2 - - uid: 1513 + - uid: 14417 components: - type: Transform pos: 3.5,-79.5 parent: 2 - - uid: 1514 + - uid: 14418 components: - type: Transform pos: 4.5,-79.5 parent: 2 - - uid: 1515 + - uid: 14419 components: - type: Transform pos: 4.5,-80.5 parent: 2 - - uid: 1533 + - uid: 14420 components: - type: Transform pos: -6.5,-90.5 parent: 2 - - uid: 1534 + - uid: 14421 components: - type: Transform pos: -6.5,-91.5 parent: 2 - - uid: 1535 + - uid: 14422 components: - type: Transform pos: -6.5,-92.5 parent: 2 - - uid: 1539 + - uid: 14423 components: - type: Transform pos: -5.5,-99.5 parent: 2 - - uid: 1540 + - uid: 14424 components: - type: Transform pos: -6.5,-98.5 parent: 2 - - uid: 1541 + - uid: 14425 components: - type: Transform pos: -6.5,-99.5 parent: 2 - - uid: 1542 + - uid: 14426 components: - type: Transform pos: -1.5,-100.5 parent: 2 - - uid: 1543 + - uid: 14427 components: - type: Transform pos: -5.5,-100.5 parent: 2 - - uid: 1545 + - uid: 14428 components: - type: Transform pos: -3.5,-100.5 parent: 2 - - uid: 1546 + - uid: 14429 components: - type: Transform pos: -5.5,-101.5 parent: 2 - - uid: 1547 + - uid: 14430 components: - type: Transform pos: -1.5,-99.5 parent: 2 - - uid: 1550 + - uid: 14431 components: - type: Transform pos: 4.5,-101.5 parent: 2 - - uid: 1551 + - uid: 14432 components: - type: Transform pos: 6.5,-99.5 parent: 2 - - uid: 1553 + - uid: 14433 components: - type: Transform pos: 3.5,-100.5 parent: 2 - - uid: 1561 + - uid: 14434 components: - type: Transform pos: 6.5,-101.5 parent: 2 - - uid: 1562 + - uid: 14435 components: - type: Transform pos: 1.5,-101.5 parent: 2 - - uid: 1570 + - uid: 14436 components: - type: Transform pos: -0.5,-101.5 parent: 2 - - uid: 1571 + - uid: 14437 components: - type: Transform pos: 6.5,-100.5 parent: 2 - - uid: 1577 + - uid: 14438 components: - type: Transform pos: 7.5,-98.5 parent: 2 - - uid: 1578 + - uid: 14439 components: - type: Transform pos: 7.5,-97.5 parent: 2 - - uid: 1579 + - uid: 14440 components: - type: Transform pos: 4.5,-100.5 parent: 2 - - uid: 1582 + - uid: 14441 components: - type: Transform pos: 7.5,-86.5 parent: 2 - - uid: 1587 + - uid: 14442 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-332.5 parent: 2 - - uid: 1624 + - uid: 14443 components: - type: Transform pos: -4.5,-52.5 parent: 2 - - uid: 1631 + - uid: 14444 components: - type: Transform pos: -6.5,-97.5 parent: 2 - - uid: 1674 + - uid: 14445 components: - type: Transform pos: 7.5,-99.5 parent: 2 - - uid: 1678 + - uid: 14446 components: - type: Transform pos: -1.5,-98.5 parent: 2 - - uid: 1713 + - uid: 14447 components: - type: Transform pos: -0.5,-99.5 parent: 2 - - uid: 1741 + - uid: 14448 components: - type: Transform pos: -0.5,-261.5 parent: 2 - - uid: 1811 + - uid: 14449 components: - type: Transform pos: -16.5,-249.5 parent: 2 - - uid: 1814 + - uid: 14450 components: - type: Transform pos: 1.5,-105.5 parent: 2 - - uid: 1815 + - uid: 14451 components: - type: Transform pos: 2.5,-106.5 parent: 2 - - uid: 1816 + - uid: 14452 components: - type: Transform pos: 2.5,-107.5 parent: 2 - - uid: 1817 + - uid: 14453 components: - type: Transform pos: 1.5,-107.5 parent: 2 - - uid: 1818 + - uid: 14454 components: - type: Transform pos: -0.5,-105.5 parent: 2 - - uid: 1820 + - uid: 14455 components: - type: Transform pos: -1.5,-106.5 parent: 2 - - uid: 1821 + - uid: 14456 components: - type: Transform pos: -1.5,-107.5 parent: 2 - - uid: 1822 + - uid: 14457 components: - type: Transform pos: -0.5,-107.5 parent: 2 - - uid: 1826 + - uid: 14458 components: - type: Transform pos: -2.5,-106.5 parent: 2 - - uid: 1827 + - uid: 14459 components: - type: Transform pos: -3.5,-106.5 parent: 2 - - uid: 1830 + - uid: 14460 components: - type: Transform pos: -6.5,-106.5 parent: 2 - - uid: 1846 + - uid: 14461 components: - type: Transform pos: -16.5,-235.5 parent: 2 - - uid: 1853 + - uid: 14462 components: - type: Transform pos: -3.5,-105.5 parent: 2 - - uid: 1854 + - uid: 14463 components: - type: Transform pos: -5.5,-105.5 parent: 2 - - uid: 1919 + - uid: 14464 components: - type: Transform pos: -15.5,-235.5 parent: 2 - - uid: 1922 + - uid: 14465 components: - type: Transform pos: -17.5,-235.5 parent: 2 - - uid: 1932 + - uid: 14466 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-117.5 parent: 2 - - uid: 1942 + - uid: 14467 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-116.5 parent: 2 - - uid: 1952 + - uid: 14468 components: - type: Transform pos: -9.5,-107.5 parent: 2 - - uid: 1953 + - uid: 14469 components: - type: Transform pos: -9.5,-111.5 parent: 2 - - uid: 1954 + - uid: 14470 components: - type: Transform pos: -9.5,-114.5 parent: 2 - - uid: 1956 + - uid: 14471 components: - type: Transform pos: -9.5,-120.5 parent: 2 - - uid: 1957 + - uid: 14472 components: - type: Transform pos: -9.5,-123.5 parent: 2 - - uid: 1959 + - uid: 14473 components: - type: Transform pos: -8.5,-126.5 parent: 2 - - uid: 1960 + - uid: 14474 components: - type: Transform pos: -7.5,-126.5 parent: 2 - - uid: 1962 + - uid: 14475 components: - type: Transform pos: -5.5,-126.5 parent: 2 - - uid: 1976 + - uid: 14476 components: - type: Transform pos: -9.5,-110.5 parent: 2 - - uid: 2008 + - uid: 14477 components: - type: Transform pos: -10.5,-252.5 parent: 2 - - uid: 2009 + - uid: 14478 components: - type: Transform pos: -10.5,-255.5 parent: 2 - - uid: 2010 + - uid: 14479 components: - type: Transform pos: -10.5,-256.5 parent: 2 - - uid: 2011 + - uid: 14480 components: - type: Transform pos: -10.5,-251.5 parent: 2 - - uid: 2012 + - uid: 14481 components: - type: Transform pos: -10.5,-253.5 parent: 2 - - uid: 2014 + - uid: 14482 components: - type: Transform pos: -10.5,-254.5 parent: 2 - - uid: 2031 + - uid: 14483 components: - type: Transform pos: -3.5,-98.5 parent: 2 - - uid: 2074 + - uid: 14484 components: - type: Transform pos: -5.5,-106.5 parent: 2 - - uid: 2101 + - uid: 14485 components: - type: Transform pos: -3.5,-127.5 parent: 2 - - uid: 2102 + - uid: 14486 components: - type: Transform pos: -3.5,-128.5 parent: 2 - - uid: 2103 + - uid: 14487 components: - type: Transform pos: -2.5,-127.5 parent: 2 - - uid: 2104 + - uid: 14488 components: - type: Transform pos: -3.5,-126.5 parent: 2 - - uid: 2105 + - uid: 14489 components: - type: Transform pos: -1.5,-126.5 parent: 2 - - uid: 2106 + - uid: 14490 components: - type: Transform pos: -0.5,-126.5 parent: 2 - - uid: 2107 + - uid: 14491 components: - type: Transform pos: -1.5,-127.5 parent: 2 - - uid: 2109 + - uid: 14492 components: - type: Transform pos: -0.5,-128.5 parent: 2 - - uid: 2110 + - uid: 14493 components: - type: Transform pos: 1.5,-126.5 parent: 2 - - uid: 2114 + - uid: 14494 components: - type: Transform pos: 1.5,-128.5 parent: 2 - - uid: 2118 + - uid: 14495 components: - type: Transform pos: 6.5,-127.5 parent: 2 - - uid: 2119 + - uid: 14496 components: - type: Transform pos: 6.5,-128.5 parent: 2 - - uid: 2121 + - uid: 14497 components: - type: Transform pos: 6.5,-126.5 parent: 2 - - uid: 2123 + - uid: 14498 components: - type: Transform pos: 7.5,-125.5 parent: 2 - - uid: 2130 + - uid: 14499 components: - type: Transform pos: 4.5,-132.5 parent: 2 - - uid: 2133 + - uid: 14500 components: - type: Transform pos: 8.5,-112.5 parent: 2 - - uid: 2134 + - uid: 14501 components: - type: Transform pos: 7.5,-112.5 parent: 2 - - uid: 2135 + - uid: 14502 components: - type: Transform pos: 7.5,-111.5 parent: 2 - - uid: 2136 + - uid: 14503 components: - type: Transform pos: 7.5,-110.5 parent: 2 - - uid: 2137 + - uid: 14504 components: - type: Transform pos: 7.5,-109.5 parent: 2 - - uid: 2138 + - uid: 14505 components: - type: Transform pos: 7.5,-108.5 parent: 2 - - uid: 2139 + - uid: 14506 components: - type: Transform pos: 7.5,-107.5 parent: 2 - - uid: 2140 + - uid: 14507 components: - type: Transform pos: 6.5,-107.5 parent: 2 - - uid: 2141 + - uid: 14508 components: - type: Transform pos: 4.5,-107.5 parent: 2 - - uid: 2142 + - uid: 14509 components: - type: Transform pos: 4.5,-106.5 parent: 2 - - uid: 2143 + - uid: 14510 components: - type: Transform pos: 3.5,-106.5 parent: 2 - - uid: 2144 + - uid: 14511 components: - type: Transform pos: 4.5,-105.5 parent: 2 - - uid: 2145 + - uid: 14512 components: - type: Transform pos: 6.5,-105.5 parent: 2 - - uid: 2146 + - uid: 14513 components: - type: Transform pos: 6.5,-106.5 parent: 2 - - uid: 2154 + - uid: 14514 components: - type: Transform pos: 2.5,-122.5 parent: 2 - - uid: 2155 + - uid: 14515 components: - type: Transform pos: 3.5,-121.5 parent: 2 - - uid: 2157 + - uid: 14516 components: - type: Transform pos: 3.5,-119.5 parent: 2 - - uid: 2158 + - uid: 14517 components: - type: Transform pos: 3.5,-118.5 parent: 2 - - uid: 2159 + - uid: 14518 components: - type: Transform pos: 2.5,-118.5 parent: 2 - - uid: 2160 + - uid: 14519 components: - type: Transform pos: 1.5,-118.5 parent: 2 - - uid: 2161 + - uid: 14520 components: - type: Transform pos: -0.5,-118.5 parent: 2 - - uid: 2163 + - uid: 14521 components: - type: Transform pos: -1.5,-118.5 parent: 2 - - uid: 2164 + - uid: 14522 components: - type: Transform pos: -2.5,-118.5 parent: 2 - - uid: 2171 + - uid: 14523 components: - type: Transform pos: -1.5,-115.5 parent: 2 - - uid: 2172 + - uid: 14524 components: - type: Transform pos: -0.5,-115.5 parent: 2 - - uid: 2178 + - uid: 14525 components: - type: Transform pos: 4.5,-118.5 parent: 2 - - uid: 2188 + - uid: 14526 components: - type: Transform pos: 4.5,-111.5 parent: 2 - - uid: 2190 + - uid: 14527 components: - type: Transform pos: -2.5,-119.5 parent: 2 - - uid: 2195 + - uid: 14528 components: - type: Transform pos: 1.5,-112.5 parent: 2 - - uid: 2196 + - uid: 14529 components: - type: Transform pos: 1.5,-111.5 parent: 2 - - uid: 2197 + - uid: 14530 components: - type: Transform pos: 0.5,-111.5 parent: 2 - - uid: 2198 + - uid: 14531 components: - type: Transform pos: -0.5,-111.5 parent: 2 - - uid: 2199 + - uid: 14532 components: - type: Transform pos: -1.5,-111.5 parent: 2 - - uid: 2204 + - uid: 14533 components: - type: Transform pos: -2.5,-117.5 parent: 2 - - uid: 2205 + - uid: 14534 components: - type: Transform pos: -2.5,-116.5 parent: 2 - - uid: 2206 + - uid: 14535 components: - type: Transform pos: -2.5,-115.5 parent: 2 - - uid: 2227 + - uid: 14536 components: - type: Transform pos: -20.5,-235.5 parent: 2 - - uid: 2300 + - uid: 14537 components: - type: Transform pos: 6.5,-109.5 parent: 2 - - uid: 2301 + - uid: 14538 components: - type: Transform pos: 5.5,-109.5 parent: 2 - - uid: 2302 + - uid: 14539 components: - type: Transform pos: 4.5,-109.5 parent: 2 - - uid: 2336 + - uid: 14540 components: - type: Transform pos: -11.5,-250.5 parent: 2 - - uid: 2359 + - uid: 14541 components: - type: Transform pos: -16.5,-248.5 parent: 2 - - uid: 2361 + - uid: 14542 components: - type: Transform pos: -14.5,-249.5 parent: 2 - - uid: 2362 + - uid: 14543 components: - type: Transform pos: -13.5,-249.5 parent: 2 - - uid: 2371 + - uid: 14544 components: - type: Transform pos: -12.5,-250.5 parent: 2 - - uid: 2453 + - uid: 14545 components: - type: Transform pos: -0.5,-132.5 parent: 2 - - uid: 2454 + - uid: 14546 components: - type: Transform pos: 1.5,-132.5 parent: 2 - - uid: 2455 + - uid: 14547 components: - type: Transform pos: -0.5,-134.5 parent: 2 - - uid: 2459 + - uid: 14548 components: - type: Transform pos: -1.5,-133.5 parent: 2 - - uid: 2460 + - uid: 14549 components: - type: Transform pos: -1.5,-134.5 parent: 2 - - uid: 2469 + - uid: 14550 components: - type: Transform pos: -17.5,-248.5 parent: 2 - - uid: 2480 + - uid: 14551 components: - type: Transform pos: -2.5,-133.5 parent: 2 - - uid: 2486 + - uid: 14552 components: - type: Transform pos: 4.5,-133.5 parent: 2 - - uid: 2488 + - uid: 14553 components: - type: Transform pos: 6.5,-133.5 parent: 2 - - uid: 2489 + - uid: 14554 components: - type: Transform pos: 6.5,-134.5 parent: 2 - - uid: 2490 + - uid: 14555 components: - type: Transform pos: -3.5,-133.5 parent: 2 - - uid: 2491 + - uid: 14556 components: - type: Transform pos: -3.5,-134.5 parent: 2 - - uid: 2493 + - uid: 14557 components: - type: Transform pos: -5.5,-134.5 parent: 2 - - uid: 2494 + - uid: 14558 components: - type: Transform pos: -6.5,-135.5 parent: 2 - - uid: 2495 + - uid: 14559 components: - type: Transform pos: -6.5,-136.5 parent: 2 - - uid: 2508 + - uid: 14560 components: - type: Transform pos: -6.5,-149.5 parent: 2 - - uid: 2513 + - uid: 14561 components: - type: Transform pos: -6.5,-153.5 parent: 2 - - uid: 2514 + - uid: 14562 components: - type: Transform pos: -5.5,-153.5 parent: 2 - - uid: 2515 + - uid: 14563 components: - type: Transform pos: -5.5,-154.5 parent: 2 - - uid: 2516 + - uid: 14564 components: - type: Transform pos: -5.5,-155.5 parent: 2 - - uid: 2517 + - uid: 14565 components: - type: Transform pos: -3.5,-154.5 parent: 2 - - uid: 2518 + - uid: 14566 components: - type: Transform pos: -3.5,-153.5 parent: 2 - - uid: 2519 + - uid: 14567 components: - type: Transform pos: -3.5,-155.5 parent: 2 - - uid: 2520 + - uid: 14568 components: - type: Transform pos: -2.5,-154.5 parent: 2 - - uid: 2521 + - uid: 14569 components: - type: Transform pos: -1.5,-154.5 parent: 2 - - uid: 2523 + - uid: 14570 components: - type: Transform pos: -1.5,-153.5 parent: 2 - - uid: 2524 + - uid: 14571 components: - type: Transform pos: -0.5,-153.5 parent: 2 - - uid: 2526 + - uid: 14572 components: - type: Transform pos: 1.5,-153.5 parent: 2 - - uid: 2527 + - uid: 14573 components: - type: Transform pos: 2.5,-154.5 parent: 2 - - uid: 2533 + - uid: 14574 components: - type: Transform pos: 2.5,-153.5 parent: 2 - - uid: 2545 + - uid: 14575 components: - type: Transform pos: 7.5,-154.5 parent: 2 - - uid: 2550 + - uid: 14576 components: - type: Transform pos: 6.5,-154.5 parent: 2 - - uid: 2551 + - uid: 14577 components: - type: Transform pos: 6.5,-155.5 parent: 2 - - uid: 2560 + - uid: 14578 components: - type: Transform pos: 6.5,-153.5 parent: 2 - - uid: 2561 + - uid: 14579 components: - type: Transform pos: 9.5,-152.5 parent: 2 - - uid: 2565 + - uid: 14580 components: - type: Transform pos: 9.5,-143.5 parent: 2 - - uid: 2566 + - uid: 14581 components: - type: Transform pos: 9.5,-149.5 parent: 2 - - uid: 2570 + - uid: 14582 components: - type: Transform pos: 9.5,-140.5 parent: 2 - - uid: 2573 + - uid: 14583 components: - type: Transform pos: 9.5,-142.5 parent: 2 - - uid: 2576 + - uid: 14584 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-246.5 parent: 2 - - uid: 2581 + - uid: 14585 components: - type: Transform pos: 8.5,-135.5 parent: 2 - - uid: 2583 + - uid: 14586 components: - type: Transform pos: 7.5,-134.5 parent: 2 - - uid: 2626 + - uid: 14587 components: - type: Transform pos: -5.5,-151.5 parent: 2 - - uid: 2702 + - uid: 14588 components: - type: Transform pos: 8.5,-153.5 parent: 2 - - uid: 2784 + - uid: 14589 components: - type: Transform pos: 4.5,-153.5 parent: 2 - - uid: 2813 + - uid: 14590 components: - type: Transform pos: 8.5,-154.5 parent: 2 - - uid: 2814 + - uid: 14591 components: - type: Transform pos: 8.5,-152.5 parent: 2 - - uid: 2816 + - uid: 14592 components: - type: Transform pos: 6.5,-152.5 parent: 2 - - uid: 2825 + - uid: 14593 components: - type: Transform pos: 5.5,-116.5 parent: 2 - - uid: 2856 + - uid: 14594 components: - type: Transform pos: 1.5,-159.5 parent: 2 - - uid: 2857 + - uid: 14595 components: - type: Transform pos: -0.5,-159.5 parent: 2 - - uid: 2900 + - uid: 14596 components: - type: Transform pos: 2.5,-160.5 parent: 2 - - uid: 2901 + - uid: 14597 components: - type: Transform pos: 2.5,-161.5 parent: 2 - - uid: 2902 + - uid: 14598 components: - type: Transform pos: -1.5,-160.5 parent: 2 - - uid: 2904 + - uid: 14599 components: - type: Transform pos: -0.5,-161.5 parent: 2 - - uid: 2905 + - uid: 14600 components: - type: Transform pos: 1.5,-161.5 parent: 2 - - uid: 2922 + - uid: 14601 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-239.5 parent: 2 - - uid: 2928 + - uid: 14602 components: - type: Transform pos: 2.5,-180.5 parent: 2 - - uid: 2929 + - uid: 14603 components: - type: Transform pos: 1.5,-180.5 parent: 2 - - uid: 2932 + - uid: 14604 components: - type: Transform pos: -1.5,-181.5 parent: 2 - - uid: 2933 + - uid: 14605 components: - type: Transform pos: 2.5,-181.5 parent: 2 - - uid: 2934 + - uid: 14606 components: - type: Transform pos: 1.5,-182.5 parent: 2 - - uid: 2935 + - uid: 14607 components: - type: Transform pos: -0.5,-182.5 parent: 2 - - uid: 2940 + - uid: 14608 components: - type: Transform pos: -12.5,-240.5 parent: 2 - - uid: 2956 + - uid: 14609 components: - type: Transform pos: -12.5,-239.5 parent: 2 - - uid: 2958 + - uid: 14610 components: - type: Transform pos: -5.5,-160.5 parent: 2 - - uid: 2963 + - uid: 14611 components: - type: Transform pos: -5.5,-161.5 parent: 2 - - uid: 2964 + - uid: 14612 components: - type: Transform pos: -2.5,-160.5 parent: 2 - - uid: 2965 + - uid: 14613 components: - type: Transform pos: -3.5,-160.5 parent: 2 - - uid: 2971 + - uid: 14614 components: - type: Transform pos: -6.5,-161.5 parent: 2 - - uid: 2978 + - uid: 14615 components: - type: Transform pos: -7.5,-164.5 parent: 2 - - uid: 2979 + - uid: 14616 components: - type: Transform pos: -7.5,-165.5 parent: 2 - - uid: 2980 + - uid: 14617 components: - type: Transform pos: -7.5,-169.5 parent: 2 - - uid: 2981 + - uid: 14618 components: - type: Transform pos: -7.5,-170.5 parent: 2 - - uid: 2982 + - uid: 14619 components: - type: Transform pos: -8.5,-170.5 parent: 2 - - uid: 2985 + - uid: 14620 components: - type: Transform pos: -8.5,-177.5 parent: 2 - - uid: 2988 + - uid: 14621 components: - type: Transform pos: -7.5,-179.5 parent: 2 - - uid: 2990 + - uid: 14622 components: - type: Transform pos: 8.5,-165.5 parent: 2 - - uid: 2991 + - uid: 14623 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-336.5 parent: 2 - - uid: 2992 + - uid: 14624 components: - type: Transform pos: -6.5,-180.5 parent: 2 - - uid: 2993 + - uid: 14625 components: - type: Transform pos: -5.5,-180.5 parent: 2 - - uid: 2994 + - uid: 14626 components: - type: Transform pos: 8.5,-169.5 parent: 2 - - uid: 2997 + - uid: 14627 components: - type: Transform pos: -15.5,-239.5 parent: 2 - - uid: 2998 + - uid: 14628 components: - type: Transform pos: 9.5,-170.5 parent: 2 - - uid: 2999 + - uid: 14629 components: - type: Transform pos: 9.5,-171.5 parent: 2 - - uid: 3000 + - uid: 14630 components: - type: Transform pos: 9.5,-172.5 parent: 2 - - uid: 3002 + - uid: 14631 components: - type: Transform pos: -3.5,-182.5 parent: 2 - - uid: 3003 + - uid: 14632 components: - type: Transform pos: -2.5,-181.5 parent: 2 - - uid: 3004 + - uid: 14633 components: - type: Transform pos: 9.5,-177.5 parent: 2 - - uid: 3006 + - uid: 14634 components: - type: Transform pos: 9.5,-179.5 parent: 2 - - uid: 3008 + - uid: 14635 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-338.5 parent: 2 - - uid: 3012 + - uid: 14636 components: - type: Transform pos: -12.5,-241.5 parent: 2 - - uid: 3014 + - uid: 14637 components: - type: Transform pos: -12.5,-242.5 parent: 2 - - uid: 3015 + - uid: 14638 components: - type: Transform pos: -12.5,-244.5 parent: 2 - - uid: 3019 + - uid: 14639 components: - type: Transform pos: -12.5,-262.5 parent: 2 - - uid: 3020 + - uid: 14640 components: - type: Transform pos: -12.5,-245.5 parent: 2 - - uid: 3024 + - uid: 14641 components: - type: Transform pos: -12.5,-247.5 parent: 2 - - uid: 3026 + - uid: 14642 components: - type: Transform pos: 3.5,-181.5 parent: 2 - - uid: 3037 + - uid: 14643 components: - type: Transform pos: 6.5,-182.5 parent: 2 - - uid: 3044 + - uid: 14644 components: - type: Transform pos: 6.5,-180.5 parent: 2 - - uid: 3051 + - uid: 14645 components: - type: Transform pos: 7.5,-180.5 parent: 2 - - uid: 3055 + - uid: 14646 components: - type: Transform pos: -12.5,-264.5 parent: 2 - - uid: 3058 + - uid: 14647 components: - type: Transform pos: -12.5,-246.5 parent: 2 - - uid: 3065 + - uid: 14648 components: - type: Transform pos: 7.5,-164.5 parent: 2 - - uid: 3078 + - uid: 14649 components: - type: Transform pos: 3.5,-160.5 parent: 2 - - uid: 3079 + - uid: 14650 components: - type: Transform pos: 4.5,-160.5 parent: 2 - - uid: 3080 + - uid: 14651 components: - type: Transform pos: 4.5,-161.5 parent: 2 - - uid: 3081 + - uid: 14652 components: - type: Transform pos: 6.5,-161.5 parent: 2 - - uid: 3082 + - uid: 14653 components: - type: Transform pos: 6.5,-160.5 parent: 2 - - uid: 3083 + - uid: 14654 components: - type: Transform pos: 7.5,-161.5 parent: 2 - - uid: 3101 + - uid: 14655 components: - type: Transform pos: -12.5,-249.5 parent: 2 - - uid: 3105 + - uid: 14656 components: - type: Transform pos: -12.5,-263.5 parent: 2 - - uid: 3115 + - uid: 14657 components: - type: Transform pos: -12.5,-259.5 parent: 2 - - uid: 3183 + - uid: 14658 components: - type: Transform pos: -19.5,-235.5 parent: 2 - - uid: 3195 + - uid: 14659 components: - type: Transform pos: 5.5,-17.5 parent: 2 - - uid: 3208 + - uid: 14660 components: - type: Transform pos: -1.5,-162.5 parent: 2 - - uid: 3210 + - uid: 14661 components: - type: Transform pos: -18.5,-235.5 parent: 2 - - uid: 3220 + - uid: 14662 components: - type: Transform pos: 4.5,-187.5 parent: 2 - - uid: 3270 + - uid: 14663 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-223.5 parent: 2 - - uid: 3278 + - uid: 14664 components: - type: Transform pos: -0.5,-240.5 parent: 2 - - uid: 3539 + - uid: 14665 components: - type: Transform pos: -13.5,-239.5 parent: 2 - - uid: 3540 + - uid: 14666 components: - type: Transform pos: 4.5,-202.5 parent: 2 - - uid: 3542 + - uid: 14667 components: - type: Transform pos: 4.5,-201.5 parent: 2 - - uid: 3560 + - uid: 14668 components: - type: Transform pos: -3.5,-161.5 parent: 2 - - uid: 3606 + - uid: 14669 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-255.5 parent: 2 - - uid: 3651 + - uid: 14670 components: - type: Transform pos: -2.5,-187.5 parent: 2 - - uid: 3652 + - uid: 14671 components: - type: Transform pos: -1.5,-187.5 parent: 2 - - uid: 3654 + - uid: 14672 components: - type: Transform pos: -0.5,-186.5 parent: 2 - - uid: 3655 + - uid: 14673 components: - type: Transform pos: 1.5,-186.5 parent: 2 - - uid: 3657 + - uid: 14674 components: - type: Transform pos: 2.5,-187.5 parent: 2 - - uid: 3658 + - uid: 14675 components: - type: Transform pos: 3.5,-187.5 parent: 2 - - uid: 3659 + - uid: 14676 components: - type: Transform pos: 2.5,-188.5 parent: 2 - - uid: 3660 + - uid: 14677 components: - type: Transform pos: 1.5,-188.5 parent: 2 - - uid: 3661 + - uid: 14678 components: - type: Transform pos: -0.5,-188.5 parent: 2 - - uid: 3662 + - uid: 14679 components: - type: Transform pos: -1.5,-188.5 parent: 2 - - uid: 3667 + - uid: 14680 components: - type: Transform pos: 4.5,-188.5 parent: 2 - - uid: 3669 + - uid: 14681 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-331.5 parent: 2 - - uid: 3718 + - uid: 14682 components: - type: Transform pos: 5.5,-229.5 parent: 2 - - uid: 3753 + - uid: 14683 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-247.5 parent: 2 - - uid: 3754 + - uid: 14684 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-248.5 parent: 2 - - uid: 3755 + - uid: 14685 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-248.5 parent: 2 - - uid: 3774 + - uid: 14686 components: - type: Transform pos: -4.5,-199.5 parent: 2 - - uid: 3794 + - uid: 14687 components: - type: Transform pos: -7.5,-194.5 parent: 2 - - uid: 3798 + - uid: 14688 components: - type: Transform pos: -7.5,-198.5 parent: 2 - - uid: 3799 + - uid: 14689 components: - type: Transform pos: -7.5,-199.5 parent: 2 - - uid: 3801 + - uid: 14690 components: - type: Transform pos: -6.5,-200.5 parent: 2 - - uid: 3804 + - uid: 14691 components: - type: Transform pos: -6.5,-203.5 parent: 2 - - uid: 3807 + - uid: 14692 components: - type: Transform pos: -6.5,-206.5 parent: 2 - - uid: 3811 + - uid: 14693 components: - type: Transform pos: -3.5,-207.5 parent: 2 - - uid: 3812 + - uid: 14694 components: - type: Transform pos: -3.5,-208.5 parent: 2 - - uid: 3813 + - uid: 14695 components: - type: Transform pos: -2.5,-208.5 parent: 2 - - uid: 3814 + - uid: 14696 components: - type: Transform pos: -1.5,-208.5 parent: 2 - - uid: 3815 + - uid: 14697 components: - type: Transform pos: -1.5,-207.5 parent: 2 - - uid: 3816 + - uid: 14698 components: - type: Transform pos: -0.5,-207.5 parent: 2 - - uid: 3818 + - uid: 14699 components: - type: Transform pos: -0.5,-209.5 parent: 2 - - uid: 3820 + - uid: 14700 components: - type: Transform pos: 2.5,-208.5 parent: 2 - - uid: 3821 + - uid: 14701 components: - type: Transform pos: 2.5,-207.5 parent: 2 - - uid: 3822 + - uid: 14702 components: - type: Transform pos: 1.5,-207.5 parent: 2 - - uid: 3823 + - uid: 14703 components: - type: Transform pos: 1.5,-209.5 parent: 2 - - uid: 3824 + - uid: 14704 components: - type: Transform pos: 3.5,-208.5 parent: 2 - - uid: 3833 + - uid: 14705 components: - type: Transform pos: 7.5,-204.5 parent: 2 - - uid: 3834 + - uid: 14706 components: - type: Transform pos: 7.5,-203.5 parent: 2 - - uid: 3835 + - uid: 14707 components: - type: Transform pos: 7.5,-202.5 parent: 2 - - uid: 3841 + - uid: 14708 components: - type: Transform pos: 9.5,-148.5 parent: 2 - - uid: 3846 + - uid: 14709 components: - type: Transform pos: 7.5,-193.5 parent: 2 - - uid: 3847 + - uid: 14710 components: - type: Transform pos: 7.5,-192.5 parent: 2 - - uid: 3848 + - uid: 14711 components: - type: Transform pos: 7.5,-191.5 parent: 2 - - uid: 3855 + - uid: 14712 components: - type: Transform pos: -5.5,-203.5 parent: 2 - - uid: 3860 + - uid: 14713 components: - type: Transform pos: -4.5,-203.5 parent: 2 - - uid: 3861 + - uid: 14714 components: - type: Transform pos: -6.5,-199.5 parent: 2 - - uid: 3862 + - uid: 14715 components: - type: Transform pos: -5.5,-199.5 parent: 2 - - uid: 3863 + - uid: 14716 components: - type: Transform pos: -3.5,-199.5 parent: 2 - - uid: 3864 + - uid: 14717 components: - type: Transform pos: -3.5,-200.5 parent: 2 - - uid: 3865 + - uid: 14718 components: - type: Transform pos: -3.5,-203.5 parent: 2 - - uid: 3866 + - uid: 14719 components: - type: Transform pos: -3.5,-206.5 parent: 2 - - uid: 3868 + - uid: 14720 components: - type: Transform pos: -4.5,-207.5 parent: 2 - - uid: 3877 + - uid: 14721 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-344.5 parent: 2 - - uid: 3903 + - uid: 14722 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-337.5 parent: 2 - - uid: 3936 + - uid: 14723 components: - type: Transform pos: 1.5,-242.5 parent: 2 - - uid: 3994 + - uid: 14724 components: - type: Transform pos: 1.5,-240.5 parent: 2 - - uid: 4000 + - uid: 14725 components: - type: Transform pos: -0.5,-242.5 parent: 2 - - uid: 4022 + - uid: 14726 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-334.5 parent: 2 - - uid: 4086 + - uid: 14727 components: - type: Transform pos: -1.5,-232.5 parent: 2 - - uid: 4170 + - uid: 14728 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-14.5 parent: 2 - - uid: 4203 + - uid: 14729 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-251.5 parent: 2 - - uid: 4204 + - uid: 14730 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-246.5 parent: 2 - - uid: 4205 + - uid: 14731 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-247.5 parent: 2 - - uid: 4210 + - uid: 14732 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-249.5 parent: 2 - - uid: 4245 + - uid: 14733 components: - type: Transform pos: 3.5,-232.5 parent: 2 - - uid: 4246 + - uid: 14734 components: - type: Transform pos: 2.5,-232.5 parent: 2 - - uid: 4247 + - uid: 14735 components: - type: Transform pos: 2.5,-231.5 parent: 2 - - uid: 4248 + - uid: 14736 components: - type: Transform pos: 2.5,-229.5 parent: 2 - - uid: 4249 + - uid: 14737 components: - type: Transform pos: 2.5,-228.5 parent: 2 - - uid: 4250 + - uid: 14738 components: - type: Transform pos: 2.5,-227.5 parent: 2 - - uid: 4251 + - uid: 14739 components: - type: Transform pos: 2.5,-226.5 parent: 2 - - uid: 4254 + - uid: 14740 components: - type: Transform pos: 2.5,-223.5 parent: 2 - - uid: 4255 + - uid: 14741 components: - type: Transform pos: 2.5,-222.5 parent: 2 - - uid: 4256 + - uid: 14742 components: - type: Transform pos: 2.5,-221.5 parent: 2 - - uid: 4257 + - uid: 14743 components: - type: Transform pos: 2.5,-220.5 parent: 2 - - uid: 4258 + - uid: 14744 components: - type: Transform pos: 2.5,-218.5 parent: 2 - - uid: 4260 + - uid: 14745 components: - type: Transform pos: 2.5,-217.5 parent: 2 - - uid: 4261 + - uid: 14746 components: - type: Transform pos: -1.5,-217.5 parent: 2 - - uid: 4262 + - uid: 14747 components: - type: Transform pos: -1.5,-218.5 parent: 2 - - uid: 4265 + - uid: 14748 components: - type: Transform pos: -1.5,-221.5 parent: 2 - - uid: 4266 + - uid: 14749 components: - type: Transform pos: -1.5,-222.5 parent: 2 - - uid: 4267 + - uid: 14750 components: - type: Transform pos: -1.5,-223.5 parent: 2 - - uid: 4270 + - uid: 14751 components: - type: Transform pos: -1.5,-226.5 parent: 2 - - uid: 4271 + - uid: 14752 components: - type: Transform pos: -1.5,-227.5 parent: 2 - - uid: 4272 + - uid: 14753 components: - type: Transform pos: -1.5,-228.5 parent: 2 - - uid: 4273 + - uid: 14754 components: - type: Transform pos: -1.5,-229.5 parent: 2 - - uid: 4274 + - uid: 14755 components: - type: Transform pos: -1.5,-231.5 parent: 2 - - uid: 4275 + - uid: 14756 components: - type: Transform pos: -2.5,-232.5 parent: 2 - - uid: 4280 + - uid: 14757 components: - type: Transform pos: -4.5,-229.5 parent: 2 - - uid: 4281 + - uid: 14758 components: - type: Transform pos: -4.5,-228.5 parent: 2 - - uid: 4282 + - uid: 14759 components: - type: Transform pos: -2.5,-228.5 parent: 2 - - uid: 4283 + - uid: 14760 components: - type: Transform pos: -2.5,-221.5 parent: 2 - - uid: 4285 + - uid: 14761 components: - type: Transform pos: -4.5,-221.5 parent: 2 - - uid: 4286 + - uid: 14762 components: - type: Transform pos: -4.5,-220.5 parent: 2 - - uid: 4291 + - uid: 14763 components: - type: Transform pos: -2.5,-217.5 parent: 2 - - uid: 4296 + - uid: 14764 components: - type: Transform pos: -1.5,-233.5 parent: 2 - - uid: 4299 + - uid: 14765 components: - type: Transform pos: 2.5,-233.5 parent: 2 - - uid: 4300 + - uid: 14766 components: - type: Transform pos: 1.5,-234.5 parent: 2 - - uid: 4301 + - uid: 14767 components: - type: Transform pos: 2.5,-234.5 parent: 2 - - uid: 4302 + - uid: 14768 components: - type: Transform pos: -0.5,-234.5 parent: 2 - - uid: 4303 + - uid: 14769 components: - type: Transform pos: -1.5,-234.5 parent: 2 - - uid: 4304 + - uid: 14770 components: - type: Transform pos: -1.5,-235.5 parent: 2 - - uid: 4306 + - uid: 14771 components: - type: Transform pos: -0.5,-236.5 parent: 2 - - uid: 4308 + - uid: 14772 components: - type: Transform pos: 1.5,-236.5 parent: 2 - - uid: 4309 + - uid: 14773 components: - type: Transform pos: 2.5,-235.5 parent: 2 - - uid: 4310 + - uid: 14774 components: - type: Transform pos: 2.5,-216.5 parent: 2 - - uid: 4311 + - uid: 14775 components: - type: Transform pos: 2.5,-215.5 parent: 2 - - uid: 4313 + - uid: 14776 components: - type: Transform pos: 1.5,-215.5 parent: 2 - - uid: 4315 + - uid: 14777 components: - type: Transform pos: -0.5,-215.5 parent: 2 - - uid: 4316 + - uid: 14778 components: - type: Transform pos: -1.5,-216.5 parent: 2 - - uid: 4317 + - uid: 14779 components: - type: Transform pos: -1.5,-215.5 parent: 2 - - uid: 4318 + - uid: 14780 components: - type: Transform pos: -1.5,-214.5 parent: 2 - - uid: 4320 + - uid: 14781 components: - type: Transform pos: -0.5,-213.5 parent: 2 - - uid: 4321 + - uid: 14782 components: - type: Transform pos: 1.5,-213.5 parent: 2 - - uid: 4323 + - uid: 14783 components: - type: Transform pos: 2.5,-214.5 parent: 2 - - uid: 4329 + - uid: 14784 components: - type: Transform pos: -2.5,-262.5 parent: 2 - - uid: 4528 + - uid: 14785 components: - type: Transform pos: -20.5,-239.5 parent: 2 - - uid: 4541 + - uid: 14786 components: - type: Transform pos: -1.5,-242.5 parent: 2 - - uid: 4542 + - uid: 14787 components: - type: Transform pos: -1.5,-241.5 parent: 2 - - uid: 4543 + - uid: 14788 components: - type: Transform pos: 2.5,-241.5 parent: 2 - - uid: 4544 + - uid: 14789 components: - type: Transform pos: 2.5,-242.5 parent: 2 - - uid: 4548 + - uid: 14790 components: - type: Transform pos: -3.5,-262.5 parent: 2 - - uid: 4551 + - uid: 14791 components: - type: Transform pos: 2.5,-262.5 parent: 2 - - uid: 4572 + - uid: 14792 components: - type: Transform pos: 4.5,-241.5 parent: 2 - - uid: 4573 + - uid: 14793 components: - type: Transform pos: 3.5,-241.5 parent: 2 - - uid: 4575 + - uid: 14794 components: - type: Transform pos: 6.5,-241.5 parent: 2 - - uid: 4596 + - uid: 14795 components: - type: Transform pos: -3.5,-162.5 parent: 2 - - uid: 4616 + - uid: 14796 components: - type: Transform pos: 1.5,-263.5 parent: 2 - - uid: 4618 + - uid: 14797 components: - type: Transform pos: -5.5,-262.5 parent: 2 - - uid: 4619 + - uid: 14798 components: - type: Transform pos: -5.5,-263.5 parent: 2 - - uid: 4620 + - uid: 14799 components: - type: Transform pos: -3.5,-263.5 parent: 2 - - uid: 4621 + - uid: 14800 components: - type: Transform pos: -1.5,-262.5 parent: 2 - - uid: 4624 + - uid: 14801 components: - type: Transform pos: 3.5,-262.5 parent: 2 - - uid: 4625 + - uid: 14802 components: - type: Transform pos: 4.5,-262.5 parent: 2 - - uid: 4627 + - uid: 14803 components: - type: Transform pos: 4.5,-263.5 parent: 2 - - uid: 4628 + - uid: 14804 components: - type: Transform pos: 6.5,-263.5 parent: 2 - - uid: 4629 + - uid: 14805 components: - type: Transform pos: 6.5,-262.5 parent: 2 - - uid: 4631 + - uid: 14806 components: - type: Transform pos: -2.5,-241.5 parent: 2 - - uid: 4632 + - uid: 14807 components: - type: Transform pos: -3.5,-241.5 parent: 2 - - uid: 4633 + - uid: 14808 components: - type: Transform pos: -3.5,-242.5 parent: 2 - - uid: 4636 + - uid: 14809 components: - type: Transform pos: -5.5,-241.5 parent: 2 - - uid: 4637 + - uid: 14810 components: - type: Transform pos: -5.5,-242.5 parent: 2 - - uid: 4657 + - uid: 14811 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-121.5 parent: 2 - - uid: 4675 + - uid: 14812 components: - type: Transform pos: -0.5,-263.5 parent: 2 - - uid: 4728 + - uid: 14813 components: - type: Transform pos: 4.5,-186.5 parent: 2 - - uid: 4755 + - uid: 14814 components: - type: Transform pos: -21.5,-252.5 parent: 2 - - uid: 4869 + - uid: 14815 components: - type: Transform pos: 1.5,-261.5 parent: 2 - - uid: 4870 + - uid: 14816 components: - type: Transform pos: 5.5,-241.5 parent: 2 - - uid: 4872 + - uid: 14817 components: - type: Transform pos: -20.5,-258.5 parent: 2 - - uid: 4890 + - uid: 14818 components: - type: Transform pos: -19.5,-258.5 parent: 2 - - uid: 4902 + - uid: 14819 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-222.5 parent: 2 - - uid: 4976 + - uid: 14820 components: - type: Transform pos: -20.5,-254.5 parent: 2 - - uid: 4986 + - uid: 14821 components: - type: Transform pos: -22.5,-254.5 parent: 2 - - uid: 5007 + - uid: 14822 components: - type: Transform pos: -20.5,-256.5 parent: 2 - - uid: 5008 + - uid: 14823 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-255.5 parent: 2 - - uid: 5009 + - uid: 14824 components: - type: Transform pos: -19.5,-250.5 parent: 2 - - uid: 5010 + - uid: 14825 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-242.5 parent: 2 - - uid: 5011 + - uid: 14826 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-253.5 parent: 2 - - uid: 5013 + - uid: 14827 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-252.5 parent: 2 - - uid: 5015 + - uid: 14828 components: - type: Transform pos: -22.5,-255.5 parent: 2 - - uid: 5016 + - uid: 14829 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-257.5 parent: 2 - - uid: 5017 + - uid: 14830 components: - type: Transform pos: 19.5,-244.5 parent: 2 - - uid: 5030 + - uid: 14831 components: - type: Transform pos: -19.5,-252.5 parent: 2 - - uid: 5031 + - uid: 14832 components: - type: Transform pos: -22.5,-251.5 parent: 2 - - uid: 5032 + - uid: 14833 components: - type: Transform pos: -19.5,-256.5 parent: 2 - - uid: 5077 + - uid: 14834 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-333.5 parent: 2 - - uid: 5181 + - uid: 14835 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-336.5 parent: 2 - - uid: 5186 + - uid: 14836 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-261.5 parent: 2 - - uid: 5210 + - uid: 14837 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-261.5 parent: 2 - - uid: 5213 + - uid: 14838 components: - type: Transform pos: 6.5,-261.5 parent: 2 - - uid: 5214 + - uid: 14839 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-261.5 parent: 2 - - uid: 5278 + - uid: 14840 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-256.5 parent: 2 - - uid: 5279 + - uid: 14841 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-256.5 parent: 2 - - uid: 5280 + - uid: 14842 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-245.5 parent: 2 - - uid: 5281 + - uid: 14843 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-244.5 parent: 2 - - uid: 5283 + - uid: 14844 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-244.5 parent: 2 - - uid: 5289 + - uid: 14845 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-245.5 parent: 2 - - uid: 5290 + - uid: 14846 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-246.5 parent: 2 - - uid: 5313 + - uid: 14847 components: - type: Transform pos: 2.5,-261.5 parent: 2 - - uid: 5319 + - uid: 14848 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-242.5 parent: 2 - - uid: 5321 + - uid: 14849 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-264.5 parent: 2 - - uid: 5325 + - uid: 14850 components: - type: Transform pos: -1.5,-261.5 parent: 2 - - uid: 5326 + - uid: 14851 components: - type: Transform pos: -22.5,-257.5 parent: 2 - - uid: 5334 + - uid: 14852 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-259.5 parent: 2 - - uid: 5335 + - uid: 14853 components: - type: Transform pos: -21.5,-258.5 parent: 2 - - uid: 5360 + - uid: 14854 components: - type: Transform pos: 14.5,-255.5 parent: 2 - - uid: 5361 + - uid: 14855 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-249.5 parent: 2 - - uid: 5419 + - uid: 14856 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-334.5 parent: 2 - - uid: 5421 + - uid: 14857 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-335.5 parent: 2 - - uid: 5459 + - uid: 14858 components: - type: Transform pos: -1.5,-220.5 parent: 2 - - uid: 5694 + - uid: 14859 components: - type: Transform pos: -3.5,-12.5 parent: 2 - - uid: 5819 + - uid: 14860 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-112.5 parent: 2 - - uid: 5962 + - uid: 14861 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-240.5 parent: 2 - - uid: 6129 + - uid: 14862 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-19.5 parent: 2 - - uid: 6302 + - uid: 14863 components: - type: Transform pos: -10.5,-166.5 parent: 2 - - uid: 6393 + - uid: 14864 components: - type: Transform pos: 10.5,-116.5 parent: 2 - - uid: 6570 + - uid: 14865 components: - type: Transform pos: -6.5,-247.5 parent: 2 - - uid: 6674 + - uid: 14866 components: - type: Transform pos: -10.5,-257.5 parent: 2 - - uid: 6722 + - uid: 14867 components: - type: Transform pos: -22.5,-259.5 parent: 2 - - uid: 6732 + - uid: 14868 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-261.5 parent: 2 - - uid: 6733 + - uid: 14869 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-255.5 parent: 2 - - uid: 6734 + - uid: 14870 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-249.5 parent: 2 - - uid: 6735 + - uid: 14871 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-249.5 parent: 2 - - uid: 6739 + - uid: 14872 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-256.5 parent: 2 - - uid: 6740 + - uid: 14873 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-255.5 parent: 2 - - uid: 6741 + - uid: 14874 components: - type: Transform pos: 14.5,-249.5 parent: 2 - - uid: 6743 + - uid: 14875 components: - type: Transform pos: -10.5,-258.5 parent: 2 - - uid: 6763 + - uid: 14876 components: - type: Transform pos: -11.5,-258.5 parent: 2 - - uid: 6766 + - uid: 14877 components: - type: Transform pos: -12.5,-258.5 parent: 2 - - uid: 6776 + - uid: 14878 components: - type: Transform pos: -21.5,-266.5 parent: 2 - - uid: 6777 + - uid: 14879 components: - type: Transform pos: -21.5,-250.5 parent: 2 - - uid: 6801 + - uid: 14880 components: - type: Transform pos: -15.5,-236.5 parent: 2 - - uid: 6802 + - uid: 14881 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-252.5 parent: 2 - - uid: 6803 + - uid: 14882 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-253.5 parent: 2 - - uid: 6807 + - uid: 14883 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-257.5 parent: 2 - - uid: 6808 + - uid: 14884 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-258.5 parent: 2 - - uid: 6809 + - uid: 14885 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-258.5 parent: 2 - - uid: 6810 + - uid: 14886 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-259.5 parent: 2 - - uid: 6811 + - uid: 14887 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-259.5 parent: 2 - - uid: 6813 + - uid: 14888 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-250.5 parent: 2 - - uid: 6814 + - uid: 14889 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-261.5 parent: 2 - - uid: 6829 + - uid: 14890 components: - type: Transform pos: -10.5,-250.5 parent: 2 - - uid: 6899 + - uid: 14891 components: - type: Transform pos: -15.5,-238.5 parent: 2 - - uid: 6901 + - uid: 14892 components: - type: Transform pos: -22.5,-258.5 parent: 2 - - uid: 6903 + - uid: 14893 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-169.5 parent: 2 - - uid: 7002 + - uid: 14894 components: - type: Transform pos: 4.5,-200.5 parent: 2 - - uid: 7189 + - uid: 14895 components: - type: Transform pos: -0.5,-200.5 parent: 2 - - uid: 7207 + - uid: 14896 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-333.5 parent: 2 - - uid: 7255 + - uid: 14897 components: - type: Transform pos: 9.5,-337.5 parent: 2 - - uid: 7270 + - uid: 14898 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-16.5 parent: 2 - - uid: 7286 + - uid: 14899 components: - type: Transform pos: 8.5,-163.5 parent: 2 - - uid: 7290 + - uid: 14900 components: - type: Transform pos: 8.5,-161.5 parent: 2 - - uid: 7307 + - uid: 14901 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-19.5 parent: 2 - - uid: 7318 + - uid: 14902 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-239.5 parent: 2 - - uid: 7418 + - uid: 14903 components: - type: Transform pos: 15.5,-238.5 parent: 2 - - uid: 7435 + - uid: 14904 components: - type: Transform pos: -19.5,-254.5 parent: 2 - - uid: 7437 + - uid: 14905 components: - type: Transform pos: -5.5,-306.5 parent: 2 - - uid: 7503 + - uid: 14906 components: - type: Transform pos: 19.5,-266.5 parent: 2 - - uid: 7535 + - uid: 14907 components: - type: Transform pos: 18.5,-266.5 parent: 2 - - uid: 7536 + - uid: 14908 components: - type: Transform pos: 14.5,-261.5 parent: 2 - - uid: 7537 + - uid: 14909 components: - type: Transform pos: 14.5,-265.5 parent: 2 - - uid: 7539 + - uid: 14910 components: - type: Transform pos: 14.5,-264.5 parent: 2 - - uid: 7540 + - uid: 14911 components: - type: Transform pos: 14.5,-257.5 parent: 2 - - uid: 7541 + - uid: 14912 components: - type: Transform pos: 14.5,-258.5 parent: 2 - - uid: 7542 + - uid: 14913 components: - type: Transform pos: 14.5,-263.5 parent: 2 - - uid: 7544 + - uid: 14914 components: - type: Transform pos: 14.5,-262.5 parent: 2 - - uid: 7545 + - uid: 14915 components: - type: Transform pos: 16.5,-244.5 parent: 2 - - uid: 7579 + - uid: 14916 components: - type: Transform pos: 20.5,-255.5 parent: 2 - - uid: 7588 + - uid: 14917 components: - type: Transform pos: 21.5,-251.5 parent: 2 - - uid: 7624 + - uid: 14918 components: - type: Transform pos: 21.5,-254.5 parent: 2 - - uid: 7668 + - uid: 14919 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-223.5 parent: 2 - - uid: 7723 + - uid: 14920 components: - type: Transform pos: 20.5,-254.5 parent: 2 - - uid: 7725 + - uid: 14921 components: - type: Transform pos: 21.5,-252.5 parent: 2 - - uid: 7726 + - uid: 14922 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-258.5 parent: 2 - - uid: 7728 + - uid: 14923 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-261.5 parent: 2 - - uid: 7736 + - uid: 14924 components: - type: Transform pos: -12.5,-237.5 parent: 2 - - uid: 7737 + - uid: 14925 components: - type: Transform pos: -12.5,-238.5 parent: 2 - - uid: 7740 + - uid: 14926 components: - type: Transform pos: -13.5,-235.5 parent: 2 - - uid: 7744 + - uid: 14927 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-244.5 parent: 2 - - uid: 7745 + - uid: 14928 components: - type: Transform pos: 20.5,-265.5 parent: 2 - - uid: 7748 + - uid: 14929 components: - type: Transform pos: 20.5,-263.5 parent: 2 - - uid: 7749 + - uid: 14930 components: - type: Transform pos: 9.5,-342.5 parent: 2 - - uid: 7750 + - uid: 14931 components: - type: Transform pos: 9.5,-341.5 parent: 2 - - uid: 7751 + - uid: 14932 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-243.5 parent: 2 - - uid: 7752 + - uid: 14933 components: - type: Transform pos: 21.5,-253.5 parent: 2 - - uid: 7757 + - uid: 14934 components: - type: Transform pos: 20.5,-244.5 parent: 2 - - uid: 7760 + - uid: 14935 components: - type: Transform pos: 21.5,-250.5 parent: 2 - - uid: 7761 + - uid: 14936 components: - type: Transform pos: 20.5,-250.5 parent: 2 - - uid: 7762 + - uid: 14937 components: - type: Transform pos: 20.5,-243.5 parent: 2 - - uid: 7763 + - uid: 14938 components: - type: Transform pos: 20.5,-247.5 parent: 2 - - uid: 7766 + - uid: 14939 components: - type: Transform pos: 20.5,-242.5 parent: 2 - - uid: 7767 + - uid: 14940 components: - type: Transform pos: 19.5,-262.5 parent: 2 - - uid: 7784 + - uid: 14941 components: - type: Transform pos: -8.5,-188.5 parent: 2 - - uid: 7787 + - uid: 14942 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-255.5 parent: 2 - - uid: 7803 + - uid: 14943 components: - type: Transform pos: 20.5,-249.5 parent: 2 - - uid: 7808 + - uid: 14944 components: - type: Transform pos: -22.5,-253.5 parent: 2 - - uid: 7838 + - uid: 14945 components: - type: Transform pos: 14.5,-239.5 parent: 2 - - uid: 7841 + - uid: 14946 components: - type: Transform pos: 19.5,-238.5 parent: 2 - - uid: 7859 + - uid: 14947 components: - type: Transform pos: -21.5,-254.5 parent: 2 - - uid: 7861 + - uid: 14948 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-244.5 parent: 2 - - uid: 7877 + - uid: 14949 components: - type: Transform pos: 14.5,-259.5 parent: 2 - - uid: 7886 + - uid: 14950 components: - type: Transform pos: -7.5,-188.5 parent: 2 - - uid: 7895 + - uid: 14951 components: - type: Transform pos: -22.5,-256.5 parent: 2 - - uid: 7901 + - uid: 14952 components: - type: Transform pos: -20.5,-252.5 parent: 2 - - uid: 7902 + - uid: 14953 components: - type: Transform pos: -7.5,-192.5 parent: 2 - - uid: 7912 + - uid: 14954 components: - type: Transform pos: 15.5,-244.5 parent: 2 - - uid: 7913 + - uid: 14955 components: - type: Transform pos: 20.5,-262.5 parent: 2 - - uid: 7914 + - uid: 14956 components: - type: Transform pos: 20.5,-264.5 parent: 2 - - uid: 7923 + - uid: 14957 components: - type: Transform pos: 14.5,-244.5 parent: 2 - - uid: 7927 + - uid: 14958 components: - type: Transform pos: 14.5,-247.5 parent: 2 - - uid: 7936 + - uid: 14959 components: - type: Transform pos: 20.5,-248.5 parent: 2 - - uid: 7950 + - uid: 14960 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-160.5 parent: 2 - - uid: 7954 + - uid: 14961 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-289.5 parent: 2 - - uid: 7967 + - uid: 14962 components: - type: Transform pos: -18.5,-248.5 parent: 2 - - uid: 7998 + - uid: 14963 components: - type: Transform pos: -7.5,-168.5 parent: 2 - - uid: 8004 + - uid: 14964 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-252.5 parent: 2 - - uid: 8005 + - uid: 14965 components: - type: Transform pos: -19.5,-248.5 parent: 2 - - uid: 8006 + - uid: 14966 components: - type: Transform pos: 20.5,-261.5 parent: 2 - - uid: 8008 + - uid: 14967 components: - type: Transform pos: -7.5,-166.5 parent: 2 - - uid: 8021 + - uid: 14968 components: - type: Transform pos: 15.5,-266.5 parent: 2 - - uid: 8024 + - uid: 14969 components: - type: Transform pos: 5.5,-181.5 parent: 2 - - uid: 8054 + - uid: 14970 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-253.5 parent: 2 - - uid: 8055 + - uid: 14971 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-252.5 parent: 2 - - uid: 8056 + - uid: 14972 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-252.5 parent: 2 - - uid: 8104 + - uid: 14973 components: - type: Transform pos: -8.5,-250.5 parent: 2 - - uid: 8118 + - uid: 14974 components: - type: Transform pos: 15.5,-262.5 parent: 2 - - uid: 8120 + - uid: 14975 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-250.5 parent: 2 - - uid: 8121 + - uid: 14976 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-249.5 parent: 2 - - uid: 8124 + - uid: 14977 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-251.5 parent: 2 - - uid: 8128 + - uid: 14978 components: - type: Transform pos: 17.5,-266.5 parent: 2 - - uid: 8131 + - uid: 14979 components: - type: Transform pos: 16.5,-266.5 parent: 2 - - uid: 8147 + - uid: 14980 components: - type: Transform pos: -20.5,-248.5 parent: 2 - - uid: 8149 + - uid: 14981 components: - type: Transform pos: 8.5,-341.5 parent: 2 - - uid: 8153 + - uid: 14982 components: - type: Transform pos: -12.5,-235.5 parent: 2 - - uid: 8154 + - uid: 14983 components: - type: Transform pos: -0.5,-204.5 parent: 2 - - uid: 8155 + - uid: 14984 components: - type: Transform pos: 1.5,-204.5 parent: 2 - - uid: 8156 + - uid: 14985 components: - type: Transform pos: 2.5,-204.5 parent: 2 - - uid: 8158 + - uid: 14986 components: - type: Transform pos: 0.5,-204.5 parent: 2 - - uid: 8180 + - uid: 14987 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-254.5 parent: 2 - - uid: 8196 + - uid: 14988 components: - type: Transform pos: -1.5,-201.5 parent: 2 - - uid: 8200 + - uid: 14989 components: - type: Transform pos: -9.5,-192.5 parent: 2 - - uid: 8215 + - uid: 14990 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-252.5 parent: 2 - - uid: 8323 + - uid: 14991 components: - type: Transform pos: -1.5,-202.5 parent: 2 - - uid: 8346 + - uid: 14992 components: - type: Transform pos: -1.5,-203.5 parent: 2 - - uid: 8347 + - uid: 14993 components: - type: Transform pos: -1.5,-204.5 parent: 2 - - uid: 8370 + - uid: 14994 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-252.5 parent: 2 - - uid: 8374 + - uid: 14995 components: - type: Transform pos: -3.5,-188.5 parent: 2 - - uid: 8376 + - uid: 14996 components: - type: Transform pos: -2.5,-188.5 parent: 2 - - uid: 8406 + - uid: 14997 components: - type: Transform pos: 14.5,-241.5 parent: 2 - - uid: 8456 + - uid: 14998 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-254.5 parent: 2 - - uid: 8461 + - uid: 14999 components: - type: Transform pos: 4.5,-203.5 parent: 2 - - uid: 8468 + - uid: 15000 components: - type: Transform pos: 4.5,-204.5 parent: 2 - - uid: 8469 + - uid: 15001 components: - type: Transform pos: 3.5,-204.5 parent: 2 - - uid: 8477 + - uid: 15002 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-310.5 parent: 2 - - uid: 8491 + - uid: 15003 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-277.5 parent: 2 - - uid: 8493 + - uid: 15004 components: - type: Transform pos: 9.5,-287.5 parent: 2 - - uid: 8513 + - uid: 15005 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-253.5 parent: 2 - - uid: 8515 + - uid: 15006 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-255.5 parent: 2 - - uid: 8524 + - uid: 15007 components: - type: Transform pos: -18.5,-262.5 parent: 2 - - uid: 8539 + - uid: 15008 components: - type: Transform pos: 9.5,-286.5 parent: 2 - - uid: 8543 + - uid: 15009 components: - type: Transform pos: -7.5,-269.5 parent: 2 - - uid: 8544 + - uid: 15010 components: - type: Transform pos: -7.5,-270.5 parent: 2 - - uid: 8548 + - uid: 15011 components: - type: Transform pos: -5.5,-269.5 parent: 2 - - uid: 8550 + - uid: 15012 components: - type: Transform pos: -8.5,-275.5 parent: 2 - - uid: 8551 + - uid: 15013 components: - type: Transform pos: -6.5,-276.5 parent: 2 - - uid: 8556 + - uid: 15014 components: - type: Transform pos: -8.5,-271.5 parent: 2 - - uid: 8557 + - uid: 15015 components: - type: Transform pos: -18.5,-252.5 parent: 2 - - uid: 8563 + - uid: 15016 components: - type: Transform pos: -7.5,-276.5 parent: 2 - - uid: 8564 + - uid: 15017 components: - type: Transform pos: -5.5,-268.5 parent: 2 - - uid: 8565 + - uid: 15018 components: - type: Transform pos: -8.5,-270.5 parent: 2 - - uid: 8567 + - uid: 15019 components: - type: Transform pos: -8.5,-276.5 parent: 2 - - uid: 8568 + - uid: 15020 components: - type: Transform pos: -4.5,-268.5 parent: 2 - - uid: 8569 + - uid: 15021 components: - type: Transform pos: -3.5,-268.5 parent: 2 - - uid: 8570 + - uid: 15022 components: - type: Transform pos: -2.5,-268.5 parent: 2 - - uid: 8571 + - uid: 15023 components: - type: Transform pos: -1.5,-268.5 parent: 2 - - uid: 8572 + - uid: 15024 components: - type: Transform pos: -1.5,-269.5 parent: 2 - - uid: 8573 + - uid: 15025 components: - type: Transform pos: -0.5,-269.5 parent: 2 - - uid: 8574 + - uid: 15026 components: - type: Transform pos: 1.5,-269.5 parent: 2 - - uid: 8575 + - uid: 15027 components: - type: Transform pos: 2.5,-269.5 parent: 2 - - uid: 8576 + - uid: 15028 components: - type: Transform pos: 2.5,-268.5 parent: 2 - - uid: 8577 + - uid: 15029 components: - type: Transform pos: 1.5,-267.5 parent: 2 - - uid: 8578 + - uid: 15030 components: - type: Transform pos: -0.5,-267.5 parent: 2 - - uid: 8588 + - uid: 15031 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-281.5 parent: 2 - - uid: 8589 + - uid: 15032 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-282.5 parent: 2 - - uid: 8590 + - uid: 15033 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-282.5 parent: 2 - - uid: 8591 + - uid: 15034 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-283.5 parent: 2 - - uid: 8592 + - uid: 15035 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-287.5 parent: 2 - - uid: 8593 + - uid: 15036 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-288.5 parent: 2 - - uid: 8594 + - uid: 15037 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-288.5 parent: 2 - - uid: 8595 + - uid: 15038 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-289.5 parent: 2 - - uid: 8596 + - uid: 15039 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-289.5 parent: 2 - - uid: 8599 + - uid: 15040 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-289.5 parent: 2 - - uid: 8600 + - uid: 15041 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-289.5 parent: 2 - - uid: 8601 + - uid: 15042 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-289.5 parent: 2 - - uid: 8604 + - uid: 15043 components: - type: Transform pos: 14.5,-242.5 parent: 2 - - uid: 8605 + - uid: 15044 components: - type: Transform pos: -7.5,-310.5 parent: 2 - - uid: 8611 + - uid: 15045 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-252.5 parent: 2 - - uid: 8617 + - uid: 15046 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-257.5 parent: 2 - - uid: 8655 + - uid: 15047 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-288.5 parent: 2 - - uid: 8677 + - uid: 15048 components: - type: Transform pos: -18.5,-250.5 parent: 2 - - uid: 8679 + - uid: 15049 components: - type: Transform pos: 3.5,-200.5 parent: 2 - - uid: 8698 + - uid: 15050 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-118.5 parent: 2 - - uid: 8700 + - uid: 15051 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-288.5 parent: 2 - - uid: 8702 + - uid: 15052 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-288.5 parent: 2 - - uid: 8703 + - uid: 15053 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-288.5 parent: 2 - - uid: 8704 + - uid: 15054 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-290.5 parent: 2 - - uid: 8705 + - uid: 15055 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-290.5 parent: 2 - - uid: 8706 + - uid: 15056 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-289.5 parent: 2 - - uid: 8707 + - uid: 15057 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-289.5 parent: 2 - - uid: 8709 + - uid: 15058 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-290.5 parent: 2 - - uid: 8710 + - uid: 15059 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-290.5 parent: 2 - - uid: 8712 + - uid: 15060 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-289.5 parent: 2 - - uid: 8713 + - uid: 15061 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-288.5 parent: 2 - - uid: 8714 + - uid: 15062 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-288.5 parent: 2 - - uid: 8715 + - uid: 15063 components: - type: Transform pos: 9.5,-285.5 parent: 2 - - uid: 8716 + - uid: 15064 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-286.5 parent: 2 - - uid: 8717 + - uid: 15065 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-285.5 parent: 2 - - uid: 8718 + - uid: 15066 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-284.5 parent: 2 - - uid: 8719 + - uid: 15067 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-283.5 parent: 2 - - uid: 8720 + - uid: 15068 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-286.5 parent: 2 - - uid: 8721 + - uid: 15069 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-286.5 parent: 2 - - uid: 8722 + - uid: 15070 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-286.5 parent: 2 - - uid: 8723 + - uid: 15071 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-286.5 parent: 2 - - uid: 8724 + - uid: 15072 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-285.5 parent: 2 - - uid: 8725 + - uid: 15073 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-284.5 parent: 2 - - uid: 8726 + - uid: 15074 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-283.5 parent: 2 - - uid: 8727 + - uid: 15075 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-283.5 parent: 2 - - uid: 8729 + - uid: 15076 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-283.5 parent: 2 - - uid: 8732 + - uid: 15077 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-283.5 parent: 2 - - uid: 8733 + - uid: 15078 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-283.5 parent: 2 - - uid: 8734 + - uid: 15079 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-282.5 parent: 2 - - uid: 8736 + - uid: 15080 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-282.5 parent: 2 - - uid: 8738 + - uid: 15081 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-274.5 parent: 2 - - uid: 8744 + - uid: 15082 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-276.5 parent: 2 - - uid: 8745 + - uid: 15083 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-276.5 parent: 2 - - uid: 8746 + - uid: 15084 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-275.5 parent: 2 - - uid: 8748 + - uid: 15085 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-275.5 parent: 2 - - uid: 8749 + - uid: 15086 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-275.5 parent: 2 - - uid: 8750 + - uid: 15087 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-275.5 parent: 2 - - uid: 8751 + - uid: 15088 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-274.5 parent: 2 - - uid: 8752 + - uid: 15089 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-273.5 parent: 2 - - uid: 8753 + - uid: 15090 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-272.5 parent: 2 - - uid: 8754 + - uid: 15091 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-271.5 parent: 2 - - uid: 8755 + - uid: 15092 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-270.5 parent: 2 - - uid: 8756 + - uid: 15093 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-269.5 parent: 2 - - uid: 8757 + - uid: 15094 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-269.5 parent: 2 - - uid: 8758 + - uid: 15095 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-269.5 parent: 2 - - uid: 8759 + - uid: 15096 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-268.5 parent: 2 - - uid: 8760 + - uid: 15097 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-268.5 parent: 2 - - uid: 8761 + - uid: 15098 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-268.5 parent: 2 - - uid: 8770 + - uid: 15099 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-282.5 parent: 2 - - uid: 8774 + - uid: 15100 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-276.5 parent: 2 - - uid: 8781 + - uid: 15101 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-274.5 parent: 2 - - uid: 8807 + - uid: 15102 components: - type: Transform pos: -6.5,-188.5 parent: 2 - - uid: 8808 + - uid: 15103 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-271.5 parent: 2 - - uid: 8811 + - uid: 15104 components: - type: Transform pos: -5.5,-188.5 parent: 2 - - uid: 8851 + - uid: 15105 components: - type: Transform pos: -9.5,-188.5 parent: 2 - - uid: 8867 + - uid: 15106 components: - type: Transform pos: 9.5,-284.5 parent: 2 - - uid: 8898 + - uid: 15107 components: - type: Transform pos: -22.5,-250.5 parent: 2 - - uid: 8900 + - uid: 15108 components: - type: Transform pos: -12.5,-261.5 parent: 2 - - uid: 8904 + - uid: 15109 components: - type: Transform pos: -7.5,-149.5 parent: 2 - - uid: 8910 + - uid: 15110 components: - type: Transform pos: 14.5,-240.5 parent: 2 - - uid: 8942 + - uid: 15111 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-262.5 parent: 2 - - uid: 8969 + - uid: 15112 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-256.5 parent: 2 - - uid: 9020 + - uid: 15113 components: - type: Transform pos: 8.5,-288.5 parent: 2 - - uid: 9021 + - uid: 15114 components: - type: Transform pos: 9.5,-288.5 parent: 2 - - uid: 9087 + - uid: 15115 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-249.5 parent: 2 - - uid: 9366 + - uid: 15116 components: - type: Transform pos: 1.5,-294.5 parent: 2 - - uid: 9367 + - uid: 15117 components: - type: Transform pos: -0.5,-294.5 parent: 2 - - uid: 9368 + - uid: 15118 components: - type: Transform pos: 2.5,-295.5 parent: 2 - - uid: 9369 + - uid: 15119 components: - type: Transform pos: 2.5,-296.5 parent: 2 - - uid: 9370 + - uid: 15120 components: - type: Transform pos: -1.5,-296.5 parent: 2 - - uid: 9371 + - uid: 15121 components: - type: Transform pos: -1.5,-295.5 parent: 2 - - uid: 9372 + - uid: 15122 components: - type: Transform pos: -0.5,-296.5 parent: 2 - - uid: 9373 + - uid: 15123 components: - type: Transform pos: 1.5,-296.5 parent: 2 - - uid: 9380 + - uid: 15124 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-295.5 parent: 2 - - uid: 9381 + - uid: 15125 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-295.5 parent: 2 - - uid: 9382 + - uid: 15126 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-295.5 parent: 2 - - uid: 9383 + - uid: 15127 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-294.5 parent: 2 - - uid: 9384 + - uid: 15128 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-295.5 parent: 2 - - uid: 9387 + - uid: 15129 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-295.5 parent: 2 - - uid: 9389 + - uid: 15130 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-295.5 parent: 2 - - uid: 9390 + - uid: 15131 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-294.5 parent: 2 - - uid: 9401 + - uid: 15132 components: - type: Transform pos: -10.5,-338.5 parent: 2 - - uid: 9402 + - uid: 15133 components: - type: Transform pos: -10.5,-340.5 parent: 2 - - uid: 9403 + - uid: 15134 components: - type: Transform pos: -10.5,-337.5 parent: 2 - - uid: 9404 + - uid: 15135 components: - type: Transform pos: -9.5,-343.5 parent: 2 - - uid: 9405 + - uid: 15136 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-343.5 parent: 2 - - uid: 9406 + - uid: 15137 components: - type: Transform pos: -10.5,-342.5 parent: 2 - - uid: 9414 + - uid: 15138 components: - type: Transform pos: -9.5,-341.5 parent: 2 - - uid: 9415 + - uid: 15139 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-336.5 parent: 2 - - uid: 9417 + - uid: 15140 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-335.5 parent: 2 - - uid: 9463 + - uid: 15141 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-332.5 parent: 2 - - uid: 9473 + - uid: 15142 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-334.5 parent: 2 - - uid: 9475 + - uid: 15143 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-343.5 parent: 2 - - uid: 9476 + - uid: 15144 components: - type: Transform pos: 4.5,-341.5 parent: 2 - - uid: 9720 + - uid: 15145 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-296.5 parent: 2 - - uid: 9722 + - uid: 15146 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-296.5 parent: 2 - - uid: 9723 + - uid: 15147 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-295.5 parent: 2 - - uid: 9724 + - uid: 15148 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-296.5 parent: 2 - - uid: 9725 + - uid: 15149 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-296.5 parent: 2 - - uid: 9726 + - uid: 15150 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-296.5 parent: 2 - - uid: 9727 + - uid: 15151 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-296.5 parent: 2 - - uid: 9728 + - uid: 15152 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-296.5 parent: 2 - - uid: 9732 + - uid: 15153 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-300.5 parent: 2 - - uid: 9735 + - uid: 15154 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-300.5 parent: 2 - - uid: 9736 + - uid: 15155 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-301.5 parent: 2 - - uid: 9737 + - uid: 15156 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-302.5 parent: 2 - - uid: 9738 + - uid: 15157 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-303.5 parent: 2 - - uid: 9739 + - uid: 15158 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-304.5 parent: 2 - - uid: 9740 + - uid: 15159 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-305.5 parent: 2 - - uid: 9741 + - uid: 15160 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-305.5 parent: 2 - - uid: 9742 + - uid: 15161 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-262.5 parent: 2 - - uid: 9745 + - uid: 15162 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-310.5 parent: 2 - - uid: 9746 + - uid: 15163 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-308.5 parent: 2 - - uid: 9749 + - uid: 15164 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-309.5 parent: 2 - - uid: 9750 + - uid: 15165 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-309.5 parent: 2 - - uid: 9751 + - uid: 15166 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-311.5 parent: 2 - - uid: 9752 + - uid: 15167 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-312.5 parent: 2 - - uid: 9753 + - uid: 15168 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-313.5 parent: 2 - - uid: 9754 + - uid: 15169 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-314.5 parent: 2 - - uid: 9758 + - uid: 15170 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-318.5 parent: 2 - - uid: 9759 + - uid: 15171 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-319.5 parent: 2 - - uid: 9760 + - uid: 15172 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-310.5 parent: 2 - - uid: 9761 + - uid: 15173 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-319.5 parent: 2 - - uid: 9762 + - uid: 15174 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-319.5 parent: 2 - - uid: 9763 + - uid: 15175 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-319.5 parent: 2 - - uid: 9764 + - uid: 15176 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-319.5 parent: 2 - - uid: 9765 + - uid: 15177 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-320.5 parent: 2 - - uid: 9766 + - uid: 15178 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-320.5 parent: 2 - - uid: 9767 + - uid: 15179 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-321.5 parent: 2 - - uid: 9768 + - uid: 15180 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-322.5 parent: 2 - - uid: 9772 + - uid: 15181 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-320.5 parent: 2 - - uid: 9773 + - uid: 15182 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-321.5 parent: 2 - - uid: 9774 + - uid: 15183 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-322.5 parent: 2 - - uid: 9778 + - uid: 15184 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-321.5 parent: 2 - - uid: 9779 + - uid: 15185 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-321.5 parent: 2 - - uid: 9780 + - uid: 15186 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-320.5 parent: 2 - - uid: 9781 + - uid: 15187 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-320.5 parent: 2 - - uid: 9782 + - uid: 15188 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-320.5 parent: 2 - - uid: 9783 + - uid: 15189 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-320.5 parent: 2 - - uid: 9784 + - uid: 15190 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-321.5 parent: 2 - - uid: 9785 + - uid: 15191 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-322.5 parent: 2 - - uid: 9786 + - uid: 15192 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-322.5 parent: 2 - - uid: 9787 + - uid: 15193 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-321.5 parent: 2 - - uid: 9788 + - uid: 15194 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-321.5 parent: 2 - - uid: 9789 + - uid: 15195 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-320.5 parent: 2 - - uid: 9792 + - uid: 15196 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-321.5 parent: 2 - - uid: 9793 + - uid: 15197 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-320.5 parent: 2 - - uid: 9794 + - uid: 15198 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-320.5 parent: 2 - - uid: 9795 + - uid: 15199 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-320.5 parent: 2 - - uid: 9801 + - uid: 15200 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-316.5 parent: 2 - - uid: 9802 + - uid: 15201 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-316.5 parent: 2 - - uid: 9804 + - uid: 15202 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-310.5 parent: 2 - - uid: 9805 + - uid: 15203 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-311.5 parent: 2 - - uid: 9806 + - uid: 15204 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-312.5 parent: 2 - - uid: 9807 + - uid: 15205 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-312.5 parent: 2 - - uid: 9810 + - uid: 15206 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-312.5 parent: 2 - - uid: 9811 + - uid: 15207 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-316.5 parent: 2 - - uid: 9812 + - uid: 15208 components: - type: Transform pos: -8.5,-306.5 parent: 2 - - uid: 9820 + - uid: 15209 components: - type: Transform pos: -8.5,-192.5 parent: 2 - - uid: 9833 + - uid: 15210 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-298.5 parent: 2 - - uid: 9834 + - uid: 15211 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-297.5 parent: 2 - - uid: 9835 + - uid: 15212 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-296.5 parent: 2 - - uid: 9836 + - uid: 15213 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-296.5 parent: 2 - - uid: 9837 + - uid: 15214 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-296.5 parent: 2 - - uid: 9838 + - uid: 15215 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-296.5 parent: 2 - - uid: 9839 + - uid: 15216 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-295.5 parent: 2 - - uid: 9840 + - uid: 15217 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-298.5 parent: 2 - - uid: 9841 + - uid: 15218 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-298.5 parent: 2 - - uid: 9842 + - uid: 15219 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-298.5 parent: 2 - - uid: 9843 + - uid: 15220 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-298.5 parent: 2 - - uid: 9844 + - uid: 15221 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-298.5 parent: 2 - - uid: 9845 + - uid: 15222 components: - type: Transform pos: 8.5,-241.5 parent: 2 - - uid: 9849 + - uid: 15223 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-301.5 parent: 2 - - uid: 9858 + - uid: 15224 components: - type: Transform pos: -2.5,-306.5 parent: 2 - - uid: 9860 + - uid: 15225 components: - type: Transform pos: -8.5,-251.5 parent: 2 - - uid: 9862 + - uid: 15226 components: - type: Transform pos: -6.5,-306.5 parent: 2 - - uid: 9863 + - uid: 15227 components: - type: Transform pos: -7.5,-306.5 parent: 2 - - uid: 9866 + - uid: 15228 components: - type: Transform pos: -10.5,-305.5 parent: 2 - - uid: 9868 + - uid: 15229 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-305.5 parent: 2 - - uid: 9875 + - uid: 15230 components: - type: Transform pos: -9.5,-306.5 parent: 2 - - uid: 9876 + - uid: 15231 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-305.5 parent: 2 - - uid: 9877 + - uid: 15232 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-304.5 parent: 2 - - uid: 9878 + - uid: 15233 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-303.5 parent: 2 - - uid: 9879 + - uid: 15234 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-302.5 parent: 2 - - uid: 9880 + - uid: 15235 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-301.5 parent: 2 - - uid: 9881 + - uid: 15236 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-300.5 parent: 2 - - uid: 9882 + - uid: 15237 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-299.5 parent: 2 - - uid: 9883 + - uid: 15238 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-298.5 parent: 2 - - uid: 9884 + - uid: 15239 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-298.5 parent: 2 - - uid: 9885 + - uid: 15240 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-298.5 parent: 2 - - uid: 9886 + - uid: 15241 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-298.5 parent: 2 - - uid: 9887 + - uid: 15242 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-298.5 parent: 2 - - uid: 9888 + - uid: 15243 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-298.5 parent: 2 - - uid: 9889 + - uid: 15244 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-298.5 parent: 2 - - uid: 9890 + - uid: 15245 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-299.5 parent: 2 - - uid: 9891 + - uid: 15246 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-300.5 parent: 2 - - uid: 9892 + - uid: 15247 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-301.5 parent: 2 - - uid: 9893 + - uid: 15248 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-302.5 parent: 2 - - uid: 9894 + - uid: 15249 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-303.5 parent: 2 - - uid: 9896 + - uid: 15250 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-315.5 parent: 2 - - uid: 9897 + - uid: 15251 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-305.5 parent: 2 - - uid: 9898 + - uid: 15252 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-305.5 parent: 2 - - uid: 9900 + - uid: 15253 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-309.5 parent: 2 - - uid: 9901 + - uid: 15254 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-309.5 parent: 2 - - uid: 9909 + - uid: 15255 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-315.5 parent: 2 - - uid: 9910 + - uid: 15256 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-316.5 parent: 2 - - uid: 9911 + - uid: 15257 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-317.5 parent: 2 - - uid: 9912 + - uid: 15258 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-318.5 parent: 2 - - uid: 9914 + - uid: 15259 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-317.5 parent: 2 - - uid: 9915 + - uid: 15260 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-317.5 parent: 2 - - uid: 9916 + - uid: 15261 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-317.5 parent: 2 - - uid: 9918 + - uid: 15262 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-317.5 parent: 2 - - uid: 9919 + - uid: 15263 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-317.5 parent: 2 - - uid: 9920 + - uid: 15264 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-317.5 parent: 2 - - uid: 9921 + - uid: 15265 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-316.5 parent: 2 - - uid: 9922 + - uid: 15266 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-315.5 parent: 2 - - uid: 9923 + - uid: 15267 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-314.5 parent: 2 - - uid: 9924 + - uid: 15268 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-314.5 parent: 2 - - uid: 9925 + - uid: 15269 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-313.5 parent: 2 - - uid: 9926 + - uid: 15270 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-312.5 parent: 2 - - uid: 9927 + - uid: 15271 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-311.5 parent: 2 - - uid: 9928 + - uid: 15272 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-310.5 parent: 2 - - uid: 9929 + - uid: 15273 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-309.5 parent: 2 - - uid: 9930 + - uid: 15274 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-309.5 parent: 2 - - uid: 9931 + - uid: 15275 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-319.5 parent: 2 - - uid: 9933 + - uid: 15276 components: - type: Transform pos: -1.5,-318.5 parent: 2 - - uid: 9934 + - uid: 15277 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-316.5 parent: 2 - - uid: 9939 + - uid: 15278 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-311.5 parent: 2 - - uid: 10005 + - uid: 15279 components: - type: Transform pos: -7.5,-298.5 parent: 2 - - uid: 10013 + - uid: 15280 components: - type: Transform pos: 8.5,-360.5 parent: 2 - - uid: 10015 + - uid: 15281 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-313.5 parent: 2 - - uid: 10034 + - uid: 15282 components: - type: Transform pos: -7.5,-305.5 parent: 2 - - uid: 10036 + - uid: 15283 components: - type: Transform pos: -4.5,-310.5 parent: 2 - - uid: 10040 + - uid: 15284 components: - type: Transform pos: -4.5,-306.5 parent: 2 - - uid: 10045 + - uid: 15285 components: - type: Transform pos: -2.5,-310.5 parent: 2 - - uid: 10046 + - uid: 15286 components: - type: Transform pos: -7.5,-304.5 parent: 2 - - uid: 10050 + - uid: 15287 components: - type: Transform pos: -10.5,-301.5 parent: 2 - - uid: 10052 + - uid: 15288 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-306.5 parent: 2 - - uid: 10053 + - uid: 15289 components: - type: Transform pos: -7.5,-302.5 parent: 2 - - uid: 10058 + - uid: 15290 components: - type: Transform pos: -10.5,-306.5 parent: 2 - - uid: 10086 + - uid: 15291 components: - type: Transform pos: -7.5,-346.5 parent: 2 - - uid: 10099 + - uid: 15292 components: - type: Transform pos: -1.5,-305.5 parent: 2 - - uid: 10102 + - uid: 15293 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-299.5 parent: 2 - - uid: 10135 + - uid: 15294 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-298.5 parent: 2 - - uid: 10167 + - uid: 15295 components: - type: Transform pos: -8.5,-298.5 parent: 2 - - uid: 10278 + - uid: 15296 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-317.5 parent: 2 - - uid: 10476 + - uid: 15297 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-311.5 parent: 2 - - uid: 10553 + - uid: 15298 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-327.5 parent: 2 - - uid: 10584 + - uid: 15299 components: - type: Transform pos: 1.5,-326.5 parent: 2 - - uid: 10585 + - uid: 15300 components: - type: Transform pos: -0.5,-326.5 parent: 2 - - uid: 10587 + - uid: 15301 components: - type: Transform pos: 2.5,-327.5 parent: 2 - - uid: 10588 + - uid: 15302 components: - type: Transform pos: 2.5,-328.5 parent: 2 - - uid: 10589 + - uid: 15303 components: - type: Transform pos: 1.5,-328.5 parent: 2 - - uid: 10590 + - uid: 15304 components: - type: Transform pos: -0.5,-328.5 parent: 2 - - uid: 10591 + - uid: 15305 components: - type: Transform pos: -1.5,-328.5 parent: 2 - - uid: 10592 + - uid: 15306 components: - type: Transform pos: -1.5,-327.5 parent: 2 - - uid: 10593 + - uid: 15307 components: - type: Transform pos: -0.5,-349.5 parent: 2 - - uid: 10633 + - uid: 15308 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-346.5 parent: 2 - - uid: 10635 + - uid: 15309 components: - type: Transform pos: 7.5,-332.5 parent: 2 - - uid: 10637 + - uid: 15310 components: - type: Transform pos: 4.5,-349.5 parent: 2 - - uid: 10638 + - uid: 15311 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-327.5 parent: 2 - - uid: 10640 + - uid: 15312 components: - type: Transform pos: -5.5,-328.5 parent: 2 - - uid: 10641 + - uid: 15313 components: - type: Transform pos: 1.5,-334.5 parent: 2 - - uid: 10642 + - uid: 15314 components: - type: Transform pos: -6.5,-328.5 parent: 2 - - uid: 10643 + - uid: 15315 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-327.5 parent: 2 - - uid: 10645 + - uid: 15316 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-327.5 parent: 2 - - uid: 10647 + - uid: 15317 components: - type: Transform pos: 1.5,-349.5 parent: 2 - - uid: 10648 + - uid: 15318 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-327.5 parent: 2 - - uid: 10650 + - uid: 15319 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-327.5 parent: 2 - - uid: 10652 + - uid: 15320 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-328.5 parent: 2 - - uid: 10653 + - uid: 15321 components: - type: Transform pos: 6.5,-344.5 parent: 2 - - uid: 10654 + - uid: 15322 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-326.5 parent: 2 - - uid: 10656 + - uid: 15323 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-347.5 parent: 2 - - uid: 10660 + - uid: 15324 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-334.5 parent: 2 - - uid: 10661 + - uid: 15325 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-334.5 parent: 2 - - uid: 10662 + - uid: 15326 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-333.5 parent: 2 - - uid: 10663 + - uid: 15327 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-334.5 parent: 2 - - uid: 10664 + - uid: 15328 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-333.5 parent: 2 - - uid: 10665 + - uid: 15329 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-334.5 parent: 2 - - uid: 10666 + - uid: 15330 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-333.5 parent: 2 - - uid: 10667 + - uid: 15331 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-330.5 parent: 2 - - uid: 10668 + - uid: 15332 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-333.5 parent: 2 - - uid: 10669 + - uid: 15333 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-334.5 parent: 2 - - uid: 10670 + - uid: 15334 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-333.5 parent: 2 - - uid: 10671 + - uid: 15335 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-334.5 parent: 2 - - uid: 10672 + - uid: 15336 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-329.5 parent: 2 - - uid: 10679 + - uid: 15337 components: - type: Transform pos: -9.5,-339.5 parent: 2 - - uid: 10684 + - uid: 15338 components: - type: Transform pos: -9.5,-337.5 parent: 2 - - uid: 10685 + - uid: 15339 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-344.5 parent: 2 - - uid: 10686 + - uid: 15340 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-343.5 parent: 2 - - uid: 10687 + - uid: 15341 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-344.5 parent: 2 - - uid: 10688 + - uid: 15342 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-346.5 parent: 2 - - uid: 10689 + - uid: 15343 components: - type: Transform pos: 9.5,-338.5 parent: 2 - - uid: 10693 + - uid: 15344 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-335.5 parent: 2 - - uid: 10697 + - uid: 15345 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-343.5 parent: 2 - - uid: 10699 + - uid: 15346 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-344.5 parent: 2 - - uid: 10702 + - uid: 15347 components: - type: Transform pos: -0.5,-347.5 parent: 2 - - uid: 10703 + - uid: 15348 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-347.5 parent: 2 - - uid: 10704 + - uid: 15349 components: - type: Transform pos: -3.5,-349.5 parent: 2 - - uid: 10706 + - uid: 15350 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-345.5 parent: 2 - - uid: 10713 + - uid: 15351 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-328.5 parent: 2 - - uid: 10717 + - uid: 15352 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-343.5 parent: 2 - - uid: 10721 + - uid: 15353 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-346.5 parent: 2 - - uid: 10722 + - uid: 15354 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-347.5 parent: 2 - - uid: 10723 + - uid: 15355 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-347.5 parent: 2 - - uid: 10724 + - uid: 15356 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-347.5 parent: 2 - - uid: 10725 + - uid: 15357 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-347.5 parent: 2 - - uid: 10727 + - uid: 15358 components: - type: Transform pos: -1.5,-347.5 parent: 2 - - uid: 10728 + - uid: 15359 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-348.5 parent: 2 - - uid: 10729 + - uid: 15360 components: - type: Transform pos: -6.5,-348.5 parent: 2 - - uid: 10730 + - uid: 15361 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-348.5 parent: 2 - - uid: 10731 + - uid: 15362 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-347.5 parent: 2 - - uid: 10732 + - uid: 15363 components: - type: Transform pos: -5.5,-349.5 parent: 2 - - uid: 10733 + - uid: 15364 components: - type: Transform pos: 3.5,-328.5 parent: 2 - - uid: 10734 + - uid: 15365 components: - type: Transform pos: 3.5,-329.5 parent: 2 - - uid: 10737 + - uid: 15366 components: - type: Transform pos: -2.5,-348.5 parent: 2 - - uid: 10738 + - uid: 15367 components: - type: Transform pos: -6.5,-333.5 parent: 2 - - uid: 10739 + - uid: 15368 components: - type: Transform pos: -4.5,-348.5 parent: 2 - - uid: 10743 + - uid: 15369 components: - type: Transform pos: 3.5,-332.5 parent: 2 - - uid: 10745 + - uid: 15370 components: - type: Transform pos: -9.5,-340.5 parent: 2 - - uid: 10751 + - uid: 15371 components: - type: Transform pos: 6.5,-328.5 parent: 2 - - uid: 10758 + - uid: 15372 components: - type: Transform pos: -1.5,-334.5 parent: 2 - - uid: 10762 + - uid: 15373 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-344.5 parent: 2 - - uid: 10765 + - uid: 15374 components: - type: Transform pos: -6.5,-343.5 parent: 2 - - uid: 10767 + - uid: 15375 components: - type: Transform pos: -5.5,-343.5 parent: 2 - - uid: 10768 + - uid: 15376 components: - type: Transform pos: -3.5,-343.5 parent: 2 - - uid: 10769 + - uid: 15377 components: - type: Transform pos: -2.5,-343.5 parent: 2 - - uid: 10772 + - uid: 15378 components: - type: Transform pos: -5.5,-346.5 parent: 2 - - uid: 10773 + - uid: 15379 components: - type: Transform pos: -2.5,-347.5 parent: 2 - - uid: 10774 + - uid: 15380 components: - type: Transform pos: -3.5,-347.5 parent: 2 - - uid: 10775 + - uid: 15381 components: - type: Transform pos: -4.5,-347.5 parent: 2 - - uid: 10776 + - uid: 15382 components: - type: Transform pos: -5.5,-347.5 parent: 2 - - uid: 10777 + - uid: 15383 components: - type: Transform pos: -6.5,-347.5 parent: 2 - - uid: 10778 + - uid: 15384 components: - type: Transform pos: -6.5,-346.5 parent: 2 - - uid: 10779 - components: - - type: Transform - pos: -6.5,-345.5 - parent: 2 - - uid: 10780 + - uid: 15385 components: - type: Transform pos: -6.5,-344.5 parent: 2 - - uid: 10782 + - uid: 15386 components: - type: Transform pos: -7.5,-343.5 parent: 2 - - uid: 10783 + - uid: 15387 components: - type: Transform pos: -7.5,-344.5 parent: 2 - - uid: 10784 + - uid: 15388 components: - type: Transform pos: -7.5,-345.5 parent: 2 - - uid: 10785 + - uid: 15389 components: - type: Transform pos: -1.5,-348.5 parent: 2 - - uid: 10786 + - uid: 15390 components: - type: Transform pos: -5.5,-348.5 parent: 2 - - uid: 10787 + - uid: 15391 components: - type: Transform pos: 5.5,-348.5 parent: 2 - - uid: 10788 + - uid: 15392 components: - type: Transform pos: -3.5,-348.5 parent: 2 - - uid: 10789 + - uid: 15393 components: - type: Transform pos: 3.5,-348.5 parent: 2 - - uid: 10790 + - uid: 15394 components: - type: Transform pos: 2.5,-348.5 parent: 2 - - uid: 10791 + - uid: 15395 components: - type: Transform pos: 6.5,-349.5 parent: 2 - - uid: 10793 + - uid: 15396 components: - type: Transform pos: -3.5,-326.5 parent: 2 - - uid: 10795 + - uid: 15397 components: - type: Transform pos: -5.5,-326.5 parent: 2 - - uid: 10796 + - uid: 15398 components: - type: Transform pos: 4.5,-326.5 parent: 2 - - uid: 10812 + - uid: 15399 components: - type: Transform pos: -0.5,-343.5 parent: 2 - - uid: 10813 + - uid: 15400 components: - type: Transform pos: -1.5,-343.5 parent: 2 - - uid: 10816 + - uid: 15401 components: - type: Transform pos: -1.5,-344.5 parent: 2 - - uid: 10817 + - uid: 15402 components: - type: Transform pos: -1.5,-345.5 parent: 2 - - uid: 10818 + - uid: 15403 components: - type: Transform pos: -1.5,-346.5 parent: 2 - - uid: 10823 + - uid: 15404 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-342.5 parent: 2 - - uid: 10824 + - uid: 15405 components: - type: Transform pos: -7.5,-334.5 parent: 2 - - uid: 10827 + - uid: 15406 components: - type: Transform pos: -6.5,-19.5 parent: 2 - - uid: 10841 + - uid: 15407 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-353.5 parent: 2 - - uid: 10850 + - uid: 15408 components: - type: Transform pos: -9.5,-342.5 parent: 2 - - uid: 10851 + - uid: 15409 components: - type: Transform pos: -9.5,-338.5 parent: 2 - - uid: 10862 + - uid: 15410 components: - type: Transform pos: 8.5,-339.5 parent: 2 - - uid: 10917 + - uid: 15411 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-344.5 parent: 2 - - uid: 10918 + - uid: 15412 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-343.5 parent: 2 - - uid: 10919 + - uid: 15413 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-345.5 parent: 2 - - uid: 10921 + - uid: 15414 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-345.5 parent: 2 - - uid: 10924 + - uid: 15415 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-348.5 parent: 2 - - uid: 10926 + - uid: 15416 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-335.5 parent: 2 - - uid: 10927 + - uid: 15417 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-335.5 parent: 2 - - uid: 10930 + - uid: 15418 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-354.5 parent: 2 - - uid: 10998 + - uid: 15419 components: - type: Transform pos: -10.5,-339.5 parent: 2 - - uid: 10999 + - uid: 15420 components: - type: Transform pos: -10.5,-341.5 parent: 2 - - uid: 11044 + - uid: 15421 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-353.5 parent: 2 - - uid: 11068 + - uid: 15422 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-354.5 parent: 2 - - uid: 11071 + - uid: 15423 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-354.5 parent: 2 - - uid: 11072 + - uid: 15424 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-353.5 parent: 2 - - uid: 11079 + - uid: 15425 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-353.5 parent: 2 - - uid: 11083 + - uid: 15426 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-354.5 parent: 2 - - uid: 11084 + - uid: 15427 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-355.5 parent: 2 - - uid: 11085 + - uid: 15428 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-355.5 parent: 2 - - uid: 11086 + - uid: 15429 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-355.5 parent: 2 - - uid: 11087 + - uid: 15430 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-355.5 parent: 2 - - uid: 11088 + - uid: 15431 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-354.5 parent: 2 - - uid: 11115 + - uid: 15432 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-332.5 parent: 2 - - uid: 11119 + - uid: 15433 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-306.5 parent: 2 - - uid: 11122 + - uid: 15434 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-302.5 parent: 2 - - uid: 11147 + - uid: 15435 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-353.5 parent: 2 - - uid: 11148 + - uid: 15436 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-354.5 parent: 2 - - uid: 11149 + - uid: 15437 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-354.5 parent: 2 - - uid: 11150 + - uid: 15438 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-353.5 parent: 2 - - uid: 11151 + - uid: 15439 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-354.5 parent: 2 - - uid: 11152 + - uid: 15440 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-354.5 parent: 2 - - uid: 11153 + - uid: 15441 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-354.5 parent: 2 - - uid: 11155 + - uid: 15442 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-355.5 parent: 2 - - uid: 11156 + - uid: 15443 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-356.5 parent: 2 - - uid: 11157 + - uid: 15444 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-355.5 parent: 2 - - uid: 11158 + - uid: 15445 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-356.5 parent: 2 - - uid: 11159 + - uid: 15446 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-355.5 parent: 2 - - uid: 11160 + - uid: 15447 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-355.5 parent: 2 - - uid: 11161 + - uid: 15448 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-356.5 parent: 2 - - uid: 11162 + - uid: 15449 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-356.5 parent: 2 - - uid: 11163 + - uid: 15450 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-357.5 parent: 2 - - uid: 11164 + - uid: 15451 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-358.5 parent: 2 - - uid: 11165 + - uid: 15452 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-359.5 parent: 2 - - uid: 11166 + - uid: 15453 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-355.5 parent: 2 - - uid: 11167 + - uid: 15454 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-355.5 parent: 2 - - uid: 11168 + - uid: 15455 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-356.5 parent: 2 - - uid: 11169 + - uid: 15456 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-356.5 parent: 2 - - uid: 11170 + - uid: 15457 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-301.5 parent: 2 - - uid: 11171 + - uid: 15458 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-358.5 parent: 2 - - uid: 11172 + - uid: 15459 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-359.5 parent: 2 - - uid: 11179 + - uid: 15460 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-359.5 parent: 2 - - uid: 11180 + - uid: 15461 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-359.5 parent: 2 - - uid: 11181 + - uid: 15462 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-359.5 parent: 2 - - uid: 11182 + - uid: 15463 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-359.5 parent: 2 - - uid: 11183 + - uid: 15464 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-359.5 parent: 2 - - uid: 11184 + - uid: 15465 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-359.5 parent: 2 - - uid: 11185 + - uid: 15466 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-359.5 parent: 2 - - uid: 11186 + - uid: 15467 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-359.5 parent: 2 - - uid: 11189 + - uid: 15468 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-312.5 parent: 2 - - uid: 11190 + - uid: 15469 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-309.5 parent: 2 - - uid: 11191 + - uid: 15470 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-308.5 parent: 2 - - uid: 11192 + - uid: 15471 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-312.5 parent: 2 - - uid: 11193 + - uid: 15472 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-358.5 parent: 2 - - uid: 11196 + - uid: 15473 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-312.5 parent: 2 - - uid: 11197 + - uid: 15474 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-312.5 parent: 2 - - uid: 11198 + - uid: 15475 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-358.5 parent: 2 - - uid: 11199 + - uid: 15476 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-305.5 parent: 2 - - uid: 11202 + - uid: 15477 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-356.5 parent: 2 - - uid: 11206 + - uid: 15478 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-302.5 parent: 2 - - uid: 11207 + - uid: 15479 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-302.5 parent: 2 - - uid: 11215 + - uid: 15480 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-302.5 parent: 2 - - uid: 11216 + - uid: 15481 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-300.5 parent: 2 - - uid: 11219 + - uid: 15482 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-300.5 parent: 2 - - uid: 11223 + - uid: 15483 components: - type: Transform pos: 8.5,-361.5 parent: 2 - - uid: 11225 + - uid: 15484 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-362.5 parent: 2 - - uid: 11226 + - uid: 15485 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-362.5 parent: 2 - - uid: 11227 + - uid: 15486 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-362.5 parent: 2 - - uid: 11228 + - uid: 15487 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-362.5 parent: 2 - - uid: 11229 + - uid: 15488 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-362.5 parent: 2 - - uid: 11230 + - uid: 15489 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-365.5 parent: 2 - - uid: 11231 + - uid: 15490 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-365.5 parent: 2 - - uid: 11232 + - uid: 15491 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-365.5 parent: 2 - - uid: 11233 + - uid: 15492 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-365.5 parent: 2 - - uid: 11235 + - uid: 15493 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-368.5 parent: 2 - - uid: 11236 + - uid: 15494 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-368.5 parent: 2 - - uid: 11237 + - uid: 15495 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-368.5 parent: 2 - - uid: 11238 + - uid: 15496 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-368.5 parent: 2 - - uid: 11239 + - uid: 15497 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-367.5 parent: 2 - - uid: 11240 + - uid: 15498 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-369.5 parent: 2 - - uid: 11241 + - uid: 15499 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-369.5 parent: 2 - - uid: 11242 + - uid: 15500 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-368.5 parent: 2 - - uid: 11243 + - uid: 15501 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-368.5 parent: 2 - - uid: 11244 + - uid: 15502 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-365.5 parent: 2 - - uid: 11245 + - uid: 15503 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-365.5 parent: 2 - - uid: 11246 + - uid: 15504 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-365.5 parent: 2 - - uid: 11247 + - uid: 15505 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-365.5 parent: 2 - - uid: 11249 + - uid: 15506 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-362.5 parent: 2 - - uid: 11250 + - uid: 15507 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-362.5 parent: 2 - - uid: 11251 + - uid: 15508 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-362.5 parent: 2 - - uid: 11252 + - uid: 15509 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-362.5 parent: 2 - - uid: 11254 + - uid: 15510 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-368.5 parent: 2 - - uid: 11255 + - uid: 15511 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-368.5 parent: 2 - - uid: 11257 + - uid: 15512 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-361.5 parent: 2 - - uid: 11267 + - uid: 15513 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-301.5 parent: 2 - - uid: 11268 + - uid: 15514 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-300.5 parent: 2 - - uid: 11275 + - uid: 15515 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-373.5 parent: 2 - - uid: 11276 + - uid: 15516 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-374.5 parent: 2 - - uid: 11277 + - uid: 15517 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-374.5 parent: 2 - - uid: 11278 + - uid: 15518 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-375.5 parent: 2 - - uid: 11279 + - uid: 15519 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-376.5 parent: 2 - - uid: 11280 + - uid: 15520 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-375.5 parent: 2 - - uid: 11281 + - uid: 15521 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-376.5 parent: 2 - - uid: 11282 + - uid: 15522 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-375.5 parent: 2 - - uid: 11283 + - uid: 15523 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-374.5 parent: 2 - - uid: 11284 + - uid: 15524 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-375.5 parent: 2 - - uid: 11289 + - uid: 15525 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-374.5 parent: 2 - - uid: 11290 + - uid: 15526 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-375.5 parent: 2 - - uid: 11292 + - uid: 15527 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-376.5 parent: 2 - - uid: 11293 + - uid: 15528 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-300.5 parent: 2 - - uid: 11294 + - uid: 15529 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-376.5 parent: 2 - - uid: 11295 + - uid: 15530 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-375.5 parent: 2 - - uid: 11296 + - uid: 15531 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-375.5 parent: 2 - - uid: 11297 + - uid: 15532 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-376.5 parent: 2 - - uid: 11298 + - uid: 15533 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-374.5 parent: 2 - - uid: 11299 + - uid: 15534 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-375.5 parent: 2 - - uid: 11300 + - uid: 15535 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-375.5 parent: 2 - - uid: 11301 + - uid: 15536 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-374.5 parent: 2 - - uid: 11302 + - uid: 15537 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-376.5 parent: 2 - - uid: 11303 + - uid: 15538 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-374.5 parent: 2 - - uid: 11304 + - uid: 15539 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-373.5 parent: 2 - - uid: 11305 + - uid: 15540 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-367.5 parent: 2 - - uid: 11315 + - uid: 15541 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-296.5 parent: 2 - - uid: 11321 + - uid: 15542 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-296.5 parent: 2 - - uid: 11333 + - uid: 15543 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-296.5 parent: 2 - - uid: 11334 + - uid: 15544 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-296.5 parent: 2 - - uid: 11335 + - uid: 15545 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-296.5 parent: 2 - - uid: 11336 + - uid: 15546 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-296.5 parent: 2 - - uid: 11337 + - uid: 15547 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-296.5 parent: 2 - - uid: 11338 + - uid: 15548 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-300.5 parent: 2 - - uid: 11339 + - uid: 15549 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-300.5 parent: 2 - - uid: 11340 + - uid: 15550 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-318.5 parent: 2 - - uid: 11341 + - uid: 15551 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-318.5 parent: 2 - - uid: 11342 + - uid: 15552 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-366.5 parent: 2 - - uid: 11343 + - uid: 15553 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-366.5 parent: 2 - - uid: 11344 + - uid: 15554 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-318.5 parent: 2 - - uid: 11347 + - uid: 15555 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-318.5 parent: 2 - - uid: 11348 + - uid: 15556 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-318.5 parent: 2 - - uid: 11351 + - uid: 15557 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-318.5 parent: 2 - - uid: 11354 + - uid: 15558 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-369.5 parent: 2 - - uid: 11355 + - uid: 15559 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-369.5 parent: 2 - - uid: 11356 + - uid: 15560 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-369.5 parent: 2 - - uid: 11357 + - uid: 15561 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-368.5 parent: 2 - - uid: 11358 + - uid: 15562 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-367.5 parent: 2 - - uid: 11359 + - uid: 15563 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-367.5 parent: 2 - - uid: 11360 + - uid: 15564 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-369.5 parent: 2 - - uid: 11361 + - uid: 15565 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-369.5 parent: 2 - - uid: 11362 + - uid: 15566 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-369.5 parent: 2 - - uid: 11363 + - uid: 15567 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-368.5 parent: 2 - - uid: 11364 + - uid: 15568 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-367.5 parent: 2 - - uid: 11365 + - uid: 15569 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-367.5 parent: 2 - - uid: 11366 + - uid: 15570 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-318.5 parent: 2 - - uid: 11368 + - uid: 15571 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-314.5 parent: 2 - - uid: 11369 + - uid: 15572 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-361.5 parent: 2 - - uid: 11371 + - uid: 15573 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-362.5 parent: 2 - - uid: 11372 + - uid: 15574 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-361.5 parent: 2 - - uid: 11373 + - uid: 15575 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-314.5 parent: 2 - - uid: 11374 + - uid: 15576 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-314.5 parent: 2 - - uid: 11375 + - uid: 15577 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-314.5 parent: 2 - - uid: 11376 + - uid: 15578 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-314.5 parent: 2 - - uid: 11410 + - uid: 15579 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-314.5 parent: 2 - - uid: 11420 + - uid: 15580 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-305.5 parent: 2 - - uid: 11421 + - uid: 15581 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-305.5 parent: 2 - - uid: 11422 + - uid: 15582 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-305.5 parent: 2 - - uid: 11423 + - uid: 15583 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-309.5 parent: 2 - - uid: 11424 + - uid: 15584 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-309.5 parent: 2 - - uid: 11426 + - uid: 15585 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-309.5 parent: 2 - - uid: 11427 + - uid: 15586 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-304.5 parent: 2 - - uid: 11428 + - uid: 15587 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-303.5 parent: 2 - - uid: 11432 + - uid: 15588 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-305.5 parent: 2 - - uid: 11448 + - uid: 15589 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-374.5 parent: 2 - - uid: 11457 + - uid: 15590 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-375.5 parent: 2 - - uid: 11504 + - uid: 15591 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-309.5 parent: 2 - - uid: 11505 + - uid: 15592 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-307.5 parent: 2 - - uid: 11506 + - uid: 15593 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-306.5 parent: 2 - - uid: 11509 + - uid: 15594 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-308.5 parent: 2 - - uid: 11519 + - uid: 15595 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-307.5 parent: 2 - - uid: 11549 + - uid: 15596 components: - type: Transform pos: 6.5,-132.5 parent: 2 - - uid: 11716 + - uid: 15597 components: - type: Transform pos: 20.5,-241.5 parent: 2 - - uid: 11769 + - uid: 15598 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-307.5 parent: 2 - - uid: 11773 + - uid: 15599 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-307.5 parent: 2 - - uid: 11776 + - uid: 15600 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-311.5 parent: 2 - - uid: 11777 + - uid: 15601 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-310.5 parent: 2 - - uid: 11793 + - uid: 15602 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-311.5 parent: 2 - - uid: 11808 + - uid: 15603 components: - type: Transform pos: 1.5,-380.5 parent: 2 - - uid: 11809 + - uid: 15604 components: - type: Transform pos: -0.5,-380.5 parent: 2 - - uid: 11816 + - uid: 15605 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-310.5 parent: 2 - - uid: 11819 + - uid: 15606 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-382.5 parent: 2 - - uid: 11825 + - uid: 15607 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-304.5 parent: 2 - - uid: 11829 + - uid: 15608 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-381.5 parent: 2 - - uid: 11840 + - uid: 15609 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-382.5 parent: 2 - - uid: 11841 + - uid: 15610 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-381.5 parent: 2 - - uid: 11842 + - uid: 15611 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-382.5 parent: 2 - - uid: 11843 + - uid: 15612 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-382.5 parent: 2 - - uid: 11868 + - uid: 15613 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-381.5 parent: 2 - - uid: 11869 + - uid: 15614 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-380.5 parent: 2 - - uid: 11870 + - uid: 15615 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-381.5 parent: 2 - - uid: 11871 + - uid: 15616 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-380.5 parent: 2 - - uid: 11872 + - uid: 15617 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-381.5 parent: 2 - - uid: 11873 + - uid: 15618 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-381.5 parent: 2 - - uid: 11874 + - uid: 15619 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-380.5 parent: 2 - - uid: 11875 + - uid: 15620 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-381.5 parent: 2 - - uid: 11876 + - uid: 15621 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-381.5 parent: 2 - - uid: 11877 + - uid: 15622 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-380.5 parent: 2 - - uid: 11878 + - uid: 15623 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-381.5 parent: 2 - - uid: 11879 + - uid: 15624 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-381.5 parent: 2 - - uid: 11884 + - uid: 15625 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-382.5 parent: 2 - - uid: 11886 + - uid: 15626 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-382.5 parent: 2 - - uid: 11887 + - uid: 15627 components: - type: Transform pos: -10.5,-163.5 parent: 2 - - uid: 11895 + - uid: 15628 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-385.5 parent: 2 - - uid: 11896 + - uid: 15629 components: - type: Transform pos: -18.5,-256.5 parent: 2 - - uid: 11897 + - uid: 15630 components: - type: Transform pos: -18.5,-258.5 parent: 2 - - uid: 11900 + - uid: 15631 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-384.5 parent: 2 - - uid: 11902 + - uid: 15632 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-386.5 parent: 2 - - uid: 11909 + - uid: 15633 components: - type: Transform pos: -7.5,-161.5 parent: 2 - - uid: 11910 + - uid: 15634 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-383.5 parent: 2 - - uid: 11918 + - uid: 15635 components: - type: Transform pos: -22.5,-262.5 parent: 2 - - uid: 11919 + - uid: 15636 components: - type: Transform pos: -21.5,-262.5 parent: 2 - - uid: 11921 + - uid: 15637 components: - type: Transform pos: -12.5,-265.5 parent: 2 - - uid: 11922 + - uid: 15638 components: - type: Transform pos: -19.5,-262.5 parent: 2 - - uid: 11924 + - uid: 15639 components: - type: Transform pos: -22.5,-261.5 parent: 2 - - uid: 11925 + - uid: 15640 components: - type: Transform pos: -22.5,-260.5 parent: 2 - - uid: 11929 + - uid: 15641 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-384.5 parent: 2 - - uid: 11944 + - uid: 15642 components: - type: Transform pos: -6.5,-385.5 parent: 2 - - uid: 11954 + - uid: 15643 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-386.5 parent: 2 - - uid: 11956 + - uid: 15644 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-342.5 parent: 2 - - uid: 11960 + - uid: 15645 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-303.5 parent: 2 - - uid: 11961 + - uid: 15646 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-313.5 parent: 2 - - uid: 11962 + - uid: 15647 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-313.5 parent: 2 - - uid: 11963 + - uid: 15648 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-307.5 parent: 2 - - uid: 11965 + - uid: 15649 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-340.5 parent: 2 - - uid: 11973 + - uid: 15650 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-339.5 parent: 2 - - uid: 11989 + - uid: 15651 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-382.5 parent: 2 - - uid: 11993 + - uid: 15652 components: - type: Transform pos: -10.5,-161.5 parent: 2 - - uid: 11997 + - uid: 15653 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-383.5 parent: 2 - - uid: 12056 + - uid: 15654 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-336.5 parent: 2 - - uid: 12090 + - uid: 15655 components: - type: Transform pos: -8.5,-247.5 parent: 2 - - uid: 12095 + - uid: 15656 components: - type: Transform pos: -7.5,-247.5 parent: 2 - - uid: 12100 + - uid: 15657 components: - type: Transform pos: -14.5,-266.5 parent: 2 - - uid: 12102 + - uid: 15658 components: - type: Transform pos: -13.5,-266.5 parent: 2 - - uid: 12103 + - uid: 15659 components: - type: Transform pos: -22.5,-266.5 parent: 2 - - uid: 12105 + - uid: 15660 components: - type: Transform pos: -18.5,-266.5 parent: 2 - - uid: 12149 + - uid: 15661 components: - type: Transform pos: -6.5,-128.5 parent: 2 - - uid: 12261 + - uid: 15662 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-119.5 parent: 2 - - uid: 12326 + - uid: 15663 components: - type: Transform pos: -22.5,-252.5 parent: 2 - - uid: 12469 + - uid: 15664 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-342.5 parent: 2 - - uid: 12496 + - uid: 15665 components: - type: Transform pos: -16.5,-266.5 parent: 2 - - uid: 12678 + - uid: 15666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-345.5 + parent: 2 + - uid: 15667 components: - type: Transform pos: -19.5,-266.5 parent: 2 - - uid: 12685 + - uid: 15668 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-343.5 parent: 2 - - uid: 12687 + - uid: 15669 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-337.5 parent: 2 - - uid: 12771 + - uid: 15670 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-333.5 parent: 2 - - uid: 12801 + - uid: 15671 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-336.5 parent: 2 - - uid: 12817 + - uid: 15672 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-344.5 parent: 2 - - uid: 12818 + - uid: 15673 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-342.5 parent: 2 - - uid: 12819 + - uid: 15674 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-341.5 parent: 2 - - uid: 12820 + - uid: 15675 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-339.5 parent: 2 - - uid: 12821 + - uid: 15676 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-337.5 parent: 2 - - uid: 12824 + - uid: 15677 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-340.5 parent: 2 - - uid: 12825 + - uid: 15678 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-341.5 parent: 2 - - uid: 12870 + - uid: 15679 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-334.5 parent: 2 - - uid: 12872 + - uid: 15680 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-339.5 parent: 2 - - uid: 12910 + - uid: 15681 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-338.5 parent: 2 - - uid: 12912 + - uid: 15682 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-346.5 parent: 2 - - uid: 12913 + - uid: 15683 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-339.5 parent: 2 - - uid: 12995 + - uid: 15684 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-333.5 parent: 2 - - uid: 13074 + - uid: 15685 components: - type: Transform pos: 5.5,-344.5 parent: 2 - - uid: 13275 + - uid: 15686 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-333.5 parent: 2 - - uid: 13276 + - uid: 15687 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-340.5 parent: 2 - - uid: 13278 + - uid: 15688 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-337.5 parent: 2 - - uid: 13290 + - uid: 15689 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-264.5 parent: 2 - - uid: 13293 + - uid: 15690 components: - type: Transform pos: -9.5,-310.5 parent: 2 - - uid: 13294 + - uid: 15691 components: - type: Transform pos: -8.5,-310.5 parent: 2 - - uid: 13295 + - uid: 15692 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-298.5 parent: 2 - - uid: 13301 + - uid: 15693 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-300.5 parent: 2 - - uid: 13309 + - uid: 15694 components: - type: Transform pos: 7.5,-121.5 parent: 2 - - uid: 13327 + - uid: 15695 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-121.5 parent: 2 - - uid: 13330 + - uid: 15696 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-299.5 parent: 2 - - uid: 13331 + - uid: 15697 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-264.5 parent: 2 - - uid: 13369 + - uid: 15698 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-120.5 parent: 2 - - uid: 13375 + - uid: 15699 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-261.5 parent: 2 - - uid: 13406 + - uid: 15700 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-338.5 parent: 2 - - uid: 13408 + - uid: 15701 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-121.5 parent: 2 - - uid: 13409 + - uid: 15702 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-332.5 parent: 2 - - uid: 13460 + - uid: 15703 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-163.5 parent: 2 - - uid: 13462 + - uid: 15704 components: - type: Transform pos: 7.5,-241.5 parent: 2 - - uid: 13961 + - uid: 15705 components: - type: Transform pos: 20.5,-239.5 parent: 2 - - uid: 13993 + - uid: 15706 components: - type: Transform pos: 20.5,-240.5 parent: 2 - - uid: 14020 + - uid: 15707 components: - type: Transform pos: -17.5,-266.5 parent: 2 - - uid: 14050 + - uid: 15708 components: - type: Transform pos: -20.5,-262.5 parent: 2 - - uid: 14089 + - uid: 15709 components: - type: Transform pos: -15.5,-266.5 parent: 2 - - uid: 14091 + - uid: 15710 components: - type: Transform pos: -13.5,-265.5 parent: 2 - - uid: 14201 + - uid: 15711 components: - type: Transform pos: -20.5,-266.5 parent: 2 - - uid: 14288 + - uid: 15712 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-181.5 parent: 2 - - uid: 14290 + - uid: 15713 components: - type: Transform pos: -10.5,-168.5 parent: 2 - - uid: 14301 + - uid: 15714 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-341.5 parent: 2 - - uid: 14781 + - uid: 15715 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-24.5 parent: 2 - - uid: 14911 + - uid: 15716 components: - type: Transform pos: -7.5,-148.5 parent: 2 - - uid: 14916 + - uid: 15717 components: - type: Transform pos: -7.5,-144.5 parent: 2 - - uid: 15795 + - uid: 15718 components: - type: Transform pos: -9.5,-336.5 parent: 2 - - uid: 15796 + - uid: 15719 components: - type: Transform pos: -8.5,-336.5 parent: 2 - - uid: 16471 + - uid: 15720 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-160.5 parent: 2 - - uid: 16472 + - uid: 15721 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-160.5 parent: 2 - - uid: 16473 + - uid: 15722 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-169.5 parent: 2 - - uid: 16474 + - uid: 15723 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-169.5 parent: 2 - - uid: 16475 + - uid: 15724 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-169.5 parent: 2 - - uid: 16484 + - uid: 15725 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-160.5 parent: 2 - - uid: 16549 + - uid: 15726 components: - type: Transform pos: -21.5,-256.5 parent: 2 - - uid: 16581 + - uid: 15727 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-78.5 parent: 2 - - uid: 16584 + - uid: 15728 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-78.5 parent: 2 - - uid: 16623 + - uid: 15729 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-78.5 parent: 2 - - uid: 16624 + - uid: 15730 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-78.5 parent: 2 - - uid: 16628 + - uid: 15731 components: - type: Transform pos: -3.5,-187.5 parent: 2 - - uid: 16716 + - uid: 15732 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-24.5 parent: 2 - - uid: 16740 + - uid: 15733 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-24.5 parent: 2 - - uid: 16900 + - uid: 15734 components: - type: Transform pos: -3.5,-186.5 parent: 2 - - uid: 16901 + - uid: 15735 components: - type: Transform pos: -5.5,-187.5 parent: 2 - - uid: 16902 + - uid: 15736 components: - type: Transform pos: -5.5,-186.5 parent: 2 - proto: WallReinforcedDiagonal entities: - - uid: 145 + - uid: 15737 components: - type: Transform pos: -6.5,2.5 parent: 2 - - uid: 147 + - uid: 15738 components: - type: Transform pos: -7.5,-14.5 parent: 2 - - uid: 260 + - uid: 15739 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 324 + - uid: 15740 components: - type: Transform pos: -5.5,3.5 parent: 2 - - uid: 325 + - uid: 15741 components: - type: Transform pos: -6.5,2.5 parent: 2 - - uid: 342 + - uid: 15742 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 parent: 2 - - uid: 359 + - uid: 15743 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-15.5 parent: 2 - - uid: 368 + - uid: 15744 components: - type: Transform pos: -5.5,3.5 parent: 2 - - uid: 375 + - uid: 15745 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 2 - - uid: 376 + - uid: 15746 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 2 - - uid: 381 + - uid: 15747 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-14.5 parent: 2 - - uid: 382 + - uid: 15748 components: - type: Transform pos: -7.5,-0.5 parent: 2 - - uid: 385 + - uid: 15749 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-0.5 parent: 2 - - uid: 425 + - uid: 15750 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-20.5 parent: 2 - - uid: 430 + - uid: 15751 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-24.5 parent: 2 - - uid: 571 + - uid: 15752 components: - type: Transform pos: -1.5,-24.5 parent: 2 - - uid: 599 + - uid: 15753 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-101.5 parent: 2 - - uid: 642 + - uid: 15754 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-47.5 parent: 2 - - uid: 647 + - uid: 15755 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-47.5 parent: 2 - - uid: 659 + - uid: 15756 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-51.5 parent: 2 - - uid: 672 + - uid: 15757 components: - type: Transform pos: -1.5,-51.5 parent: 2 - - uid: 941 + - uid: 15758 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-223.5 parent: 2 - - uid: 943 + - uid: 15759 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-58.5 parent: 2 - - uid: 956 + - uid: 15760 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-67.5 parent: 2 - - uid: 978 + - uid: 15761 components: - type: Transform pos: -6.5,-25.5 parent: 2 - - uid: 979 + - uid: 15762 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-25.5 parent: 2 - - uid: 1002 + - uid: 15763 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-74.5 parent: 2 - - uid: 1086 + - uid: 15764 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-26.5 parent: 2 - - uid: 1240 + - uid: 15765 components: - type: Transform pos: -7.5,-55.5 parent: 2 - - uid: 1286 + - uid: 15766 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-70.5 parent: 2 - - uid: 1463 + - uid: 15767 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-78.5 parent: 2 - - uid: 1464 + - uid: 15768 components: - type: Transform pos: -1.5,-78.5 parent: 2 - - uid: 1813 + - uid: 15769 components: - type: Transform pos: -1.5,-105.5 parent: 2 - - uid: 1823 + - uid: 15770 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-105.5 parent: 2 - - uid: 1824 + - uid: 15771 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-101.5 parent: 2 - - uid: 1927 + - uid: 15772 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-112.5 parent: 2 - - uid: 1958 + - uid: 15773 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-126.5 parent: 2 - - uid: 1992 + - uid: 15774 components: - type: Transform pos: -9.5,-106.5 parent: 2 - - uid: 1993 + - uid: 15775 components: - type: Transform pos: -6.5,-105.5 parent: 2 - - uid: 2108 + - uid: 15776 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-128.5 parent: 2 - - uid: 2113 + - uid: 15777 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-128.5 parent: 2 - - uid: 2122 + - uid: 15778 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-135.5 parent: 2 - - uid: 2165 + - uid: 15779 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-122.5 parent: 2 - - uid: 2449 + - uid: 15780 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-132.5 parent: 2 - - uid: 2451 + - uid: 15781 components: - type: Transform pos: -1.5,-132.5 parent: 2 - - uid: 2522 + - uid: 15782 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-155.5 parent: 2 - - uid: 2529 + - uid: 15783 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-155.5 parent: 2 - - uid: 2582 + - uid: 15784 components: - type: Transform pos: -6.5,-134.5 parent: 2 - - uid: 2853 + - uid: 15785 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-159.5 parent: 2 - - uid: 2854 + - uid: 15786 components: - type: Transform pos: -1.5,-159.5 parent: 2 - - uid: 2872 + - uid: 15787 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-134.5 parent: 2 - - uid: 2886 + - uid: 15788 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-126.5 parent: 2 - - uid: 2887 + - uid: 15789 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-153.5 parent: 2 - - uid: 2906 + - uid: 15790 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-116.5 parent: 2 - - uid: 2936 + - uid: 15791 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-182.5 parent: 2 - - uid: 2937 + - uid: 15792 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-182.5 parent: 2 - - uid: 3155 + - uid: 15793 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-180.5 parent: 2 - - uid: 3653 + - uid: 15794 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-186.5 parent: 2 - - uid: 3656 + - uid: 15795 components: - type: Transform pos: -1.5,-186.5 parent: 2 - - uid: 3687 + - uid: 15796 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-180.5 parent: 2 - - uid: 3817 + - uid: 15797 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-209.5 parent: 2 - - uid: 3819 + - uid: 15798 components: - type: Transform pos: -1.5,-213.5 parent: 2 - - uid: 3878 + - uid: 15799 components: - type: Transform pos: -10.5,-336.5 parent: 2 - - uid: 3883 + - uid: 15800 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-343.5 parent: 2 - - uid: 4009 + - uid: 15801 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-240.5 parent: 2 - - uid: 4319 + - uid: 15802 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-209.5 parent: 2 - - uid: 4322 + - uid: 15803 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-213.5 parent: 2 - - uid: 4530 + - uid: 15804 components: - type: Transform pos: -1.5,-240.5 parent: 2 - - uid: 4533 + - uid: 15805 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-236.5 parent: 2 - - uid: 4535 + - uid: 15806 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-236.5 parent: 2 - - uid: 4549 + - uid: 15807 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 4550 + - uid: 15808 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5088 + - uid: 15809 components: - type: Transform pos: -2.5,-111.5 parent: 2 - - uid: 5123 + - uid: 15810 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5125 + - uid: 15811 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5165 + - uid: 15812 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5170 + - uid: 15813 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5176 + - uid: 15814 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5180 + - uid: 15815 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5183 + - uid: 15816 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-263.5 parent: 2 - - uid: 5184 + - uid: 15817 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5187 + - uid: 15818 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5359 + - uid: 15819 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-238.5 parent: 2 - - uid: 5411 + - uid: 15820 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 6676 + - uid: 15821 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-128.5 parent: 2 - - uid: 6738 + - uid: 15822 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-256.5 parent: 2 - - uid: 7379 + - uid: 15823 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-266.5 parent: 2 - - uid: 7385 + - uid: 15824 components: - type: Transform pos: 14.5,-238.5 parent: 2 - - uid: 7415 + - uid: 15825 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-266.5 parent: 2 - - uid: 7488 + - uid: 15826 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-192.5 parent: 2 - - uid: 7494 + - uid: 15827 components: - type: Transform pos: -11.5,-306.5 parent: 2 - - uid: 8384 + - uid: 15828 components: - type: Transform pos: -10.5,-188.5 parent: 2 - - uid: 8410 + - uid: 15829 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-310.5 parent: 2 - - uid: 8411 + - uid: 15830 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-290.5 parent: 2 - - uid: 8412 + - uid: 15831 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-290.5 parent: 2 - - uid: 8579 + - uid: 15832 components: - type: Transform pos: -1.5,-267.5 parent: 2 - - uid: 8580 + - uid: 15833 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-267.5 parent: 2 - - uid: 9364 + - uid: 15834 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-294.5 parent: 2 - - uid: 9365 + - uid: 15835 components: - type: Transform pos: -1.5,-294.5 parent: 2 - - uid: 9474 + - uid: 15836 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-332.5 parent: 2 - - uid: 9498 + - uid: 15837 components: - type: Transform pos: 3.5,-341.5 parent: 2 - - uid: 9542 + - uid: 15838 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-339.5 parent: 2 - - uid: 10130 + - uid: 15839 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-322.5 parent: 2 - - uid: 10131 + - uid: 15840 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-322.5 parent: 2 - - uid: 10582 + - uid: 15841 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-326.5 parent: 2 - - uid: 10583 + - uid: 15842 components: - type: Transform pos: -1.5,-326.5 parent: 2 - - uid: 10649 + - uid: 15843 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-349.5 parent: 2 - - uid: 10692 + - uid: 15844 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-344.5 parent: 2 - - uid: 10695 + - uid: 15845 components: - type: Transform pos: -7.5,-332.5 parent: 2 - - uid: 10700 + - uid: 15846 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-344.5 parent: 2 - - uid: 10792 + - uid: 15847 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-349.5 parent: 2 - - uid: 10825 + - uid: 15848 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-309.5 parent: 2 - - uid: 10994 + - uid: 15849 components: - type: Transform pos: -9.5,-335.5 parent: 2 - - uid: 11077 + - uid: 15850 components: - type: Transform pos: -1.5,-353.5 parent: 2 - - uid: 11078 + - uid: 15851 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-353.5 parent: 2 - - uid: 11285 + - uid: 15852 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-376.5 parent: 2 - - uid: 11563 + - uid: 15853 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-376.5 parent: 2 - - uid: 11725 + - uid: 15854 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-359.5 parent: 2 - - uid: 11726 + - uid: 15855 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-359.5 parent: 2 - - uid: 11762 + - uid: 15856 components: - type: Transform pos: -1.5,-361.5 parent: 2 - - uid: 11805 + - uid: 15857 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-380.5 parent: 2 - - uid: 11806 + - uid: 15858 components: - type: Transform pos: -1.5,-380.5 parent: 2 - - uid: 11813 + - uid: 15859 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-361.5 parent: 2 - - uid: 11892 + - uid: 15860 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-160.5 parent: 2 - - uid: 12057 + - uid: 15861 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-336.5 parent: 2 - - uid: 12146 + - uid: 15862 components: - type: Transform pos: -8.5,-333.5 parent: 2 - - uid: 12822 + - uid: 15863 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-333.5 parent: 2 - - uid: 12823 + - uid: 15864 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-335.5 parent: 2 - - uid: 12911 + - uid: 15865 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-343.5 parent: 2 - - uid: 13305 + - uid: 15866 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-310.5 parent: 2 - - uid: 13308 + - uid: 15867 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-306.5 parent: 2 - - uid: 13352 + - uid: 15868 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-121.5 parent: 2 - - uid: 14798 + - uid: 15869 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-74.5 parent: 2 - - uid: 15751 + - uid: 15870 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-310.5 parent: 2 - - uid: 15752 + - uid: 15871 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-311.5 parent: 2 - - uid: 15753 + - uid: 15872 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-312.5 parent: 2 - - uid: 15754 + - uid: 15873 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-311.5 parent: 2 - - uid: 15755 + - uid: 15874 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-310.5 parent: 2 - - uid: 15756 + - uid: 15875 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-312.5 parent: 2 - - uid: 15757 + - uid: 15876 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-311.5 parent: 2 - - uid: 15758 + - uid: 15877 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-310.5 parent: 2 - - uid: 15759 + - uid: 15878 components: - type: Transform pos: 26.5,-309.5 parent: 2 - - uid: 15760 + - uid: 15879 components: - type: Transform pos: 25.5,-310.5 parent: 2 - - uid: 15761 + - uid: 15880 components: - type: Transform pos: 24.5,-311.5 parent: 2 - - uid: 15762 + - uid: 15881 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-314.5 parent: 2 - - uid: 15763 + - uid: 15882 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-318.5 parent: 2 - - uid: 15764 + - uid: 15883 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-318.5 parent: 2 - - uid: 15765 + - uid: 15884 components: - type: Transform pos: 18.5,-314.5 parent: 2 - - uid: 15766 + - uid: 15885 components: - type: Transform pos: 17.5,-304.5 parent: 2 - - uid: 15767 + - uid: 15886 components: - type: Transform pos: 18.5,-303.5 parent: 2 - - uid: 15768 + - uid: 15887 components: - type: Transform pos: 19.5,-302.5 parent: 2 - - uid: 15769 + - uid: 15888 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-303.5 parent: 2 - - uid: 15770 + - uid: 15889 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-304.5 parent: 2 - - uid: 15771 + - uid: 15890 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-305.5 parent: 2 - - uid: 15772 + - uid: 15891 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-303.5 parent: 2 - - uid: 15773 + - uid: 15892 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-304.5 parent: 2 - - uid: 15774 + - uid: 15893 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-305.5 parent: 2 - - uid: 15775 + - uid: 15894 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-304.5 parent: 2 - - uid: 15776 + - uid: 15895 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-303.5 parent: 2 - - uid: 15777 + - uid: 15896 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-302.5 parent: 2 - - uid: 15778 + - uid: 15897 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-305.5 parent: 2 - - uid: 15779 + - uid: 15898 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-309.5 parent: 2 - - uid: 15780 + - uid: 15899 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-300.5 parent: 2 - - uid: 15781 + - uid: 15900 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-296.5 parent: 2 - - uid: 15782 + - uid: 15901 components: - type: Transform pos: 18.5,-296.5 parent: 2 - - uid: 15783 + - uid: 15902 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-300.5 parent: 2 - - uid: 16482 + - uid: 15903 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-169.5 parent: 2 - - uid: 16502 + - uid: 15904 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-169.5 parent: 2 - - uid: 16530 + - uid: 15905 components: - type: Transform pos: -15.5,-160.5 parent: 2 - proto: WallReinforcedRust entities: - - uid: 121 + - uid: 15906 components: - type: Transform pos: -3.5,-0.5 parent: 2 - - uid: 122 + - uid: 15907 components: - type: Transform pos: -4.5,-0.5 parent: 2 - - uid: 123 + - uid: 15908 components: - type: Transform pos: -4.5,-1.5 parent: 2 - - uid: 124 + - uid: 15909 components: - type: Transform pos: -2.5,-4.5 parent: 2 - - uid: 125 + - uid: 15910 components: - type: Transform pos: -1.5,-4.5 parent: 2 - - uid: 126 + - uid: 15911 components: - type: Transform pos: -0.5,-4.5 parent: 2 - - uid: 130 + - uid: 15912 components: - type: Transform pos: 3.5,-2.5 parent: 2 - - uid: 135 + - uid: 15913 components: - type: Transform pos: 3.5,-3.5 parent: 2 - - uid: 139 + - uid: 15914 components: - type: Transform pos: 4.5,-3.5 parent: 2 - - uid: 148 + - uid: 15915 components: - type: Transform pos: -6.5,0.5 parent: 2 - - uid: 149 + - uid: 15916 components: - type: Transform pos: -6.5,-0.5 parent: 2 - - uid: 153 + - uid: 15917 components: - type: Transform pos: -6.5,-3.5 parent: 2 - - uid: 180 + - uid: 15918 components: - type: Transform pos: 5.5,-13.5 parent: 2 - - uid: 188 + - uid: 15919 components: - type: Transform pos: -3.5,-8.5 parent: 2 - - uid: 232 + - uid: 15920 components: - type: Transform pos: -4.5,-8.5 parent: 2 - - uid: 233 + - uid: 15921 components: - type: Transform pos: -4.5,-7.5 parent: 2 - - uid: 244 + - uid: 15922 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 249 + - uid: 15923 components: - type: Transform pos: -6.5,-8.5 parent: 2 - - uid: 254 + - uid: 15924 components: - type: Transform pos: -6.5,-4.5 parent: 2 - - uid: 258 + - uid: 15925 components: - type: Transform pos: -4.5,-9.5 parent: 2 - - uid: 259 + - uid: 15926 components: - type: Transform pos: -4.5,-14.5 parent: 2 - - uid: 261 + - uid: 15927 components: - type: Transform pos: -3.5,-15.5 parent: 2 - - uid: 262 + - uid: 15928 components: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 329 + - uid: 15929 components: - type: Transform pos: -6.5,-18.5 parent: 2 - - uid: 331 + - uid: 15930 components: - type: Transform pos: -5.5,-19.5 parent: 2 - - uid: 332 + - uid: 15931 components: - type: Transform pos: -5.5,-20.5 parent: 2 - - uid: 349 + - uid: 15932 components: - type: Transform pos: 6.5,-20.5 parent: 2 - - uid: 350 + - uid: 15933 components: - type: Transform pos: 6.5,-19.5 parent: 2 - - uid: 371 + - uid: 15934 components: - type: Transform pos: -7.5,-35.5 parent: 2 - - uid: 443 + - uid: 15935 components: - type: Transform pos: -3.5,-25.5 parent: 2 - - uid: 457 + - uid: 15936 components: - type: Transform pos: -6.5,-35.5 parent: 2 - - uid: 490 + - uid: 15937 components: - type: Transform pos: 8.5,-35.5 parent: 2 - - uid: 497 + - uid: 15938 components: - type: Transform pos: 7.5,-32.5 parent: 2 - - uid: 502 + - uid: 15939 components: - type: Transform pos: 7.5,-28.5 parent: 2 - - uid: 504 + - uid: 15940 components: - type: Transform pos: 7.5,-27.5 parent: 2 - - uid: 517 + - uid: 15941 components: - type: Transform pos: 7.5,-45.5 parent: 2 - - uid: 518 + - uid: 15942 components: - type: Transform pos: 6.5,-45.5 parent: 2 - - uid: 519 + - uid: 15943 components: - type: Transform pos: 6.5,-47.5 parent: 2 - - uid: 520 + - uid: 15944 components: - type: Transform pos: 6.5,-46.5 parent: 2 - - uid: 540 + - uid: 15945 components: - type: Transform pos: -5.5,-46.5 parent: 2 - - uid: 897 + - uid: 15946 components: - type: Transform pos: 4.5,-53.5 parent: 2 - - uid: 900 + - uid: 15947 components: - type: Transform pos: 4.5,-52.5 parent: 2 - - uid: 925 + - uid: 15948 components: - type: Transform pos: 7.5,-72.5 parent: 2 - - uid: 927 + - uid: 15949 components: - type: Transform pos: 6.5,-72.5 parent: 2 - - uid: 928 + - uid: 15950 components: - type: Transform pos: 7.5,-71.5 parent: 2 - - uid: 960 + - uid: 15951 components: - type: Transform pos: 8.5,-71.5 parent: 2 - - uid: 982 + - uid: 15952 components: - type: Transform pos: 2.5,-54.5 parent: 2 - - uid: 983 + - uid: 15953 components: - type: Transform pos: 2.5,-55.5 parent: 2 - - uid: 994 + - uid: 15954 components: - type: Transform pos: -1.5,-73.5 parent: 2 - - uid: 1012 + - uid: 15955 components: - type: Transform pos: -1.5,-74.5 parent: 2 - - uid: 1014 + - uid: 15956 components: - type: Transform pos: 6.5,-74.5 parent: 2 - - uid: 1120 + - uid: 15957 components: - type: Transform pos: -1.5,-72.5 parent: 2 - - uid: 1121 + - uid: 15958 components: - type: Transform pos: 6.5,-73.5 parent: 2 - - uid: 1213 + - uid: 15959 components: - type: Transform pos: 3.5,-52.5 parent: 2 - - uid: 1420 + - uid: 15960 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-74.5 parent: 2 - - uid: 1516 + - uid: 15961 components: - type: Transform pos: 6.5,-79.5 parent: 2 - - uid: 1517 + - uid: 15962 components: - type: Transform pos: 6.5,-80.5 parent: 2 - - uid: 1518 + - uid: 15963 components: - type: Transform pos: 7.5,-80.5 parent: 2 - - uid: 1536 + - uid: 15964 components: - type: Transform pos: -6.5,-93.5 parent: 2 - - uid: 1537 + - uid: 15965 components: - type: Transform pos: -6.5,-94.5 parent: 2 - - uid: 1538 + - uid: 15966 components: - type: Transform pos: -6.5,-95.5 parent: 2 - - uid: 1554 + - uid: 15967 components: - type: Transform pos: 2.5,-100.5 parent: 2 - - uid: 1581 + - uid: 15968 components: - type: Transform pos: 7.5,-92.5 parent: 2 - - uid: 1711 + - uid: 15969 components: - type: Transform pos: 2.5,-99.5 parent: 2 - - uid: 1712 + - uid: 15970 components: - type: Transform pos: 1.5,-99.5 parent: 2 - - uid: 1847 + - uid: 15971 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-51.5 parent: 2 - - uid: 1855 + - uid: 15972 components: - type: Transform pos: -7.5,-106.5 parent: 2 - - uid: 1856 + - uid: 15973 components: - type: Transform pos: -8.5,-106.5 parent: 2 - - uid: 1931 + - uid: 15974 components: - type: Transform pos: 6.5,-112.5 parent: 2 - - uid: 1955 + - uid: 15975 components: - type: Transform pos: -9.5,-117.5 parent: 2 - - uid: 2099 + - uid: 15976 components: - type: Transform pos: -5.5,-128.5 parent: 2 - - uid: 2111 + - uid: 15977 components: - type: Transform pos: 2.5,-126.5 parent: 2 - - uid: 2112 + - uid: 15978 components: - type: Transform pos: 2.5,-127.5 parent: 2 - - uid: 2115 + - uid: 15979 components: - type: Transform pos: 3.5,-127.5 parent: 2 - - uid: 2116 + - uid: 15980 components: - type: Transform pos: 4.5,-127.5 parent: 2 - - uid: 2120 + - uid: 15981 components: - type: Transform pos: 4.5,-128.5 parent: 2 - - uid: 2173 + - uid: 15982 components: - type: Transform pos: 0.5,-115.5 parent: 2 - - uid: 2174 + - uid: 15983 components: - type: Transform pos: 1.5,-115.5 parent: 2 - - uid: 2175 + - uid: 15984 components: - type: Transform pos: 2.5,-115.5 parent: 2 - - uid: 2176 + - uid: 15985 components: - type: Transform pos: 2.5,-117.5 parent: 2 - - uid: 2186 + - uid: 15986 components: - type: Transform pos: 4.5,-113.5 parent: 2 - - uid: 2187 + - uid: 15987 components: - type: Transform pos: 4.5,-112.5 parent: 2 - - uid: 2192 + - uid: 15988 components: - type: Transform pos: 4.5,-115.5 parent: 2 - - uid: 2193 + - uid: 15989 components: - type: Transform pos: 1.5,-114.5 parent: 2 - - uid: 2285 + - uid: 15990 components: - type: Transform pos: 5.5,-112.5 parent: 2 - - uid: 2456 + - uid: 15991 components: - type: Transform pos: 1.5,-134.5 parent: 2 - - uid: 2457 + - uid: 15992 components: - type: Transform pos: 2.5,-134.5 parent: 2 - - uid: 2458 + - uid: 15993 components: - type: Transform pos: 2.5,-133.5 parent: 2 - - uid: 2482 + - uid: 15994 components: - type: Transform pos: 3.5,-133.5 parent: 2 - - uid: 2496 + - uid: 15995 components: - type: Transform pos: -6.5,-143.5 parent: 2 - - uid: 2497 + - uid: 15996 components: - type: Transform pos: -6.5,-137.5 parent: 2 - - uid: 2498 + - uid: 15997 components: - type: Transform pos: -7.5,-137.5 parent: 2 - - uid: 2499 + - uid: 15998 components: - type: Transform pos: -7.5,-138.5 parent: 2 - - uid: 2500 + - uid: 15999 components: - type: Transform pos: -7.5,-142.5 parent: 2 - - uid: 2501 + - uid: 16000 components: - type: Transform pos: -7.5,-143.5 parent: 2 - - uid: 2510 + - uid: 16001 components: - type: Transform pos: -7.5,-151.5 parent: 2 - - uid: 2511 + - uid: 16002 components: - type: Transform pos: -6.5,-151.5 parent: 2 - - uid: 2525 + - uid: 16003 components: - type: Transform pos: -0.5,-155.5 parent: 2 - - uid: 2530 + - uid: 16004 components: - type: Transform pos: 1.5,-155.5 parent: 2 - - uid: 2534 + - uid: 16005 components: - type: Transform pos: 4.5,-154.5 parent: 2 - - uid: 2535 + - uid: 16006 components: - type: Transform pos: 4.5,-155.5 parent: 2 - - uid: 2546 + - uid: 16007 components: - type: Transform pos: 3.5,-154.5 parent: 2 - - uid: 2564 + - uid: 16008 components: - type: Transform pos: 9.5,-151.5 parent: 2 - - uid: 2578 + - uid: 16009 components: - type: Transform pos: 9.5,-137.5 parent: 2 - - uid: 2579 + - uid: 16010 components: - type: Transform pos: 9.5,-136.5 parent: 2 - - uid: 3084 + - uid: 16011 components: - type: Transform pos: -1.5,-161.5 parent: 2 - - uid: 3085 + - uid: 16012 components: - type: Transform pos: -0.5,-180.5 parent: 2 - - uid: 3086 + - uid: 16013 components: - type: Transform pos: -1.5,-180.5 parent: 2 - - uid: 3088 + - uid: 16014 components: - type: Transform pos: -8.5,-171.5 parent: 2 - - uid: 3106 + - uid: 16015 components: - type: Transform pos: -8.5,-172.5 parent: 2 - - uid: 3108 + - uid: 16016 components: - type: Transform pos: -8.5,-179.5 parent: 2 - - uid: 3111 + - uid: 16017 components: - type: Transform pos: 8.5,-164.5 parent: 2 - - uid: 3131 + - uid: 16018 components: - type: Transform pos: 8.5,-170.5 parent: 2 - - uid: 3138 + - uid: 16019 components: - type: Transform pos: -5.5,-181.5 parent: 2 - - uid: 3139 + - uid: 16020 components: - type: Transform pos: -5.5,-182.5 parent: 2 - - uid: 3140 + - uid: 16021 components: - type: Transform pos: -3.5,-181.5 parent: 2 - - uid: 3142 + - uid: 16022 components: - type: Transform pos: 9.5,-178.5 parent: 2 - - uid: 3153 + - uid: 16023 components: - type: Transform pos: 6.5,-181.5 parent: 2 - - uid: 3154 + - uid: 16024 components: - type: Transform pos: 4.5,-182.5 parent: 2 - - uid: 3157 + - uid: 16025 components: - type: Transform pos: 8.5,-179.5 parent: 2 - - uid: 3664 + - uid: 16026 components: - type: Transform pos: 6.5,-187.5 parent: 2 - - uid: 3665 + - uid: 16027 components: - type: Transform pos: 6.5,-188.5 parent: 2 - - uid: 3666 + - uid: 16028 components: - type: Transform pos: 7.5,-188.5 parent: 2 - - uid: 3668 + - uid: 16029 components: - type: Transform pos: 7.5,-189.5 parent: 2 - - uid: 3791 + - uid: 16030 components: - type: Transform pos: -6.5,-192.5 parent: 2 - - uid: 3793 + - uid: 16031 components: - type: Transform pos: -7.5,-193.5 parent: 2 - - uid: 3808 + - uid: 16032 components: - type: Transform pos: -6.5,-207.5 parent: 2 - - uid: 3809 + - uid: 16033 components: - type: Transform pos: -5.5,-207.5 parent: 2 - - uid: 3810 + - uid: 16034 components: - type: Transform pos: -5.5,-208.5 parent: 2 - - uid: 3825 + - uid: 16035 components: - type: Transform pos: 4.5,-208.5 parent: 2 - - uid: 3827 + - uid: 16036 components: - type: Transform pos: 6.5,-208.5 parent: 2 - - uid: 3829 + - uid: 16037 components: - type: Transform pos: 6.5,-207.5 parent: 2 - - uid: 3830 + - uid: 16038 components: - type: Transform pos: 7.5,-207.5 parent: 2 - - uid: 3831 + - uid: 16039 components: - type: Transform pos: 7.5,-206.5 parent: 2 - - uid: 4726 + - uid: 16040 components: - type: Transform pos: 6.5,-186.5 parent: 2 - - uid: 6306 + - uid: 16041 components: - type: Transform pos: 4.5,-114.5 parent: 2 - - uid: 6917 + - uid: 16042 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-186.5 parent: 2 - - uid: 7755 + - uid: 16043 components: - type: Transform pos: 5.5,-207.5 parent: 2 - - uid: 7764 + - uid: 16044 components: - type: Transform pos: 4.5,-207.5 parent: 2 - - uid: 7843 + - uid: 16045 components: - type: Transform pos: -4.5,-192.5 parent: 2 - - uid: 8387 + - uid: 16046 components: - type: Transform pos: -2.5,-192.5 parent: 2 - - uid: 8809 + - uid: 16047 components: - type: Transform pos: -5.5,-192.5 parent: 2 - - uid: 12684 + - uid: 16048 components: - type: Transform pos: -7.5,-127.5 parent: 2 - - uid: 14689 + - uid: 16049 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-51.5 parent: 2 - - uid: 16739 + - uid: 16050 components: - type: Transform rot: 1.5707963267948966 rad @@ -102646,2028 +102070,2037 @@ entities: parent: 2 - proto: WallSolid entities: - - uid: 439 + - uid: 8504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-171.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-171.5 + parent: 2 + - uid: 11578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-171.5 + parent: 2 + - uid: 13568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-171.5 + parent: 2 + - uid: 16051 components: - type: Transform pos: 1.5,-34.5 parent: 2 - - uid: 447 + - uid: 16052 components: - type: Transform pos: 3.5,-67.5 parent: 2 - - uid: 458 + - uid: 16053 components: - type: Transform pos: -5.5,-33.5 parent: 2 - - uid: 461 + - uid: 16054 components: - type: Transform pos: -2.5,-33.5 parent: 2 - - uid: 462 + - uid: 16055 components: - type: Transform pos: -1.5,-33.5 parent: 2 - - uid: 464 + - uid: 16056 components: - type: Transform pos: -1.5,-36.5 parent: 2 - - uid: 465 + - uid: 16057 components: - type: Transform pos: -2.5,-36.5 parent: 2 - - uid: 466 + - uid: 16058 components: - type: Transform pos: -2.5,-37.5 parent: 2 - - uid: 467 + - uid: 16059 components: - type: Transform pos: -2.5,-38.5 parent: 2 - - uid: 468 + - uid: 16060 components: - type: Transform pos: -2.5,-39.5 parent: 2 - - uid: 469 + - uid: 16061 components: - type: Transform pos: -2.5,-40.5 parent: 2 - - uid: 472 + - uid: 16062 components: - type: Transform pos: -3.5,-40.5 parent: 2 - - uid: 473 + - uid: 16063 components: - type: Transform pos: -5.5,-40.5 parent: 2 - - uid: 475 + - uid: 16064 components: - type: Transform pos: 1.5,-33.5 parent: 2 - - uid: 476 + - uid: 16065 components: - type: Transform pos: 2.5,-33.5 parent: 2 - - uid: 480 + - uid: 16066 components: - type: Transform pos: 4.5,-31.5 parent: 2 - - uid: 481 + - uid: 16067 components: - type: Transform pos: 4.5,-30.5 parent: 2 - - uid: 482 + - uid: 16068 components: - type: Transform pos: 4.5,-29.5 parent: 2 - - uid: 483 + - uid: 16069 components: - type: Transform pos: 4.5,-28.5 parent: 2 - - uid: 484 + - uid: 16070 components: - type: Transform pos: 4.5,-27.5 parent: 2 - - uid: 487 + - uid: 16071 components: - type: Transform pos: 3.5,-36.5 parent: 2 - - uid: 488 + - uid: 16072 components: - type: Transform pos: 2.5,-36.5 parent: 2 - - uid: 489 + - uid: 16073 components: - type: Transform pos: 1.5,-36.5 parent: 2 - - uid: 491 + - uid: 16074 components: - type: Transform pos: 4.5,-35.5 parent: 2 - - uid: 492 + - uid: 16075 components: - type: Transform pos: 5.5,-35.5 parent: 2 - - uid: 493 + - uid: 16076 components: - type: Transform pos: 6.5,-35.5 parent: 2 - - uid: 880 + - uid: 16077 components: - type: Transform pos: 3.5,-56.5 parent: 2 - - uid: 881 + - uid: 16078 components: - type: Transform pos: 4.5,-32.5 parent: 2 - - uid: 908 + - uid: 16079 components: - type: Transform pos: 5.5,-60.5 parent: 2 - - uid: 945 + - uid: 16080 components: - type: Transform pos: 3.5,-59.5 parent: 2 - - uid: 959 + - uid: 16081 components: - type: Transform pos: 3.5,-33.5 parent: 2 - - uid: 965 + - uid: 16082 components: - type: Transform pos: 0.5,-65.5 parent: 2 - - uid: 966 + - uid: 16083 components: - type: Transform pos: 3.5,-70.5 parent: 2 - - uid: 967 + - uid: 16084 components: - type: Transform pos: 2.5,-70.5 parent: 2 - - uid: 968 + - uid: 16085 components: - type: Transform pos: 3.5,-69.5 parent: 2 - - uid: 969 + - uid: 16086 components: - type: Transform pos: 5.5,-62.5 parent: 2 - - uid: 971 + - uid: 16087 components: - type: Transform pos: 5.5,-64.5 parent: 2 - - uid: 972 + - uid: 16088 components: - type: Transform pos: 3.5,-58.5 parent: 2 - - uid: 976 + - uid: 16089 components: - type: Transform pos: -5.5,-69.5 parent: 2 - - uid: 984 + - uid: 16090 components: - type: Transform pos: -1.5,-55.5 parent: 2 - - uid: 987 + - uid: 16091 components: - type: Transform pos: -2.5,-56.5 parent: 2 - - uid: 1010 + - uid: 16092 components: - type: Transform pos: 5.5,-61.5 parent: 2 - - uid: 1018 + - uid: 16093 components: - type: Transform pos: 1.5,-60.5 parent: 2 - - uid: 1019 + - uid: 16094 components: - type: Transform pos: 2.5,-61.5 parent: 2 - - uid: 1020 + - uid: 16095 components: - type: Transform pos: 2.5,-60.5 parent: 2 - - uid: 1032 + - uid: 16096 components: - type: Transform pos: -1.5,-71.5 parent: 2 - - uid: 1071 + - uid: 16097 components: - type: Transform pos: 2.5,-64.5 parent: 2 - - uid: 1076 + - uid: 16098 components: - type: Transform pos: 3.5,-60.5 parent: 2 - - uid: 1077 + - uid: 16099 components: - type: Transform pos: 1.5,-65.5 parent: 2 - - uid: 1080 + - uid: 16100 components: - type: Transform pos: 5.5,-65.5 parent: 2 - - uid: 1084 + - uid: 16101 components: - type: Transform pos: 4.5,-60.5 parent: 2 - - uid: 1087 + - uid: 16102 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-56.5 parent: 2 - - uid: 1218 + - uid: 16103 components: - type: Transform pos: 0.5,-60.5 parent: 2 - - uid: 1223 + - uid: 16104 components: - type: Transform pos: 2.5,-65.5 parent: 2 - - uid: 1243 + - uid: 16105 components: - type: Transform pos: -1.5,-93.5 parent: 2 - - uid: 1274 + - uid: 16106 components: - type: Transform pos: -6.5,-69.5 parent: 2 - - uid: 1417 + - uid: 16107 components: - type: Transform pos: -1.5,-70.5 parent: 2 - - uid: 1425 + - uid: 16108 components: - type: Transform pos: -1.5,-95.5 parent: 2 - - uid: 1428 + - uid: 16109 components: - type: Transform pos: 4.5,-70.5 parent: 2 - - uid: 1434 + - uid: 16110 components: - type: Transform pos: -3.5,-69.5 parent: 2 - - uid: 1495 + - uid: 16111 components: - type: Transform pos: -1.5,-279.5 parent: 2 - - uid: 1496 + - uid: 16112 components: - type: Transform pos: -1.5,-278.5 parent: 2 - - uid: 1549 + - uid: 16113 components: - type: Transform pos: -1.5,-96.5 parent: 2 - - uid: 1639 + - uid: 16114 components: - type: Transform pos: -1.5,-82.5 parent: 2 - - uid: 1640 + - uid: 16115 components: - type: Transform pos: -1.5,-83.5 parent: 2 - - uid: 1642 + - uid: 16116 components: - type: Transform pos: -5.5,-82.5 parent: 2 - - uid: 1643 + - uid: 16117 components: - type: Transform pos: -5.5,-83.5 parent: 2 - - uid: 1644 + - uid: 16118 components: - type: Transform pos: -4.5,-83.5 parent: 2 - - uid: 1645 + - uid: 16119 components: - type: Transform pos: -4.5,-84.5 parent: 2 - - uid: 1648 + - uid: 16120 components: - type: Transform pos: -2.5,-85.5 parent: 2 - - uid: 1651 + - uid: 16121 components: - type: Transform pos: -2.5,-88.5 parent: 2 - - uid: 1652 + - uid: 16122 components: - type: Transform pos: -4.5,-88.5 parent: 2 - - uid: 1653 + - uid: 16123 components: - type: Transform pos: -4.5,-89.5 parent: 2 - - uid: 1654 + - uid: 16124 components: - type: Transform pos: -5.5,-89.5 parent: 2 - - uid: 1655 + - uid: 16125 components: - type: Transform pos: -2.5,-89.5 parent: 2 - - uid: 1656 + - uid: 16126 components: - type: Transform pos: -1.5,-89.5 parent: 2 - - uid: 1657 + - uid: 16127 components: - type: Transform pos: -5.5,-90.5 parent: 2 - - uid: 1658 + - uid: 16128 components: - type: Transform pos: -1.5,-90.5 parent: 2 - - uid: 1661 + - uid: 16129 components: - type: Transform pos: -0.5,-90.5 parent: 2 - - uid: 1663 + - uid: 16130 components: - type: Transform pos: -0.5,-92.5 parent: 2 - - uid: 1664 + - uid: 16131 components: - type: Transform pos: -0.5,-93.5 parent: 2 - - uid: 1667 + - uid: 16132 components: - type: Transform pos: -1.5,-94.5 parent: 2 - - uid: 1668 + - uid: 16133 components: - type: Transform pos: -2.5,-94.5 parent: 2 - - uid: 1681 + - uid: 16134 components: - type: Transform pos: 2.5,-93.5 parent: 2 - - uid: 1682 + - uid: 16135 components: - type: Transform pos: 3.5,-92.5 parent: 2 - - uid: 1684 + - uid: 16136 components: - type: Transform pos: 3.5,-84.5 parent: 2 - - uid: 1685 + - uid: 16137 components: - type: Transform pos: 2.5,-83.5 parent: 2 - - uid: 1729 + - uid: 16138 components: - type: Transform pos: -1.5,-56.5 parent: 2 - - uid: 1751 + - uid: 16139 components: - type: Transform pos: 2.5,-92.5 parent: 2 - - uid: 1765 + - uid: 16140 components: - type: Transform pos: 2.5,-84.5 parent: 2 - - uid: 1829 + - uid: 16141 components: - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-108.5 parent: 2 - - uid: 1832 + - uid: 16142 components: - type: Transform pos: -4.5,-108.5 parent: 2 - - uid: 1848 + - uid: 16143 components: - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-109.5 parent: 2 - - uid: 1863 + - uid: 16144 components: - type: Transform - pos: -5.5,-112.5 + rot: 1.5707963267948966 rad + pos: -5.5,-111.5 parent: 2 - - uid: 1864 + - uid: 16145 components: - type: Transform - pos: -5.5,-111.5 + rot: 1.5707963267948966 rad + pos: -5.5,-112.5 parent: 2 - - uid: 1865 + - uid: 16146 components: - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-111.5 parent: 2 - - uid: 1866 + - uid: 16147 components: - type: Transform pos: -7.5,-111.5 parent: 2 - - uid: 1867 + - uid: 16148 components: - type: Transform pos: -8.5,-111.5 parent: 2 - - uid: 1868 + - uid: 16149 components: - type: Transform pos: -5.5,-115.5 parent: 2 - - uid: 1869 + - uid: 16150 components: - type: Transform pos: -5.5,-114.5 parent: 2 - - uid: 1870 + - uid: 16151 components: - type: Transform pos: -6.5,-114.5 parent: 2 - - uid: 1871 + - uid: 16152 components: - type: Transform pos: -7.5,-114.5 parent: 2 - - uid: 1872 + - uid: 16153 components: - type: Transform pos: -8.5,-114.5 parent: 2 - - uid: 1875 + - uid: 16154 components: - type: Transform pos: -6.5,-117.5 parent: 2 - - uid: 1876 + - uid: 16155 components: - type: Transform pos: -5.5,-117.5 parent: 2 - - uid: 1877 + - uid: 16156 components: - type: Transform pos: -8.5,-120.5 parent: 2 - - uid: 1878 + - uid: 16157 components: - type: Transform pos: -7.5,-120.5 parent: 2 - - uid: 1881 + - uid: 16158 components: - type: Transform pos: -8.5,-123.5 parent: 2 - - uid: 1882 + - uid: 16159 components: - type: Transform pos: -7.5,-123.5 parent: 2 - - uid: 1883 + - uid: 16160 components: - type: Transform pos: -6.5,-123.5 parent: 2 - - uid: 1884 + - uid: 16161 components: - type: Transform pos: -5.5,-123.5 parent: 2 - - uid: 1885 + - uid: 16162 components: - type: Transform pos: -5.5,-124.5 parent: 2 - - uid: 1887 + - uid: 16163 components: - type: Transform pos: -5.5,-118.5 parent: 2 - - uid: 2200 + - uid: 16164 components: - type: Transform pos: 2.5,-111.5 parent: 2 - - uid: 2201 + - uid: 16165 components: - type: Transform pos: 2.5,-110.5 parent: 2 - - uid: 2203 + - uid: 16166 components: - type: Transform pos: 2.5,-108.5 parent: 2 - - uid: 2353 + - uid: 16167 components: - type: Transform pos: 3.5,-150.5 parent: 2 - - uid: 2504 + - uid: 16168 components: - type: Transform pos: -2.5,-69.5 parent: 2 - - uid: 2528 + - uid: 16169 components: - type: Transform pos: 2.5,-151.5 parent: 2 - - uid: 2531 + - uid: 16170 components: - type: Transform pos: 2.5,-147.5 parent: 2 - - uid: 2536 + - uid: 16171 components: - type: Transform pos: 1.5,-146.5 parent: 2 - - uid: 2540 + - uid: 16172 components: - type: Transform pos: 1.5,-142.5 parent: 2 - - uid: 2541 + - uid: 16173 components: - type: Transform pos: 1.5,-141.5 parent: 2 - - uid: 2542 + - uid: 16174 components: - type: Transform pos: 1.5,-140.5 parent: 2 - - uid: 2543 + - uid: 16175 components: - type: Transform pos: 2.5,-140.5 parent: 2 - - uid: 2544 + - uid: 16176 components: - type: Transform pos: 3.5,-140.5 parent: 2 - - uid: 2547 + - uid: 16177 components: - type: Transform pos: 5.5,-140.5 parent: 2 - - uid: 2548 + - uid: 16178 components: - type: Transform pos: 6.5,-140.5 parent: 2 - - uid: 2549 + - uid: 16179 components: - type: Transform pos: 7.5,-140.5 parent: 2 - - uid: 2552 + - uid: 16180 components: - type: Transform pos: 7.5,-141.5 parent: 2 - - uid: 2553 + - uid: 16181 components: - type: Transform pos: 7.5,-142.5 parent: 2 - - uid: 2554 + - uid: 16182 components: - type: Transform pos: 7.5,-143.5 parent: 2 - - uid: 2555 + - uid: 16183 components: - type: Transform pos: 7.5,-144.5 parent: 2 - - uid: 2591 + - uid: 16184 components: - type: Transform pos: -1.5,-152.5 parent: 2 - - uid: 2593 + - uid: 16185 components: - type: Transform pos: -1.5,-150.5 parent: 2 - - uid: 2606 + - uid: 16186 components: - type: Transform pos: -3.5,-137.5 parent: 2 - - uid: 2607 + - uid: 16187 components: - type: Transform pos: -2.5,-137.5 parent: 2 - - uid: 2608 + - uid: 16188 components: - type: Transform pos: -1.5,-137.5 parent: 2 - - uid: 2609 + - uid: 16189 components: - type: Transform pos: -1.5,-135.5 parent: 2 - - uid: 2610 + - uid: 16190 components: - type: Transform pos: -1.5,-136.5 parent: 2 - - uid: 2611 + - uid: 16191 components: - type: Transform pos: -1.5,-138.5 parent: 2 - - uid: 2612 + - uid: 16192 components: - type: Transform pos: -1.5,-142.5 parent: 2 - - uid: 2613 + - uid: 16193 components: - type: Transform pos: -1.5,-143.5 parent: 2 - - uid: 2616 + - uid: 16194 components: - type: Transform pos: -1.5,-144.5 parent: 2 - - uid: 2617 + - uid: 16195 components: - type: Transform pos: -1.5,-145.5 parent: 2 - - uid: 2618 + - uid: 16196 components: - type: Transform pos: -1.5,-146.5 parent: 2 - - uid: 2619 + - uid: 16197 components: - type: Transform pos: -1.5,-147.5 parent: 2 - - uid: 2620 + - uid: 16198 components: - type: Transform pos: -1.5,-148.5 parent: 2 - - uid: 2621 + - uid: 16199 components: - type: Transform pos: -1.5,-149.5 parent: 2 - - uid: 2622 + - uid: 16200 components: - type: Transform pos: -2.5,-149.5 parent: 2 - - uid: 2677 + - uid: 16201 components: - type: Transform pos: 1.5,-138.5 parent: 2 - - uid: 2679 + - uid: 16202 components: - type: Transform pos: 1.5,-139.5 parent: 2 - - uid: 2681 + - uid: 16203 components: - type: Transform pos: 4.5,-136.5 parent: 2 - - uid: 2682 + - uid: 16204 components: - type: Transform pos: 3.5,-136.5 parent: 2 - - uid: 2685 + - uid: 16205 components: - type: Transform pos: 7.5,-139.5 parent: 2 - - uid: 2700 + - uid: 16206 components: - type: Transform pos: 5.5,-136.5 parent: 2 - - uid: 2734 + - uid: 16207 components: - type: Transform pos: 4.5,-150.5 parent: 2 - - uid: 2735 + - uid: 16208 components: - type: Transform pos: 5.5,-150.5 parent: 2 - - uid: 2736 + - uid: 16209 components: - type: Transform pos: 6.5,-150.5 parent: 2 - - uid: 2737 + - uid: 16210 components: - type: Transform pos: 7.5,-150.5 parent: 2 - - uid: 2927 + - uid: 16211 components: - type: Transform pos: 2.5,-164.5 parent: 2 - - uid: 2948 + - uid: 16212 components: - type: Transform pos: 2.5,-169.5 parent: 2 - - uid: 3032 + - uid: 16213 components: - type: Transform pos: -0.5,-173.5 parent: 2 - - uid: 3035 + - uid: 16214 components: - type: Transform pos: -0.5,-176.5 parent: 2 - - uid: 3043 + - uid: 16215 components: - type: Transform pos: -5.5,-177.5 parent: 2 - - uid: 3046 + - uid: 16216 components: - type: Transform pos: -5.5,-175.5 parent: 2 - - uid: 3050 + - uid: 16217 components: - type: Transform pos: -5.5,-171.5 parent: 2 - - uid: 3056 + - uid: 16218 components: - type: Transform pos: 3.5,-170.5 parent: 2 - - uid: 3057 + - uid: 16219 components: - type: Transform pos: 2.5,-170.5 parent: 2 - - uid: 3059 + - uid: 16220 components: - type: Transform pos: 2.5,-165.5 parent: 2 - - uid: 3061 + - uid: 16221 components: - type: Transform pos: 3.5,-164.5 parent: 2 - - uid: 3062 + - uid: 16222 components: - type: Transform pos: 4.5,-164.5 parent: 2 - - uid: 3063 + - uid: 16223 components: - type: Transform pos: 5.5,-164.5 parent: 2 - - uid: 3066 + - uid: 16224 components: - type: Transform pos: 7.5,-170.5 parent: 2 - - uid: 3073 + - uid: 16225 components: - type: Transform pos: 2.5,-171.5 parent: 2 - - uid: 3170 + - uid: 16226 components: - type: Transform pos: -0.5,-177.5 parent: 2 - - uid: 3185 + - uid: 16227 components: - type: Transform pos: -1.5,-178.5 parent: 2 - - uid: 3221 + - uid: 16228 components: - type: Transform pos: -5.5,-178.5 parent: 2 - - uid: 3224 + - uid: 16229 components: - type: Transform pos: -2.5,-178.5 parent: 2 - - uid: 3507 + - uid: 16230 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-36.5 parent: 2 - - uid: 3676 + - uid: 16231 components: - type: Transform pos: 2.5,-172.5 parent: 2 - - uid: 3681 + - uid: 16232 components: - type: Transform pos: 2.5,-176.5 parent: 2 - - uid: 3723 + - uid: 16233 components: - type: Transform pos: 1.5,-191.5 parent: 2 - - uid: 3724 + - uid: 16234 components: - type: Transform pos: 2.5,-191.5 parent: 2 - - uid: 3725 + - uid: 16235 components: - type: Transform pos: 3.5,-191.5 parent: 2 - - uid: 3726 + - uid: 16236 components: - type: Transform pos: 4.5,-191.5 parent: 2 - - uid: 3730 + - uid: 16237 components: - type: Transform pos: 4.5,-195.5 parent: 2 - - uid: 3731 + - uid: 16238 components: - type: Transform pos: 3.5,-195.5 parent: 2 - - uid: 3732 + - uid: 16239 components: - type: Transform pos: 1.5,-195.5 parent: 2 - - uid: 3733 + - uid: 16240 components: - type: Transform pos: 0.5,-195.5 parent: 2 - - uid: 3737 + - uid: 16241 components: - type: Transform pos: -1.5,-193.5 parent: 2 - - uid: 3738 + - uid: 16242 components: - type: Transform pos: -1.5,-192.5 parent: 2 - - uid: 3740 + - uid: 16243 components: - type: Transform pos: -0.5,-191.5 parent: 2 - - uid: 3750 + - uid: 16244 components: - type: Transform pos: 4.5,-196.5 parent: 2 - - uid: 3751 + - uid: 16245 components: - type: Transform pos: 4.5,-199.5 parent: 2 - - uid: 3772 + - uid: 16246 components: - type: Transform pos: -1.5,-199.5 parent: 2 - - uid: 3773 + - uid: 16247 components: - type: Transform pos: -1.5,-200.5 parent: 2 - - uid: 4574 + - uid: 16248 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-246.5 parent: 2 - - uid: 5212 + - uid: 16249 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-259.5 parent: 2 - - uid: 5215 + - uid: 16250 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-259.5 parent: 2 - - uid: 5337 + - uid: 16251 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-258.5 parent: 2 - - uid: 6195 + - uid: 16252 components: - type: Transform pos: -0.5,-168.5 parent: 2 - - uid: 6819 + - uid: 16253 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-248.5 parent: 2 - - uid: 6896 + - uid: 16254 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-258.5 parent: 2 - - uid: 7420 + - uid: 16255 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-258.5 parent: 2 - - uid: 7724 + - uid: 16256 components: - type: Transform pos: -0.5,-164.5 parent: 2 - - uid: 7729 + - uid: 16257 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-257.5 parent: 2 - - uid: 7731 + - uid: 16258 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-258.5 parent: 2 - - uid: 7732 + - uid: 16259 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-245.5 parent: 2 - - uid: 7733 + - uid: 16260 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-248.5 parent: 2 - - uid: 7734 + - uid: 16261 components: - type: Transform pos: 1.5,-137.5 parent: 2 - - uid: 7782 + - uid: 16262 components: - type: Transform pos: 6.5,-179.5 parent: 2 - - uid: 7792 + - uid: 16263 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-245.5 parent: 2 - - uid: 7795 + - uid: 16264 components: - type: Transform pos: -1.5,-280.5 parent: 2 - - uid: 7802 + - uid: 16265 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-254.5 parent: 2 - - uid: 7812 + - uid: 16266 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-244.5 parent: 2 - - uid: 7827 + - uid: 16267 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-246.5 parent: 2 - - uid: 7873 + - uid: 16268 components: - type: Transform pos: 6.5,-177.5 parent: 2 - - uid: 7874 + - uid: 16269 components: - type: Transform pos: 6.5,-178.5 parent: 2 - - uid: 7878 + - uid: 16270 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-245.5 parent: 2 - - uid: 7883 + - uid: 16271 components: - type: Transform pos: 2.5,-177.5 parent: 2 - - uid: 7884 + - uid: 16272 components: - type: Transform pos: 3.5,-177.5 parent: 2 - - uid: 8025 + - uid: 16273 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-246.5 parent: 2 - - uid: 8026 + - uid: 16274 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-246.5 parent: 2 - - uid: 8028 + - uid: 16275 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-247.5 parent: 2 - - uid: 8033 + - uid: 16276 components: - type: Transform pos: 1.5,-252.5 parent: 2 - - uid: 8053 + - uid: 16277 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-251.5 parent: 2 - - uid: 8058 + - uid: 16278 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-250.5 parent: 2 - - uid: 8059 + - uid: 16279 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-249.5 parent: 2 - - uid: 8103 + - uid: 16280 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-249.5 parent: 2 - - uid: 8214 + - uid: 16281 components: - type: Transform pos: 6.5,-246.5 parent: 2 - - uid: 8391 + - uid: 16282 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-247.5 parent: 2 - - uid: 8478 + - uid: 16283 components: - type: Transform pos: -5.5,-168.5 parent: 2 - - uid: 8582 + - uid: 16284 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-270.5 parent: 2 - - uid: 8583 + - uid: 16285 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-272.5 parent: 2 - - uid: 8584 + - uid: 16286 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-272.5 parent: 2 - - uid: 8586 + - uid: 16287 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-275.5 parent: 2 - - uid: 8587 + - uid: 16288 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-276.5 parent: 2 - - uid: 8622 + - uid: 16289 components: - type: Transform pos: -4.5,-282.5 parent: 2 - - uid: 8623 + - uid: 16290 components: - type: Transform pos: -4.5,-283.5 parent: 2 - - uid: 8626 + - uid: 16291 components: - type: Transform pos: -1.5,-277.5 parent: 2 - - uid: 8648 + - uid: 16292 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-275.5 parent: 2 - - uid: 8649 + - uid: 16293 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-275.5 parent: 2 - - uid: 8650 + - uid: 16294 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-283.5 parent: 2 - - uid: 8653 + - uid: 16295 components: - type: Transform pos: -1.5,-286.5 parent: 2 - - uid: 8654 + - uid: 16296 components: - type: Transform pos: -1.5,-287.5 parent: 2 - - uid: 8656 + - uid: 16297 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-270.5 parent: 2 - - uid: 8666 + - uid: 16298 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-284.5 parent: 2 - - uid: 8671 + - uid: 16299 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-281.5 parent: 2 - - uid: 8682 + - uid: 16300 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-283.5 parent: 2 - - uid: 8692 + - uid: 16301 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-286.5 parent: 2 - - uid: 8699 + - uid: 16302 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-287.5 parent: 2 - - uid: 8765 + - uid: 16303 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-275.5 parent: 2 - - uid: 8766 + - uid: 16304 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-275.5 parent: 2 - - uid: 8931 + - uid: 16305 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-258.5 parent: 2 - - uid: 9852 + - uid: 16306 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-258.5 parent: 2 - - uid: 9865 + - uid: 16307 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-249.5 parent: 2 - - uid: 10064 + - uid: 16308 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-253.5 parent: 2 - - uid: 10075 + - uid: 16309 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-249.5 parent: 2 - - uid: 10329 + - uid: 16310 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-258.5 parent: 2 - - uid: 10675 + - uid: 16311 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-56.5 parent: 2 - - uid: 11903 + - uid: 16312 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-387.5 parent: 2 - - uid: 11904 + - uid: 16313 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-387.5 parent: 2 - - uid: 11905 + - uid: 16314 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-388.5 parent: 2 - - uid: 11908 + - uid: 16315 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-387.5 parent: 2 - - uid: 11911 + - uid: 16316 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-383.5 parent: 2 - - uid: 11941 + - uid: 16317 components: - type: Transform pos: -2.5,-385.5 parent: 2 - - uid: 11942 + - uid: 16318 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-384.5 parent: 2 - - uid: 11947 + - uid: 16319 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-387.5 parent: 2 - - uid: 11948 + - uid: 16320 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-382.5 parent: 2 - - uid: 11949 + - uid: 16321 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-383.5 parent: 2 - - uid: 11950 + - uid: 16322 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-387.5 parent: 2 - - uid: 11952 + - uid: 16323 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-387.5 parent: 2 - - uid: 11994 + - uid: 16324 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-385.5 parent: 2 - - uid: 11995 - components: - - type: Transform - pos: -2.5,-171.5 - parent: 2 - - uid: 11996 - components: - - type: Transform - pos: -3.5,-171.5 - parent: 2 - - uid: 12000 - components: - - type: Transform - pos: -1.5,-171.5 - parent: 2 - - uid: 12001 + - uid: 16328 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-385.5 parent: 2 - - uid: 12002 + - uid: 16329 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-386.5 parent: 2 - - uid: 12003 + - uid: 16330 components: - type: Transform pos: -0.5,-171.5 parent: 2 - - uid: 12005 + - uid: 16331 components: - type: Transform pos: -5.5,-169.5 parent: 2 - - uid: 12006 + - uid: 16332 components: - type: Transform pos: -0.5,-170.5 parent: 2 - - uid: 12009 + - uid: 16333 components: - type: Transform pos: -4.5,-167.5 parent: 2 - - uid: 12010 + - uid: 16334 components: - type: Transform pos: -1.5,-167.5 parent: 2 - - uid: 12011 - components: - - type: Transform - pos: -4.5,-171.5 - parent: 2 - - uid: 12084 + - uid: 16335 components: - type: Transform pos: -0.5,-167.5 parent: 2 - - uid: 12085 + - uid: 16336 components: - type: Transform pos: -2.5,-167.5 parent: 2 - - uid: 12086 + - uid: 16337 components: - type: Transform pos: -3.5,-167.5 parent: 2 - - uid: 12096 + - uid: 16338 components: - type: Transform pos: -2.5,-164.5 parent: 2 - - uid: 12097 + - uid: 16339 components: - type: Transform pos: -1.5,-164.5 parent: 2 - - uid: 12110 + - uid: 16340 components: - type: Transform pos: -0.5,-166.5 parent: 2 - - uid: 12116 + - uid: 16341 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-374.5 parent: 2 - - uid: 12130 + - uid: 16342 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-374.5 parent: 2 - - uid: 12131 + - uid: 16343 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-374.5 parent: 2 - - uid: 12176 + - uid: 16344 components: - type: Transform pos: -5.5,-167.5 parent: 2 - - uid: 12204 + - uid: 16345 components: - type: Transform pos: -5.5,-166.5 parent: 2 - - uid: 12209 + - uid: 16346 components: - type: Transform pos: -5.5,-164.5 parent: 2 - - uid: 12215 + - uid: 16347 components: - type: Transform pos: -5.5,-165.5 parent: 2 - - uid: 13450 + - uid: 16348 components: - type: Transform pos: 4.5,-33.5 parent: 2 - - uid: 13469 + - uid: 16349 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-258.5 parent: 2 - - uid: 13471 + - uid: 16350 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-254.5 parent: 2 - - uid: 13990 + - uid: 16351 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-255.5 parent: 2 - - uid: 13996 + - uid: 16352 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-257.5 parent: 2 - - uid: 14001 + - uid: 16353 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-254.5 parent: 2 - - uid: 14021 + - uid: 16354 components: - type: Transform pos: -4.5,-164.5 parent: 2 - - uid: 14647 + - uid: 16355 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-246.5 parent: 2 - - uid: 14803 + - uid: 16356 components: - type: Transform pos: -2.5,-70.5 parent: 2 - proto: WallSolidDiagonal entities: - - uid: 1683 + - uid: 16357 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-93.5 parent: 2 - - uid: 1688 + - uid: 16358 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-83.5 parent: 2 - - uid: 2246 + - uid: 16359 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-108.5 parent: 2 - - uid: 2563 + - uid: 16360 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-147.5 parent: 2 - - uid: 2824 + - uid: 16361 components: - type: Transform pos: 2.5,-150.5 parent: 2 - - uid: 3225 + - uid: 16362 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-178.5 parent: 2 - - uid: 8850 + - uid: 16363 components: - type: Transform pos: -1.5,-191.5 parent: 2 - proto: WallSolidRust entities: - - uid: 459 + - uid: 16364 components: - type: Transform pos: -4.5,-33.5 parent: 2 - - uid: 460 + - uid: 16365 components: - type: Transform pos: -3.5,-33.5 parent: 2 - - uid: 759 + - uid: 16366 components: - type: Transform pos: -1.5,-35.5 parent: 2 - - uid: 963 + - uid: 16367 components: - type: Transform pos: 2.5,-63.5 parent: 2 - - uid: 1024 + - uid: 16368 components: - type: Transform pos: 3.5,-66.5 parent: 2 - - uid: 1082 + - uid: 16369 components: - type: Transform pos: -5.5,-93.5 parent: 2 - - uid: 1105 + - uid: 16370 components: - type: Transform pos: 3.5,-65.5 parent: 2 - - uid: 1128 + - uid: 16371 components: - type: Transform pos: 4.5,-65.5 parent: 2 - - uid: 1230 + - uid: 16372 components: - type: Transform pos: 2.5,-71.5 parent: 2 - - uid: 1641 + - uid: 16373 components: - type: Transform pos: -2.5,-83.5 parent: 2 - - uid: 1646 + - uid: 16374 components: - type: Transform pos: -4.5,-85.5 parent: 2 - - uid: 1647 + - uid: 16375 components: - type: Transform pos: -2.5,-84.5 parent: 2 - - uid: 1665 + - uid: 16376 components: - type: Transform pos: -5.5,-94.5 parent: 2 - - uid: 1666 + - uid: 16377 components: - type: Transform pos: -4.5,-94.5 parent: 2 - - uid: 1828 + - uid: 16378 components: - type: Transform pos: -2.5,-108.5 parent: 2 - - uid: 1873 + - uid: 16379 components: - type: Transform pos: -8.5,-117.5 parent: 2 - - uid: 1874 + - uid: 16380 components: - type: Transform pos: -7.5,-117.5 parent: 2 - - uid: 1879 + - uid: 16381 components: - type: Transform pos: -6.5,-120.5 parent: 2 - - uid: 1880 + - uid: 16382 components: - type: Transform pos: -5.5,-120.5 parent: 2 - - uid: 1886 + - uid: 16383 components: - type: Transform pos: -5.5,-121.5 parent: 2 - - uid: 1990 + - uid: 16384 components: - type: Transform pos: -3.5,-108.5 parent: 2 - - uid: 2556 + - uid: 16385 components: - type: Transform pos: 7.5,-145.5 parent: 2 - - uid: 2557 + - uid: 16386 components: - type: Transform pos: 7.5,-146.5 parent: 2 - - uid: 2558 + - uid: 16387 components: - type: Transform pos: 7.5,-147.5 parent: 2 - - uid: 2559 + - uid: 16388 components: - type: Transform pos: 6.5,-147.5 parent: 2 - - uid: 2605 + - uid: 16389 components: - type: Transform pos: -5.5,-137.5 parent: 2 - - uid: 2624 + - uid: 16390 components: - type: Transform pos: -4.5,-149.5 parent: 2 - - uid: 2625 + - uid: 16391 components: - type: Transform pos: -5.5,-149.5 parent: 2 - - uid: 2683 + - uid: 16392 components: - type: Transform pos: 6.5,-137.5 parent: 2 - - uid: 2684 + - uid: 16393 components: - type: Transform pos: 7.5,-137.5 parent: 2 - - uid: 2689 + - uid: 16394 components: - type: Transform pos: 2.5,-137.5 parent: 2 - - uid: 2691 + - uid: 16395 components: - type: Transform pos: 2.5,-136.5 parent: 2 - - uid: 2701 + - uid: 16396 components: - type: Transform pos: 6.5,-136.5 parent: 2 - - uid: 3160 + - uid: 16397 components: - type: Transform pos: 2.5,-163.5 parent: 2 - - uid: 3167 + - uid: 16398 components: - type: Transform pos: -0.5,-172.5 parent: 2 - - uid: 3179 + - uid: 16399 components: - type: Transform pos: -5.5,-176.5 parent: 2 - - uid: 3180 + - uid: 16400 components: - type: Transform pos: -5.5,-174.5 parent: 2 - - uid: 3184 + - uid: 16401 components: - type: Transform pos: -5.5,-172.5 parent: 2 - - uid: 3222 + - uid: 16402 components: - type: Transform pos: -4.5,-178.5 parent: 2 - - uid: 3223 + - uid: 16403 components: - type: Transform pos: -3.5,-178.5 parent: 2 - - uid: 3734 + - uid: 16404 components: - type: Transform pos: -0.5,-195.5 parent: 2 - - uid: 3735 + - uid: 16405 components: - type: Transform pos: -1.5,-195.5 parent: 2 - - uid: 3736 + - uid: 16406 components: - type: Transform pos: -1.5,-194.5 parent: 2 - - uid: 3771 + - uid: 16407 components: - type: Transform pos: -1.5,-196.5 parent: 2 - proto: WardrobeBlackFilled entities: - - uid: 14352 + - uid: 16408 components: - type: Transform pos: 13.5,-71.5 parent: 2 - proto: WardrobeBlueFilled entities: - - uid: 14389 + - uid: 16409 components: - type: Transform pos: 17.5,-67.5 parent: 2 - proto: WardrobeCargoFilled entities: - - uid: 6684 + - uid: 16410 components: - type: Transform pos: 1.5,-276.5 parent: 2 - proto: WardrobeGreenFilled entities: - - uid: 14365 + - uid: 16411 components: - type: Transform pos: 14.5,-71.5 parent: 2 - proto: WardrobeGreyFilled entities: - - uid: 14378 + - uid: 16412 components: - type: Transform pos: 17.5,-71.5 parent: 2 - proto: WardrobeMixedFilled entities: - - uid: 4710 + - uid: 16413 components: - type: Transform pos: 14.5,-67.5 parent: 2 - - uid: 14376 + - uid: 16414 components: - type: Transform pos: 16.5,-71.5 parent: 2 - - uid: 14382 + - uid: 16415 components: - type: Transform pos: 16.5,-75.5 parent: 2 - - uid: 14387 + - uid: 16416 components: - type: Transform pos: 16.5,-67.5 parent: 2 - proto: WardrobePinkFilled entities: - - uid: 14038 + - uid: 16417 components: - type: Transform pos: 13.5,-67.5 parent: 2 - - uid: 14385 + - uid: 16418 components: - type: Transform pos: 17.5,-75.5 parent: 2 - proto: WardrobePrisonFilled entities: - - uid: 11440 + - uid: 16419 components: - type: Transform pos: 6.5,-367.5 parent: 2 - - uid: 11441 + - uid: 16420 components: - type: Transform pos: 6.5,-364.5 parent: 2 - - uid: 11442 + - uid: 16421 components: - type: Transform pos: -5.5,-364.5 parent: 2 - - uid: 11443 + - uid: 16422 components: - type: Transform pos: -5.5,-367.5 parent: 2 - - uid: 11444 + - uid: 16423 components: - type: Transform pos: -5.5,-369.5 parent: 2 - - uid: 11445 + - uid: 16424 components: - type: Transform pos: 6.5,-369.5 parent: 2 - proto: WardrobeRoboticsFilled entities: - - uid: 9950 + - uid: 16425 components: - type: Transform pos: 3.5,-310.5 parent: 2 - proto: WardrobeSalvageFilled entities: - - uid: 8625 + - uid: 16426 components: - type: Transform pos: -6.5,-284.5 parent: 2 - proto: WardrobeScienceFilled entities: - - uid: 9828 + - uid: 16427 components: - type: Transform pos: -2.5,-311.5 parent: 2 - - uid: 10032 + - uid: 16428 components: - type: Transform pos: -2.5,-312.5 parent: 2 - proto: WardrobeVirologyFilled entities: - - uid: 3910 + - uid: 16429 components: - type: Transform pos: -5.5,-198.5 parent: 2 - proto: WardrobeWhiteFilled entities: - - uid: 14368 + - uid: 16430 components: - type: Transform pos: 14.5,-75.5 parent: 2 - proto: WardrobeYellowFilled entities: - - uid: 14367 + - uid: 16431 components: - type: Transform pos: 13.5,-75.5 parent: 2 - proto: WarningAir entities: - - uid: 8117 + - uid: 16432 components: - type: Transform rot: -1.5707963267948966 rad @@ -104675,7 +104108,7 @@ entities: parent: 2 - proto: WarningCO2 entities: - - uid: 12017 + - uid: 16433 components: - type: Transform rot: -1.5707963267948966 rad @@ -104683,21 +104116,21 @@ entities: parent: 2 - proto: WarningN2 entities: - - uid: 12222 + - uid: 16434 components: - type: Transform pos: -18.5,-258.5 parent: 2 - proto: WarningO2 entities: - - uid: 12569 + - uid: 16435 components: - type: Transform pos: -18.5,-256.5 parent: 2 - proto: WarningPlasma entities: - - uid: 6784 + - uid: 16436 components: - type: Transform rot: -1.5707963267948966 rad @@ -104705,7 +104138,7 @@ entities: parent: 2 - proto: WarpPoint entities: - - uid: 2875 + - uid: 16437 components: - type: Transform rot: 1.5707963267948966 rad @@ -104714,7 +104147,7 @@ entities: - type: WarpPoint location: 'Car 05: Chapel, Library' - type: BombingTarget - - uid: 2880 + - uid: 16438 components: - type: Transform rot: 1.5707963267948966 rad @@ -104723,7 +104156,7 @@ entities: - type: WarpPoint location: 'Car 01: Arrivals, Evacuation' - type: BombingTarget - - uid: 2881 + - uid: 16439 components: - type: Transform rot: 1.5707963267948966 rad @@ -104732,7 +104165,7 @@ entities: - type: WarpPoint location: 'Car 02: Bar' - type: BombingTarget - - uid: 2883 + - uid: 16440 components: - type: Transform rot: 1.5707963267948966 rad @@ -104741,7 +104174,7 @@ entities: - type: WarpPoint location: 'Car 03: Kitchen, Hydroponic' - type: BombingTarget - - uid: 2885 + - uid: 16441 components: - type: Transform rot: 1.5707963267948966 rad @@ -104750,7 +104183,7 @@ entities: - type: WarpPoint location: 'Car 04: HoP, Dormatories' - type: BombingTarget - - uid: 3150 + - uid: 16442 components: - type: Transform rot: 3.141592653589793 rad @@ -104759,7 +104192,7 @@ entities: - type: WarpPoint location: 'Car 06: Med' - type: BombingTarget - - uid: 4570 + - uid: 16443 components: - type: Transform rot: 3.141592653589793 rad @@ -104768,7 +104201,7 @@ entities: - type: WarpPoint location: 'Car 08: Solar panels' - type: BombingTarget - - uid: 8358 + - uid: 16444 components: - type: Transform pos: 0.5,-252.5 @@ -104776,7 +104209,7 @@ entities: - type: WarpPoint location: 'Car 09: Engneering' - type: BombingTarget - - uid: 8984 + - uid: 16445 components: - type: Transform rot: -1.5707963267948966 rad @@ -104785,7 +104218,7 @@ entities: - type: WarpPoint location: 'Car 10: Cargo' - type: BombingTarget - - uid: 10623 + - uid: 16446 components: - type: Transform pos: 0.5,-308.5 @@ -104793,7 +104226,7 @@ entities: - type: WarpPoint location: 'Car 11: RnD' - type: BombingTarget - - uid: 10805 + - uid: 16447 components: - type: Transform pos: 0.5,-338.5 @@ -104801,7 +104234,7 @@ entities: - type: WarpPoint location: 'Car 12: Brig' - type: BombingTarget - - uid: 11945 + - uid: 16448 components: - type: Transform rot: -1.5707963267948966 rad @@ -104812,129 +104245,129 @@ entities: - type: BombingTarget - proto: WaterCooler entities: - - uid: 204 + - uid: 16449 components: - type: Transform pos: 4.5,-12.5 parent: 2 - - uid: 2850 + - uid: 16450 components: - type: Transform pos: 2.5,-333.5 parent: 2 - - uid: 7572 + - uid: 16451 components: - type: Transform pos: 7.5,-199.5 parent: 2 - - uid: 13123 + - uid: 16452 components: - type: Transform pos: -0.5,-356.5 parent: 2 - proto: WaterTankFull entities: - - uid: 1733 + - uid: 16453 components: - type: Transform pos: -4.5,-53.5 parent: 2 - - uid: 2884 + - uid: 16454 components: - type: Transform pos: 4.5,-151.5 parent: 2 - - uid: 2897 + - uid: 16455 components: - type: Transform pos: -2.5,-150.5 parent: 2 - - uid: 9063 + - uid: 16456 components: - type: Transform pos: 0.5,-282.5 parent: 2 - - uid: 12119 + - uid: 16457 components: - type: Transform pos: -2.5,-374.5 parent: 2 - proto: WaterTankHighCapacity entities: - - uid: 2322 + - uid: 16458 components: - type: Transform pos: -2.5,-82.5 parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 10966 + - uid: 16459 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-338.5 parent: 2 - - uid: 12893 + - uid: 16460 components: - type: Transform pos: -0.5,-366.5 parent: 2 - proto: WeaponDisabler entities: - - uid: 21784 + - uid: 16461 components: - type: Transform pos: 0.10163805,-366.3702 parent: 2 - proto: WeaponDisablerPractice entities: - - uid: 11524 + - uid: 16462 components: - type: Transform pos: 5.5389,-350.683 parent: 2 - proto: WeaponLaserCarbinePractice entities: - - uid: 12363 + - uid: 16463 components: - type: Transform pos: 1.2513196,-368.03192 parent: 2 - proto: WeaponPistolMk58 entities: - - uid: 12774 + - uid: 5609 components: - type: Transform - parent: 12773 + parent: 5605 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponSubMachineGunWt550 entities: - - uid: 15297 + - uid: 16464 components: - type: Transform pos: -4.3806252,-346.3184 parent: 2 - proto: WeaponTurretSyndicateBroken entities: - - uid: 9688 + - uid: 16465 components: - type: Transform pos: 30.5,-308.5 parent: 2 - - uid: 9690 + - uid: 16466 components: - type: Transform pos: 30.5,-306.5 parent: 2 - - uid: 9705 + - uid: 16467 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-311.5 parent: 2 - - uid: 9706 + - uid: 16468 components: - type: Transform rot: 3.141592653589793 rad @@ -104942,14 +104375,14 @@ entities: parent: 2 - proto: WeaponWaterBlaster entities: - - uid: 9942 + - uid: 16469 components: - type: Transform pos: 3.4013178,-313.2785 parent: 2 - proto: WeaponWaterPistol entities: - - uid: 11014 + - uid: 16470 components: - type: Transform rot: -1.5707963267948966 rad @@ -104957,52 +104390,52 @@ entities: parent: 2 - proto: WeedSpray entities: - - uid: 26464 + - uid: 16471 components: - type: Transform pos: 0.072262526,-370.32172 parent: 2 - proto: WelderIndustrial entities: - - uid: 16800 + - uid: 3961 components: - type: Transform - parent: 16798 + parent: 3958 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WelderIndustrialAdvanced entities: - - uid: 14342 + - uid: 16472 components: - type: Transform pos: 8.601893,-250.1304 parent: 2 - proto: WelderMini entities: - - uid: 11436 + - uid: 16473 components: - type: Transform pos: 4.523847,-358.3457 parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 1597 + - uid: 16474 components: - type: Transform pos: 7.5,-68.5 parent: 2 - - uid: 2334 + - uid: 16475 components: - type: Transform pos: -5.5,-41.5 parent: 2 - - uid: 2882 + - uid: 16476 components: - type: Transform pos: 3.5,-151.5 parent: 2 - - uid: 6678 + - uid: 16477 components: - type: Transform anchored: True @@ -105010,58 +104443,58 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 8472 + - uid: 16478 components: - type: Transform pos: -7.5,-173.5 parent: 2 - - uid: 8514 + - uid: 16479 components: - type: Transform pos: 15.5,-242.5 parent: 2 - - uid: 8561 + - uid: 16480 components: - type: Transform pos: 3.5,-311.5 parent: 2 - - uid: 9064 + - uid: 16481 components: - type: Transform pos: 1.5,-282.5 parent: 2 - - uid: 15216 + - uid: 16482 components: - type: Transform pos: 8.5,-251.5 parent: 2 - - uid: 15270 + - uid: 16483 components: - type: Transform pos: 6.5,-245.5 parent: 2 - - uid: 16881 + - uid: 16484 components: - type: Transform pos: 10.5,-298.5 parent: 2 - proto: WetFloorSign entities: - - uid: 12681 + - uid: 16485 components: - type: Transform pos: -3.1763532,-150.31618 parent: 2 - proto: WindoorBarLocked entities: - - uid: 15584 + - uid: 16486 components: - type: Transform pos: -0.5,-65.5 parent: 2 - proto: WindoorHydroponicsLocked entities: - - uid: 1650 + - uid: 16487 components: - type: Transform rot: -1.5707963267948966 rad @@ -105069,12 +104502,12 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 2248 + - uid: 16488 components: - type: Transform pos: -0.5,-122.5 parent: 2 - - uid: 14877 + - uid: 16489 components: - type: Transform rot: 1.5707963267948966 rad @@ -105082,11 +104515,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14880: + 16552: - DoorStatus: DoorBolt - 5738: + 16529: - DoorStatus: DoorBolt - - uid: 14980 + - uid: 16490 components: - type: Transform rot: 1.5707963267948966 rad @@ -105094,41 +104527,41 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14978: + 16555: - DoorStatus: DoorBolt - 14979: + 16556: - DoorStatus: DoorBolt - proto: WindoorSecureArmoryLocked entities: - - uid: 93 + - uid: 16491 components: - type: Transform pos: 5.5,-341.5 parent: 2 - - uid: 2471 + - uid: 16492 components: - type: Transform pos: 5.5,-339.5 parent: 2 - - uid: 3680 + - uid: 16493 components: - type: Transform pos: 7.5,-341.5 parent: 2 - - uid: 7738 + - uid: 16494 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-339.5 parent: 2 - - uid: 10085 + - uid: 16495 components: - type: Transform pos: 1.5,-366.5 parent: 2 - proto: WindoorSecureBrigLocked entities: - - uid: 11002 + - uid: 16496 components: - type: Transform rot: 1.5707963267948966 rad @@ -105136,13 +104569,13 @@ entities: parent: 2 - proto: WindoorSecureCargoLocked entities: - - uid: 8504 + - uid: 16497 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-271.5 parent: 2 - - uid: 8537 + - uid: 16498 components: - type: Transform rot: 1.5707963267948966 rad @@ -105150,13 +104583,13 @@ entities: parent: 2 - proto: WindoorSecureChapelLocked entities: - - uid: 2687 + - uid: 16499 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-139.5 parent: 2 - - uid: 2694 + - uid: 16500 components: - type: Transform rot: 1.5707963267948966 rad @@ -105164,31 +104597,31 @@ entities: parent: 2 - proto: WindoorSecureChemistryLocked entities: - - uid: 2643 + - uid: 16501 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-170.5 parent: 2 - - uid: 3067 + - uid: 16502 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-170.5 parent: 2 - - uid: 3093 + - uid: 16503 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-168.5 parent: 2 - - uid: 3094 + - uid: 16504 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-167.5 parent: 2 - - uid: 3095 + - uid: 16505 components: - type: Transform rot: 1.5707963267948966 rad @@ -105196,13 +104629,13 @@ entities: parent: 2 - proto: WindoorSecureEngineeringLocked entities: - - uid: 8275 + - uid: 16506 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-251.5 parent: 2 - - uid: 8305 + - uid: 16507 components: - type: Transform rot: 1.5707963267948966 rad @@ -105210,26 +104643,19 @@ entities: parent: 2 - proto: WindoorSecureExternalLocked entities: - - uid: 164 + - uid: 16508 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-265.5 parent: 2 - - type: DeviceLinkSink - links: - - 15186 - - uid: 268 + - uid: 16509 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 640 - - 5092 - - uid: 278 + - uid: 16510 components: - type: Transform rot: -1.5707963267948966 rad @@ -105237,22 +104663,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 5 - links: - - 657 - - 656 - - 269 - - 20 - type: DeviceLinkSource linkedPorts: - 269: + 189: - DoorStatus: Close - 656: + 199: - DoorStatus: Close - 657: + 200: - DoorStatus: Close - 20: + 188: - DoorStatus: Close - - uid: 280 + - uid: 16511 components: - type: Transform rot: 1.5707963267948966 rad @@ -105260,22 +104681,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 662 - - 4694 - - 670 - - 667 - type: DeviceLinkSource linkedPorts: - 4694: + 212: - DoorStatus: Close - 670: + 205: - DoorStatus: Close - 667: + 204: - DoorStatus: Close - 662: + 202: - DoorStatus: Close - - uid: 282 + - uid: 16512 components: - type: Transform rot: 1.5707963267948966 rad @@ -105283,22 +104699,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 8195 - - 9555 - - 991 - - 671 - type: DeviceLinkSource linkedPorts: - 671: + 206: - DoorStatus: Close - 8195: + 222: - DoorStatus: Close - 9555: + 231: - DoorStatus: Close - 991: + 207: - DoorStatus: Close - - uid: 284 + - uid: 16513 components: - type: Transform rot: -1.5707963267948966 rad @@ -105306,42 +104717,29 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 8195 - - 9555 - - 991 - - 671 - type: DeviceLinkSource linkedPorts: - 991: + 207: - DoorStatus: Close - 9555: + 231: - DoorStatus: Close - 8195: + 222: - DoorStatus: Close - 671: + 206: - DoorStatus: Close - - uid: 333 + - uid: 16514 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 6286 - - 14796 - - uid: 605 + - uid: 16515 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 10531 - - 2244 - - uid: 708 + - uid: 16516 components: - type: Transform rot: 1.5707963267948966 rad @@ -105349,59 +104747,41 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 5467 - - 9685 - - 10646 - - 10132 - type: DeviceLinkSource linkedPorts: - 5467: + 216: - DoorStatus: Close - 9685: + 235: - DoorStatus: Close - 10132: + 236: - DoorStatus: Close - 10646: + 237: - DoorStatus: Close - - uid: 1335 + - uid: 16517 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-49.5 parent: 2 - - type: DeviceLinkSink - links: - - 2492 - - uid: 1791 + - uid: 16518 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-324.5 parent: 2 - - type: DeviceLinkSink - links: - - 10083 - - uid: 1812 + - uid: 16519 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-324.5 parent: 2 - - type: DeviceLinkSink - links: - - 10083 - - uid: 2646 + - uid: 16520 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 6286 - - 14796 - - uid: 3508 + - uid: 16521 components: - type: Transform rot: 1.5707963267948966 rad @@ -105409,10 +104789,7 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 1938 - - 16903 - - uid: 3544 + - uid: 16522 components: - type: Transform rot: -1.5707963267948966 rad @@ -105420,22 +104797,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9554 - - 8178 - - 12 - - 270 - type: DeviceLinkSource linkedPorts: - 270: + 190: - DoorStatus: Close - 8178: + 221: - DoorStatus: Close - 9554: + 230: - DoorStatus: Close - 12: + 187: - DoorStatus: Close - - uid: 3545 + - uid: 16523 components: - type: Transform rot: 1.5707963267948966 rad @@ -105443,22 +104815,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 8169 - - 9552 - - 283 - - 281 - type: DeviceLinkSource linkedPorts: - 281: + 195: - DoorStatus: Close - 8169: + 220: - DoorStatus: Close - 9552: + 228: - DoorStatus: Close - 283: + 196: - DoorStatus: Close - - uid: 3546 + - uid: 16524 components: - type: Transform rot: -1.5707963267948966 rad @@ -105466,22 +104833,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 662 - - 4694 - - 670 - - 667 - type: DeviceLinkSource linkedPorts: - 670: + 205: - DoorStatus: Close - 4694: + 212: - DoorStatus: Close - 662: + 202: - DoorStatus: Close - 667: + 204: - DoorStatus: Close - - uid: 3547 + - uid: 16525 components: - type: Transform rot: -1.5707963267948966 rad @@ -105489,22 +104851,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 4693 - - 4692 - - 276 - - 274 - type: DeviceLinkSource linkedPorts: - 274: + 191: - DoorStatus: Close - 4692: + 210: - DoorStatus: Close - 4693: + 211: - DoorStatus: Close - 276: + 192: - DoorStatus: Close - - uid: 5262 + - uid: 16526 components: - type: Transform rot: -1.5707963267948966 rad @@ -105512,22 +104869,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9558 - - 8678 - - 9375 - - 8674 - type: DeviceLinkSource linkedPorts: - 9558: + 234: - DoorStatus: Close - 8678: + 225: - DoorStatus: Close - 9375: + 226: - DoorStatus: Close - 8674: + 224: - DoorStatus: Close - - uid: 5463 + - uid: 16527 components: - type: Transform rot: 1.5707963267948966 rad @@ -105535,22 +104887,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9558 - - 8678 - - 9375 - - 8674 - type: DeviceLinkSource linkedPorts: - 9558: + 234: - DoorStatus: Close - 8678: + 225: - DoorStatus: Close - 9375: + 226: - DoorStatus: Close - 8674: + 224: - DoorStatus: Close - - uid: 5466 + - uid: 16528 components: - type: Transform rot: -1.5707963267948966 rad @@ -105558,32 +104905,23 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 6 - links: - - 5467 - - 9685 - - 10646 - - 10132 - type: DeviceLinkSource linkedPorts: - 5467: + 216: - DoorStatus: Close - 9685: + 235: - DoorStatus: Close - 10132: + 236: - DoorStatus: Close - 10646: + 237: - DoorStatus: Close - - uid: 5738 + - uid: 16529 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-130.5 parent: 2 - - type: DeviceLinkSink - links: - - 2690 - - 14877 - - uid: 8135 + - uid: 16530 components: - type: Transform rot: 1.5707963267948966 rad @@ -105591,22 +104929,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 658 - - 9553 - - 279 - - 277 - type: DeviceLinkSource linkedPorts: - 277: + 193: - DoorStatus: Close - 9553: + 229: - DoorStatus: Close - 658: + 201: - DoorStatus: Close - 279: + 194: - DoorStatus: Close - - uid: 8136 + - uid: 16531 components: - type: Transform rot: 1.5707963267948966 rad @@ -105614,22 +104947,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 4695 - - 9551 - - 666 - - 625 - type: DeviceLinkSource linkedPorts: - 625: + 198: - DoorStatus: Close - 9551: + 227: - DoorStatus: Close - 4695: + 213: - DoorStatus: Close - 666: + 203: - DoorStatus: Close - - uid: 8137 + - uid: 16532 components: - type: Transform rot: 1.5707963267948966 rad @@ -105637,22 +104965,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 5259 - - 9556 - - 1211 - - 1247 - type: DeviceLinkSource linkedPorts: - 1247: + 209: - DoorStatus: Close - 9556: + 232: - DoorStatus: Close - 5259: + 215: - DoorStatus: Close - 1211: + 208: - DoorStatus: Close - - uid: 9343 + - uid: 16533 components: - type: Transform rot: 1.5707963267948966 rad @@ -105660,22 +104983,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9554 - - 8178 - - 12 - - 270 - type: DeviceLinkSource linkedPorts: - 270: + 190: - DoorStatus: Close - 8178: + 221: - DoorStatus: Close - 9554: + 230: - DoorStatus: Close - 12: + 187: - DoorStatus: Close - - uid: 9346 + - uid: 16534 components: - type: Transform rot: 1.5707963267948966 rad @@ -105683,22 +105001,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 657 - - 656 - - 269 - - 20 - type: DeviceLinkSource linkedPorts: - 269: + 189: - DoorStatus: Close - 656: + 199: - DoorStatus: Close - 657: + 200: - DoorStatus: Close - 20: + 188: - DoorStatus: Close - - uid: 9347 + - uid: 16535 components: - type: Transform rot: 1.5707963267948966 rad @@ -105706,22 +105019,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 4693 - - 4692 - - 276 - - 274 - type: DeviceLinkSource linkedPorts: - 274: + 191: - DoorStatus: Close - 4692: + 210: - DoorStatus: Close - 4693: + 211: - DoorStatus: Close - 276: + 192: - DoorStatus: Close - - uid: 9374 + - uid: 16536 components: - type: Transform rot: -1.5707963267948966 rad @@ -105729,22 +105037,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 658 - - 9553 - - 279 - - 277 - type: DeviceLinkSource linkedPorts: - 277: + 193: - DoorStatus: Close - 9553: + 229: - DoorStatus: Close - 658: + 201: - DoorStatus: Close - 279: + 194: - DoorStatus: Close - - uid: 9423 + - uid: 16537 components: - type: Transform rot: -1.5707963267948966 rad @@ -105752,22 +105055,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 8169 - - 9552 - - 283 - - 281 - type: DeviceLinkSource linkedPorts: - 281: + 195: - DoorStatus: Close - 9552: + 228: - DoorStatus: Close - 8169: + 220: - DoorStatus: Close - 283: + 196: - DoorStatus: Close - - uid: 9433 + - uid: 16538 components: - type: Transform rot: -1.5707963267948966 rad @@ -105775,22 +105073,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 4695 - - 9551 - - 666 - - 625 - type: DeviceLinkSource linkedPorts: - 625: + 198: - DoorStatus: Close - 9551: + 227: - DoorStatus: Close - 4695: + 213: - DoorStatus: Close - 666: + 203: - DoorStatus: Close - - uid: 9439 + - uid: 16539 components: - type: Transform rot: -1.5707963267948966 rad @@ -105798,22 +105091,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 5259 - - 9556 - - 1211 - - 1247 - type: DeviceLinkSource linkedPorts: - 1247: + 209: - DoorStatus: Close - 9556: + 232: - DoorStatus: Close - 5259: + 215: - DoorStatus: Close - 1211: + 208: - DoorStatus: Close - - uid: 9455 + - uid: 16540 components: - type: Transform rot: -1.5707963267948966 rad @@ -105821,22 +105109,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9557 - - 5216 - - 8639 - - 616 - type: DeviceLinkSource linkedPorts: - 9557: + 233: - DoorStatus: Close - 5216: + 214: - DoorStatus: Close - 616: + 197: - DoorStatus: Close - 8639: + 223: - DoorStatus: Close - - uid: 9459 + - uid: 16541 components: - type: Transform rot: 1.5707963267948966 rad @@ -105844,130 +105127,83 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9557 - - 5216 - - 8639 - - 616 - type: DeviceLinkSource linkedPorts: - 9557: + 233: - DoorStatus: Close - 5216: + 214: - DoorStatus: Close - 8639: + 223: - DoorStatus: Close - 616: + 197: - DoorStatus: Close - - uid: 11820 + - uid: 16542 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-378.5 parent: 2 - - type: DeviceLinkSink - links: - - 11821 - - uid: 14751 + - uid: 16543 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 10531 - - 2244 - - uid: 14757 + - uid: 16544 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 14753 - - 45 - - uid: 14760 + - uid: 16545 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 14753 - - 45 - - uid: 14768 + - uid: 16546 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-49.5 parent: 2 - - type: DeviceLinkSink - links: - - 2492 - - uid: 14783 + - uid: 16547 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 640 - - 5092 - - uid: 14857 + - uid: 16548 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-103.5 parent: 2 - - type: DeviceLinkSink - links: - - 397 - - 1068 - - uid: 14858 + - uid: 16549 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-103.5 parent: 2 - - type: DeviceLinkSink - links: - - 622 - - 3782 - - uid: 14859 + - uid: 16550 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-103.5 parent: 2 - - type: DeviceLinkSink - links: - - 622 - - 3782 - - uid: 14860 + - uid: 16551 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-103.5 parent: 2 - - type: DeviceLinkSink - links: - - 397 - - 1068 - - uid: 14880 + - uid: 16552 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-130.5 parent: 2 - - type: DeviceLinkSink - links: - - 2690 - - 14877 - - uid: 14890 + - uid: 16553 components: - type: Transform rot: 1.5707963267948966 rad @@ -105975,10 +105211,7 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 16818 - - 2100 - - uid: 14891 + - uid: 16554 components: - type: Transform rot: -1.5707963267948966 rad @@ -105986,32 +105219,19 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 16818 - - 2100 - - uid: 14978 + - uid: 16555 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-158.5 parent: 2 - - type: DeviceLinkSink - links: - - 14946 - - 811 - - 14980 - - uid: 14979 + - uid: 16556 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-158.5 parent: 2 - - type: DeviceLinkSink - links: - - 14946 - - 811 - - 14980 - - uid: 15040 + - uid: 16557 components: - type: Transform rot: -1.5707963267948966 rad @@ -106019,61 +105239,39 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 1938 - - 16903 - - uid: 15117 + - uid: 16558 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-157.5 parent: 2 - - type: DeviceLinkSink - links: - - 1933 - - 1937 - - uid: 15118 + - uid: 16559 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-157.5 parent: 2 - - type: DeviceLinkSink - links: - - 1933 - - 1937 - - uid: 15152 + - uid: 16560 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-265.5 parent: 2 - - type: DeviceLinkSink - links: - - 15186 - - uid: 15193 + - uid: 16561 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-292.5 parent: 2 - - type: DeviceLinkSink - links: - - 2414 - - 2413 - - uid: 15194 + - uid: 16562 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-292.5 parent: 2 - - type: DeviceLinkSink - links: - - 2414 - - 2413 - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 2238 + - uid: 16563 components: - type: Transform rot: 3.141592653589793 rad @@ -106081,19 +105279,19 @@ entities: parent: 2 - proto: WindoorSecureKitchenLocked entities: - - uid: 5844 + - uid: 16564 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-89.5 parent: 2 - - uid: 5851 + - uid: 16565 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-88.5 parent: 2 - - uid: 5872 + - uid: 16566 components: - type: Transform rot: 1.5707963267948966 rad @@ -106101,19 +105299,19 @@ entities: parent: 2 - proto: WindoorSecureScienceLocked entities: - - uid: 10042 + - uid: 16567 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-301.5 parent: 2 - - uid: 10106 + - uid: 16568 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-302.5 parent: 2 - - uid: 10107 + - uid: 16569 components: - type: Transform rot: 1.5707963267948966 rad @@ -106121,7 +105319,7 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 11204 + - uid: 16570 components: - type: Transform rot: -1.5707963267948966 rad @@ -106129,13 +105327,13 @@ entities: parent: 2 - proto: WindoorServiceLocked entities: - - uid: 1649 + - uid: 16571 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-87.5 parent: 2 - - uid: 2741 + - uid: 16572 components: - type: Transform rot: 3.141592653589793 rad @@ -106143,176 +105341,176 @@ entities: parent: 2 - proto: Window entities: - - uid: 203 + - uid: 16573 components: - type: Transform pos: 1.5,-143.5 parent: 2 - - uid: 205 + - uid: 16574 components: - type: Transform pos: 1.5,-144.5 parent: 2 - - uid: 831 + - uid: 16575 components: - type: Transform pos: 1.5,-145.5 parent: 2 - - uid: 1011 + - uid: 16576 components: - type: Transform pos: 3.5,-12.5 parent: 2 - - uid: 1398 + - uid: 16577 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-285.5 parent: 2 - - uid: 1690 + - uid: 16578 components: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 2537 + - uid: 16579 components: - type: Transform pos: 1.5,-93.5 parent: 2 - - uid: 2538 + - uid: 16580 components: - type: Transform pos: 0.5,-93.5 parent: 2 - - uid: 2539 + - uid: 16581 components: - type: Transform pos: 1.5,-83.5 parent: 2 - - uid: 2996 + - uid: 16582 components: - type: Transform pos: 0.5,-83.5 parent: 2 - - uid: 3742 + - uid: 16583 components: - type: Transform pos: 4.5,-194.5 parent: 2 - - uid: 3743 + - uid: 16584 components: - type: Transform pos: 4.5,-193.5 parent: 2 - - uid: 3744 + - uid: 16585 components: - type: Transform pos: 4.5,-192.5 parent: 2 - - uid: 3769 + - uid: 16586 components: - type: Transform pos: -1.5,-197.5 parent: 2 - - uid: 5137 + - uid: 16587 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-11.5 parent: 2 - - uid: 7638 + - uid: 16588 components: - type: Transform pos: 14.5,-245.5 parent: 2 - - uid: 7758 + - uid: 16589 components: - type: Transform pos: 14.5,-246.5 parent: 2 - - uid: 8433 + - uid: 16590 components: - type: Transform pos: -4.5,-289.5 parent: 2 - - uid: 8490 + - uid: 16591 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-274.5 parent: 2 - - uid: 8521 + - uid: 16592 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-273.5 parent: 2 - - uid: 8538 + - uid: 16593 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-283.5 parent: 2 - - uid: 8585 + - uid: 16594 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-272.5 parent: 2 - - uid: 8627 + - uid: 16595 components: - type: Transform pos: -0.5,-275.5 parent: 2 - - uid: 8628 + - uid: 16596 components: - type: Transform pos: -1.5,-276.5 parent: 2 - - uid: 8652 + - uid: 16597 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-286.5 parent: 2 - - uid: 8658 + - uid: 16598 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-284.5 parent: 2 - - uid: 8676 + - uid: 16599 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-282.5 parent: 2 - - uid: 8815 + - uid: 16600 components: - type: Transform pos: 20.5,-245.5 parent: 2 - - uid: 8837 + - uid: 16601 components: - type: Transform pos: 20.5,-246.5 parent: 2 - - uid: 9000 + - uid: 16602 components: - type: Transform pos: 10.5,-279.5 parent: 2 - - uid: 9001 + - uid: 16603 components: - type: Transform pos: 9.5,-279.5 parent: 2 - - uid: 9003 + - uid: 16604 components: - type: Transform pos: 11.5,-279.5 parent: 2 - - uid: 10829 + - uid: 16605 components: - type: Transform rot: -1.5707963267948966 rad @@ -106320,47 +105518,47 @@ entities: parent: 2 - proto: WindowDiagonal entities: - - uid: 8503 + - uid: 16606 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-273.5 parent: 2 - - uid: 8518 + - uid: 16607 components: - type: Transform pos: -3.5,-272.5 parent: 2 - - uid: 8519 + - uid: 16608 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-274.5 parent: 2 - - uid: 8541 + - uid: 16609 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-283.5 parent: 2 - - uid: 8629 + - uid: 16610 components: - type: Transform pos: -1.5,-275.5 parent: 2 - - uid: 8635 + - uid: 16611 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-285.5 parent: 2 - - uid: 8636 + - uid: 16612 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-284.5 parent: 2 - - uid: 8644 + - uid: 16613 components: - type: Transform rot: 1.5707963267948966 rad @@ -106368,161 +105566,161 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 4161 + - uid: 16614 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-60.5 parent: 2 - - uid: 4162 + - uid: 16615 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-60.5 parent: 2 - - uid: 4164 + - uid: 16616 components: - type: Transform pos: -1.5,-65.5 parent: 2 - - uid: 4165 + - uid: 16617 components: - type: Transform pos: -2.5,-65.5 parent: 2 - - uid: 4166 + - uid: 16618 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-65.5 parent: 2 - - uid: 4167 + - uid: 16619 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-60.5 parent: 2 - - uid: 4168 + - uid: 16620 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-60.5 parent: 2 - - uid: 7898 + - uid: 16621 components: - type: Transform pos: 16.5,-58.5 parent: 2 - - uid: 11770 + - uid: 16622 components: - type: Transform pos: 14.5,-58.5 parent: 2 - proto: WindowFrostedDirectional entities: - - uid: 2303 + - uid: 16623 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-85.5 parent: 2 - - uid: 2313 + - uid: 16624 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-86.5 parent: 2 - - uid: 2314 + - uid: 16625 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-91.5 parent: 2 - - uid: 2315 + - uid: 16626 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-90.5 parent: 2 - - uid: 6627 + - uid: 16627 components: - type: Transform pos: 10.5,-161.5 parent: 2 - - uid: 7235 + - uid: 16628 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-163.5 parent: 2 - - uid: 7285 + - uid: 16629 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-163.5 parent: 2 - - uid: 7288 + - uid: 16630 components: - type: Transform pos: 11.5,-161.5 parent: 2 - - uid: 7289 + - uid: 16631 components: - type: Transform pos: 9.5,-161.5 parent: 2 - - uid: 7354 + - uid: 16632 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-163.5 parent: 2 - - uid: 7355 + - uid: 16633 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-156.5 parent: 2 - - uid: 7356 + - uid: 16634 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-156.5 parent: 2 - - uid: 9464 + - uid: 16635 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-309.5 parent: 2 - - uid: 9465 + - uid: 16636 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-309.5 parent: 2 - - uid: 9467 + - uid: 16637 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-309.5 parent: 2 - - uid: 9470 + - uid: 16638 components: - type: Transform pos: 22.5,-305.5 parent: 2 - - uid: 9471 + - uid: 16639 components: - type: Transform pos: 23.5,-305.5 parent: 2 - - uid: 9472 + - uid: 16640 components: - type: Transform pos: 21.5,-305.5 parent: 2 - - uid: 11203 + - uid: 16641 components: - type: Transform rot: -1.5707963267948966 rad @@ -106530,1773 +105728,1773 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 195 + - uid: 16642 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-23.5 parent: 2 - - uid: 271 + - uid: 16643 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-23.5 parent: 2 - - uid: 312 + - uid: 16644 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-266.5 parent: 2 - - uid: 363 + - uid: 16645 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-261.5 parent: 2 - - uid: 529 + - uid: 16646 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-30.5 parent: 2 - - uid: 556 + - uid: 16647 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-159.5 parent: 2 - - uid: 557 + - uid: 16648 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-267.5 parent: 2 - - uid: 581 + - uid: 16649 components: - type: Transform pos: -6.5,-131.5 parent: 2 - - uid: 588 + - uid: 16650 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-157.5 parent: 2 - - uid: 590 + - uid: 16651 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-185.5 parent: 2 - - uid: 600 + - uid: 16652 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-264.5 parent: 2 - - uid: 607 + - uid: 16653 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-21.5 parent: 2 - - uid: 609 + - uid: 16654 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-129.5 parent: 2 - - uid: 617 + - uid: 16655 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-75.5 parent: 2 - - uid: 644 + - uid: 16656 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-183.5 parent: 2 - - uid: 648 + - uid: 16657 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-30.5 parent: 2 - - uid: 649 + - uid: 16658 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 650 + - uid: 16659 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-30.5 parent: 2 - - uid: 654 + - uid: 16660 components: - type: Transform pos: -1.5,-29.5 parent: 2 - - uid: 655 + - uid: 16661 components: - type: Transform pos: -3.5,-29.5 parent: 2 - - uid: 668 + - uid: 16662 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-293.5 parent: 2 - - uid: 669 + - uid: 16663 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-291.5 parent: 2 - - uid: 702 + - uid: 16664 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 703 + - uid: 16665 components: - type: Transform pos: 2.5,-29.5 parent: 2 - - uid: 704 + - uid: 16666 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-30.5 parent: 2 - - uid: 705 + - uid: 16667 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-30.5 parent: 2 - - uid: 822 + - uid: 16668 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-163.5 parent: 2 - - uid: 885 + - uid: 16669 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-159.5 parent: 2 - - uid: 1455 + - uid: 16670 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-77.5 parent: 2 - - uid: 1580 + - uid: 16671 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-102.5 parent: 2 - - uid: 1925 + - uid: 16672 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-159.5 parent: 2 - - uid: 1926 + - uid: 16673 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-158.5 parent: 2 - - uid: 1943 + - uid: 16674 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-322.5 parent: 2 - - uid: 2077 + - uid: 16675 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-124.5 parent: 2 - - uid: 2179 + - uid: 16676 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-323.5 parent: 2 - - uid: 2240 + - uid: 16677 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-124.5 parent: 2 - - uid: 2241 + - uid: 16678 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-124.5 parent: 2 - - uid: 2242 + - uid: 16679 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-124.5 parent: 2 - - uid: 2278 + - uid: 16680 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-325.5 parent: 2 - - uid: 2333 + - uid: 16681 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-266.5 parent: 2 - - uid: 2394 + - uid: 16682 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-264.5 parent: 2 - - uid: 2483 + - uid: 16683 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-323.5 parent: 2 - - uid: 2654 + - uid: 16684 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-75.5 parent: 2 - - uid: 2656 + - uid: 16685 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-322.5 parent: 2 - - uid: 2686 + - uid: 16686 components: - type: Transform pos: 3.5,-137.5 parent: 2 - - uid: 2792 + - uid: 16687 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-157.5 parent: 2 - - uid: 2861 + - uid: 16688 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-155.5 parent: 2 - - uid: 3163 + - uid: 16689 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-261.5 parent: 2 - - uid: 3216 + - uid: 16690 components: - type: Transform pos: -11.5,-242.5 parent: 2 - - uid: 3217 + - uid: 16691 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-244.5 parent: 2 - - uid: 3503 + - uid: 16692 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-77.5 parent: 2 - - uid: 3504 + - uid: 16693 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-132.5 parent: 2 - - uid: 3548 + - uid: 16694 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-210.5 parent: 2 - - uid: 3555 + - uid: 16695 components: - type: Transform pos: -8.5,-242.5 parent: 2 - - uid: 3601 + - uid: 16696 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-244.5 parent: 2 - - uid: 3645 + - uid: 16697 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-244.5 parent: 2 - - uid: 3739 + - uid: 16698 components: - type: Transform pos: -9.5,-242.5 parent: 2 - - uid: 3770 + - uid: 16699 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-237.5 parent: 2 - - uid: 3783 + - uid: 16700 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-185.5 parent: 2 - - uid: 3836 + - uid: 16701 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-183.5 parent: 2 - - uid: 3851 + - uid: 16702 components: - type: Transform pos: -7.5,-242.5 parent: 2 - - uid: 4040 + - uid: 16703 components: - type: Transform pos: -10.5,-242.5 parent: 2 - - uid: 4110 + - uid: 16704 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-244.5 parent: 2 - - uid: 4188 + - uid: 16705 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-249.5 parent: 2 - - uid: 4209 + - uid: 16706 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-249.5 parent: 2 - - uid: 4217 + - uid: 16707 components: - type: Transform pos: -11.5,-247.5 parent: 2 - - uid: 4218 + - uid: 16708 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-261.5 parent: 2 - - uid: 4219 + - uid: 16709 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-261.5 parent: 2 - - uid: 4297 + - uid: 16710 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-104.5 parent: 2 - - uid: 4298 + - uid: 16711 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-104.5 parent: 2 - - uid: 4312 + - uid: 16712 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-129.5 parent: 2 - - uid: 4314 + - uid: 16713 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-156.5 parent: 2 - - uid: 4355 + - uid: 16714 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-50.5 parent: 2 - - uid: 4419 + - uid: 16715 components: - type: Transform pos: -10.5,-247.5 parent: 2 - - uid: 4520 + - uid: 16716 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-48.5 parent: 2 - - uid: 4597 + - uid: 16717 components: - type: Transform pos: -8.5,-259.5 parent: 2 - - uid: 4630 + - uid: 16718 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-75.5 parent: 2 - - uid: 4685 + - uid: 16719 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-77.5 parent: 2 - - uid: 4690 + - uid: 16720 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-21.5 parent: 2 - - uid: 4691 + - uid: 16721 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-21.5 parent: 2 - - uid: 4735 + - uid: 16722 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-48.5 parent: 2 - - uid: 4750 + - uid: 16723 components: - type: Transform pos: -9.5,-259.5 parent: 2 - - uid: 5012 + - uid: 16724 components: - type: Transform pos: -5.5,-131.5 parent: 2 - - uid: 5464 + - uid: 16725 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-323.5 parent: 2 - - uid: 6188 + - uid: 16726 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-165.5 parent: 2 - - uid: 6304 + - uid: 16727 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-185.5 parent: 2 - - uid: 6518 + - uid: 16728 components: - type: Transform pos: -9.5,-166.5 parent: 2 - - uid: 6625 + - uid: 16729 components: - type: Transform pos: -9.5,-247.5 parent: 2 - - uid: 6650 + - uid: 16730 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-261.5 parent: 2 - - uid: 6667 + - uid: 16731 components: - type: Transform pos: -11.5,-259.5 parent: 2 - - uid: 6671 + - uid: 16732 components: - type: Transform pos: -10.5,-259.5 parent: 2 - - uid: 6745 + - uid: 16733 components: - type: Transform pos: -9.5,-161.5 parent: 2 - - uid: 7439 + - uid: 16734 components: - type: Transform pos: 12.5,-247.5 parent: 2 - - uid: 7440 + - uid: 16735 components: - type: Transform pos: 13.5,-247.5 parent: 2 - - uid: 7450 + - uid: 16736 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-151.5 parent: 2 - - uid: 7508 + - uid: 16737 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-325.5 parent: 2 - - uid: 7742 + - uid: 16738 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-244.5 parent: 2 - - uid: 7915 + - uid: 16739 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-244.5 parent: 2 - - uid: 7916 + - uid: 16740 components: - type: Transform pos: 9.5,-242.5 parent: 2 - - uid: 7917 + - uid: 16741 components: - type: Transform pos: 10.5,-242.5 parent: 2 - - uid: 7918 + - uid: 16742 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-257.5 parent: 2 - - uid: 7922 + - uid: 16743 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-257.5 parent: 2 - - uid: 7937 + - uid: 16744 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-164.5 parent: 2 - - uid: 8138 + - uid: 16745 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-264.5 parent: 2 - - uid: 8139 + - uid: 16746 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-239.5 parent: 2 - - uid: 8141 + - uid: 16747 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-212.5 parent: 2 - - uid: 8143 + - uid: 16748 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-131.5 parent: 2 - - uid: 8144 + - uid: 16749 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-158.5 parent: 2 - - uid: 8150 + - uid: 16750 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 - - uid: 8152 + - uid: 16751 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-77.5 parent: 2 - - uid: 8176 + - uid: 16752 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-261.5 parent: 2 - - uid: 8204 + - uid: 16753 components: - type: Transform pos: 10.5,-259.5 parent: 2 - - uid: 8220 + - uid: 16754 components: - type: Transform pos: 13.5,-242.5 parent: 2 - - uid: 8421 + - uid: 16755 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-361.5 parent: 2 - - uid: 8479 + - uid: 16756 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-249.5 parent: 2 - - uid: 8683 + - uid: 16757 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-293.5 parent: 2 - - uid: 8686 + - uid: 16758 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-323.5 parent: 2 - - uid: 8824 + - uid: 16759 components: - type: Transform pos: 13.5,-259.5 parent: 2 - - uid: 8945 + - uid: 16760 components: - type: Transform pos: 11.5,-259.5 parent: 2 - - uid: 8947 + - uid: 16761 components: - type: Transform pos: 12.5,-259.5 parent: 2 - - uid: 9393 + - uid: 16762 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-168.5 parent: 2 - - uid: 9454 + - uid: 16763 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-266.5 parent: 2 - - uid: 9462 + - uid: 16764 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-212.5 parent: 2 - - uid: 9500 + - uid: 16765 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-210.5 parent: 2 - - uid: 9501 + - uid: 16766 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-239.5 parent: 2 - - uid: 9503 + - uid: 16767 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-237.5 parent: 2 - - uid: 9504 + - uid: 16768 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-75.5 parent: 2 - - uid: 9536 + - uid: 16769 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-131.5 parent: 2 - - uid: 9539 + - uid: 16770 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-102.5 parent: 2 - - uid: 9541 + - uid: 16771 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-156.5 parent: 2 - - uid: 9547 + - uid: 16772 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-158.5 parent: 2 - - uid: 9548 + - uid: 16773 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-75.5 parent: 2 - - uid: 9549 + - uid: 16774 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-23.5 parent: 2 - - uid: 9550 + - uid: 16775 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-50.5 parent: 2 - - uid: 9684 + - uid: 16776 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-325.5 parent: 2 - - uid: 9686 + - uid: 16777 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-291.5 parent: 2 - - uid: 9854 + - uid: 16778 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-257.5 parent: 2 - - uid: 10096 + - uid: 16779 components: - type: Transform pos: 11.5,-242.5 parent: 2 - - uid: 10103 + - uid: 16780 components: - type: Transform pos: -1.5,-304.5 parent: 2 - - uid: 10104 + - uid: 16781 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-304.5 parent: 2 - - uid: 10105 + - uid: 16782 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-300.5 parent: 2 - - uid: 10108 + - uid: 16783 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-300.5 parent: 2 - - uid: 10134 + - uid: 16784 components: - type: Transform pos: 12.5,-242.5 parent: 2 - - uid: 10143 + - uid: 16785 components: - type: Transform pos: 11.5,-247.5 parent: 2 - - uid: 10159 + - uid: 16786 components: - type: Transform pos: 10.5,-247.5 parent: 2 - - uid: 10170 + - uid: 16787 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-244.5 parent: 2 - - uid: 10276 + - uid: 16788 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-244.5 parent: 2 - - uid: 10328 + - uid: 16789 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-244.5 parent: 2 - - uid: 10330 + - uid: 16790 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-261.5 parent: 2 - - uid: 10532 + - uid: 16791 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-77.5 parent: 2 - - uid: 11732 + - uid: 16792 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-379.5 parent: 2 - - uid: 11817 + - uid: 16793 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-379.5 parent: 2 - - uid: 11818 + - uid: 16794 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-377.5 parent: 2 - - uid: 12064 + - uid: 16795 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-183.5 parent: 2 - - uid: 12094 + - uid: 16796 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-261.5 parent: 2 - - uid: 12342 + - uid: 16797 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-325.5 parent: 2 - - uid: 12567 + - uid: 16798 components: - type: Transform pos: -8.5,-161.5 parent: 2 - - uid: 12880 + - uid: 16799 components: - type: Transform pos: 0.5,-366.5 parent: 2 - - uid: 12881 + - uid: 16800 components: - type: Transform pos: -0.5,-366.5 parent: 2 - - uid: 13350 + - uid: 16801 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-257.5 parent: 2 - - uid: 13379 + - uid: 16802 components: - type: Transform pos: 11.5,-80.5 parent: 2 - - uid: 13458 + - uid: 16803 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-136.5 parent: 2 - - uid: 14026 + - uid: 16804 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-129.5 parent: 2 - - uid: 14029 + - uid: 16805 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-142.5 parent: 2 - - uid: 14030 + - uid: 16806 components: - type: Transform pos: 10.5,-140.5 parent: 2 - - uid: 14037 + - uid: 16807 components: - type: Transform pos: 11.5,-140.5 parent: 2 - - uid: 14039 + - uid: 16808 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-142.5 parent: 2 - - uid: 14040 + - uid: 16809 components: - type: Transform pos: 10.5,-149.5 parent: 2 - - uid: 14041 + - uid: 16810 components: - type: Transform pos: 11.5,-149.5 parent: 2 - - uid: 14042 + - uid: 16811 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-151.5 parent: 2 - - uid: 14043 + - uid: 16812 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-308.5 parent: 2 - - uid: 14044 + - uid: 16813 components: - type: Transform pos: 14.5,-306.5 parent: 2 - - uid: 14045 + - uid: 16814 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-308.5 parent: 2 - - uid: 14046 + - uid: 16815 components: - type: Transform pos: 16.5,-306.5 parent: 2 - - uid: 14047 + - uid: 16816 components: - type: Transform pos: 15.5,-306.5 parent: 2 - - uid: 14048 + - uid: 16817 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-308.5 parent: 2 - - uid: 14085 + - uid: 16818 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-136.5 parent: 2 - - uid: 14086 + - uid: 16819 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-135.5 parent: 2 - - uid: 14087 + - uid: 16820 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-134.5 parent: 2 - - uid: 14088 + - uid: 16821 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-133.5 parent: 2 - - uid: 14092 + - uid: 16822 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-65.5 parent: 2 - - uid: 14261 + - uid: 16823 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-71.5 parent: 2 - - uid: 14262 + - uid: 16824 components: - type: Transform pos: 10.5,-80.5 parent: 2 - - uid: 14263 + - uid: 16825 components: - type: Transform pos: 9.5,-80.5 parent: 2 - - uid: 14264 + - uid: 16826 components: - type: Transform pos: 8.5,-80.5 parent: 2 - - uid: 14266 + - uid: 16827 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-82.5 parent: 2 - - uid: 14267 + - uid: 16828 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-82.5 parent: 2 - - uid: 14268 + - uid: 16829 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-82.5 parent: 2 - - uid: 14269 + - uid: 16830 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-82.5 parent: 2 - - uid: 14270 + - uid: 16831 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-71.5 parent: 2 - - uid: 14271 + - uid: 16832 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-71.5 parent: 2 - - uid: 14273 + - uid: 16833 components: - type: Transform pos: 9.5,-69.5 parent: 2 - - uid: 14274 + - uid: 16834 components: - type: Transform pos: 10.5,-69.5 parent: 2 - - uid: 14275 + - uid: 16835 components: - type: Transform pos: 11.5,-69.5 parent: 2 - - uid: 14283 + - uid: 16836 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-163.5 parent: 2 - - uid: 14332 + - uid: 16837 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-65.5 parent: 2 - - uid: 14604 + - uid: 16838 components: - type: Transform pos: -10.5,-131.5 parent: 2 - - uid: 14608 + - uid: 16839 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-244.5 parent: 2 - - uid: 14610 + - uid: 16840 components: - type: Transform pos: -9.5,-131.5 parent: 2 - - uid: 14611 + - uid: 16841 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-168.5 parent: 2 - - uid: 14733 + - uid: 16842 components: - type: Transform pos: -8.5,-131.5 parent: 2 - - uid: 14750 + - uid: 16843 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-23.5 parent: 2 - - uid: 14752 + - uid: 16844 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-21.5 parent: 2 - - uid: 14756 + - uid: 16845 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-23.5 parent: 2 - - uid: 14758 + - uid: 16846 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-21.5 parent: 2 - - uid: 14759 + - uid: 16847 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-21.5 parent: 2 - - uid: 14761 + - uid: 16848 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-23.5 parent: 2 - - uid: 14765 + - uid: 16849 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-50.5 parent: 2 - - uid: 14767 + - uid: 16850 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-48.5 parent: 2 - - uid: 14769 + - uid: 16851 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-50.5 parent: 2 - - uid: 14782 + - uid: 16852 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-75.5 parent: 2 - - uid: 14784 + - uid: 16853 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-77.5 parent: 2 - - uid: 14849 + - uid: 16854 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-104.5 parent: 2 - - uid: 14850 + - uid: 16855 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-102.5 parent: 2 - - uid: 14851 + - uid: 16856 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-104.5 parent: 2 - - uid: 14852 + - uid: 16857 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-102.5 parent: 2 - - uid: 14853 + - uid: 16858 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-104.5 parent: 2 - - uid: 14854 + - uid: 16859 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-102.5 parent: 2 - - uid: 14855 + - uid: 16860 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-102.5 parent: 2 - - uid: 14856 + - uid: 16861 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-104.5 parent: 2 - - uid: 14876 + - uid: 16862 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-131.5 parent: 2 - - uid: 14878 + - uid: 16863 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-132.5 parent: 2 - - uid: 14879 + - uid: 16864 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-131.5 parent: 2 - - uid: 14881 + - uid: 16865 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-129.5 parent: 2 - - uid: 14883 + - uid: 16866 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-131.5 parent: 2 - - uid: 14884 + - uid: 16867 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-129.5 parent: 2 - - uid: 14887 + - uid: 16868 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-131.5 parent: 2 - - uid: 14888 + - uid: 16869 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-129.5 parent: 2 - - uid: 14903 + - uid: 16870 components: - type: Transform pos: -7.5,-131.5 parent: 2 - - uid: 14908 + - uid: 16871 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-133.5 parent: 2 - - uid: 14909 + - uid: 16872 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-133.5 parent: 2 - - uid: 14910 + - uid: 16873 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-134.5 parent: 2 - - uid: 14918 + - uid: 16874 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-136.5 parent: 2 - - uid: 14931 + - uid: 16875 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-137.5 parent: 2 - - uid: 14932 + - uid: 16876 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-138.5 parent: 2 - - uid: 14933 + - uid: 16877 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-139.5 parent: 2 - - uid: 14934 + - uid: 16878 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-140.5 parent: 2 - - uid: 14935 + - uid: 16879 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-141.5 parent: 2 - - uid: 14936 + - uid: 16880 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-142.5 parent: 2 - - uid: 14937 + - uid: 16881 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-143.5 parent: 2 - - uid: 14938 + - uid: 16882 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-144.5 parent: 2 - - uid: 14939 + - uid: 16883 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-145.5 parent: 2 - - uid: 14940 + - uid: 16884 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-146.5 parent: 2 - - uid: 14941 + - uid: 16885 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-147.5 parent: 2 - - uid: 14942 + - uid: 16886 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-148.5 parent: 2 - - uid: 14943 + - uid: 16887 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-149.5 parent: 2 - - uid: 14944 + - uid: 16888 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-150.5 parent: 2 - - uid: 14945 + - uid: 16889 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-151.5 parent: 2 - - uid: 14977 + - uid: 16890 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-156.5 parent: 2 - - uid: 14981 + - uid: 16891 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-157.5 parent: 2 - - uid: 14982 + - uid: 16892 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-157.5 parent: 2 - - uid: 14983 + - uid: 16893 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-156.5 parent: 2 - - uid: 14984 + - uid: 16894 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-155.5 parent: 2 - - uid: 14985 + - uid: 16895 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-155.5 parent: 2 - - uid: 14986 + - uid: 16896 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-154.5 parent: 2 - - uid: 14987 + - uid: 16897 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-153.5 parent: 2 - - uid: 14988 + - uid: 16898 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-152.5 parent: 2 - - uid: 14989 + - uid: 16899 components: - type: Transform pos: -7.5,-153.5 parent: 2 - - uid: 14990 + - uid: 16900 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-153.5 parent: 2 - - uid: 15039 + - uid: 16901 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-185.5 parent: 2 - - uid: 15041 + - uid: 16902 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-183.5 parent: 2 - - uid: 15050 + - uid: 16903 components: - type: Transform pos: 8.5,-189.5 parent: 2 - - uid: 15051 + - uid: 16904 components: - type: Transform pos: 9.5,-189.5 parent: 2 - - uid: 15052 + - uid: 16905 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-190.5 parent: 2 - - uid: 15053 + - uid: 16906 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-191.5 parent: 2 - - uid: 15054 + - uid: 16907 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-192.5 parent: 2 - - uid: 15055 + - uid: 16908 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-193.5 parent: 2 - - uid: 15056 + - uid: 16909 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-194.5 parent: 2 - - uid: 15057 + - uid: 16910 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-195.5 parent: 2 - - uid: 15058 + - uid: 16911 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-196.5 parent: 2 - - uid: 15059 + - uid: 16912 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-197.5 parent: 2 - - uid: 15060 + - uid: 16913 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-198.5 parent: 2 - - uid: 15061 + - uid: 16914 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-199.5 parent: 2 - - uid: 15062 + - uid: 16915 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-200.5 parent: 2 - - uid: 15063 + - uid: 16916 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-201.5 parent: 2 - - uid: 15064 + - uid: 16917 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-202.5 parent: 2 - - uid: 15065 + - uid: 16918 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-203.5 parent: 2 - - uid: 15066 + - uid: 16919 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-204.5 parent: 2 - - uid: 15067 + - uid: 16920 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-205.5 parent: 2 - - uid: 15068 + - uid: 16921 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-206.5 parent: 2 - - uid: 15069 + - uid: 16922 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-206.5 parent: 2 - - uid: 15070 + - uid: 16923 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-202.5 parent: 2 - - uid: 15071 + - uid: 16924 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-201.5 parent: 2 - - uid: 15072 + - uid: 16925 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-204.5 parent: 2 - - uid: 15073 + - uid: 16926 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-203.5 parent: 2 - - uid: 15074 + - uid: 16927 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-202.5 parent: 2 - - uid: 15075 + - uid: 16928 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-193.5 parent: 2 - - uid: 15076 + - uid: 16929 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-192.5 parent: 2 - - uid: 15077 + - uid: 16930 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-191.5 parent: 2 - - uid: 15078 + - uid: 16931 components: - type: Transform pos: 11.5,-194.5 parent: 2 - - uid: 15079 + - uid: 16932 components: - type: Transform pos: 10.5,-193.5 parent: 2 - - uid: 15080 + - uid: 16933 components: - type: Transform pos: 8.5,-204.5 parent: 2 - - uid: 15081 + - uid: 16934 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-191.5 parent: 2 - - uid: 15113 + - uid: 16935 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-156.5 parent: 2 - - uid: 15114 + - uid: 16936 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-156.5 parent: 2 - - uid: 15115 + - uid: 16937 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-158.5 parent: 2 - - uid: 15116 + - uid: 16938 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-159.5 parent: 2 - - uid: 15149 + - uid: 16939 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-267.5 parent: 2 - - uid: 15150 + - uid: 16940 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-266.5 parent: 2 - - uid: 15151 + - uid: 16941 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-264.5 parent: 2 - - uid: 15189 + - uid: 16942 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-293.5 parent: 2 - - uid: 15190 + - uid: 16943 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-291.5 parent: 2 - - uid: 15191 + - uid: 16944 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-293.5 parent: 2 - - uid: 15192 + - uid: 16945 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-291.5 parent: 2 - - uid: 15786 + - uid: 16946 components: - type: Transform pos: -8.5,-166.5 parent: 2 - - uid: 16514 + - uid: 16947 components: - type: Transform rot: 3.141592653589793 rad @@ -108314,37 +107512,37 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-167.5 parent: 2 - - uid: 16951 + - uid: 16950 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-166.5 parent: 2 - - uid: 16952 + - uid: 16951 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-165.5 parent: 2 - - uid: 16953 + - uid: 16952 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-164.5 parent: 2 - - uid: 16954 + - uid: 16953 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-163.5 parent: 2 - - uid: 16955 + - uid: 16954 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-162.5 parent: 2 - - uid: 16956 + - uid: 16955 components: - type: Transform rot: 1.5707963267948966 rad @@ -108352,38 +107550,38 @@ entities: parent: 2 - proto: Wirecutter entities: - - uid: 9673 + - uid: 16956 components: - type: Transform pos: 22.367733,-317.24506 parent: 2 - proto: WoodenSupportBeam entities: - - uid: 2753 + - uid: 16957 components: - type: Transform pos: -4.5,-143.5 parent: 2 - - uid: 2754 + - uid: 16958 components: - type: Transform pos: -3.5,-145.5 parent: 2 - proto: WoodenSupportWallBroken entities: - - uid: 2755 + - uid: 16959 components: - type: Transform pos: -4.5,-147.5 parent: 2 - proto: Wrench entities: - - uid: 2294 + - uid: 16960 components: - type: Transform pos: -2.6635373,-80.719284 parent: 2 - - uid: 10023 + - uid: 16961 components: - type: Transform rot: -1.5707963267948966 rad diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml index ae57ea63421..71d3f00df35 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml @@ -247,6 +247,19 @@ - id: DoubleEmergencyOxygenTankFilled - id: DoubleEmergencyNitrogenTankFilled +- type: entity + parent: ClothingBackpackDuffelSyndicateBundle + id: ClothingBackpackDuffelSyndicateRaidBundle + name: syndicate raid suit bundle + description: "Contains the Syndicate's durable raid armor suit." + components: + - type: StorageFill + contents: + - id: ClothingOuterArmorRaid + - id: ClothingHeadHelmetRaid + - id: ClothingMaskGasSyndicate + - id: ClothingHandsGlovesCombat + - type: entity parent: ClothingBackpackDuffelSyndicateBundle id: ClothingBackpackDuffelSyndicateHardsuitBundle diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index b5c2b3354d1..01d0b796574 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -978,7 +978,7 @@ - type: listing id: UplinkReinforcementRadioSyndicate name: uplink-reinforcement-radio-name - description: uplink-reinforcement-radio-desc + description: uplink-reinforcement-radio-traitor-desc productEntity: ReinforcementRadioSyndicate icon: { sprite: Objects/Devices/communication.rsi, state: old-radio-urist } cost: @@ -994,9 +994,9 @@ # Goobstation - Nukeop reinforcement - type: listing - id: UplinkReinforcementRadioSyndicateNukeops # Version for Nukeops that spawns another nuclear operative. - name: uplink-operative-radio-name - description: uplink-operative-radio-desc + id: UplinkReinforcementRadioSyndicateNukeops # Version for Nukeops that spawns an agent with the NukeOperative component. + name: uplink-reinforcement-radio-name + description: uplink-reinforcement-radio-nukeops-desc productEntity: ReinforcementRadioSyndicateNukeops icon: { sprite: Objects/Devices/communication.rsi, state: old-radio-urist } cost: @@ -1405,6 +1405,22 @@ categories: - UplinkWearables +- type: listing + id: UplinkClothingOuterArmorRaid + name: uplink-syndie-raid-name + description: uplink-syndie-raid-desc + icon: { sprite: /Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi, state: icon } + productEntity: ClothingBackpackDuffelSyndicateRaidBundle + cost: + Telecrystal: 8 + categories: + - UplinkWearables + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + - type: listing id: UplinkHardsuitSyndieElite name: uplink-hardsuit-syndieelite-name diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index 7f0c0573005..ffa5747e871 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -111,6 +111,8 @@ - state: equipped-head - state: equipped-head-unshaded shader: unshaded + - type: PointLight + radius: 6 - type: PressureProtection highPressureMultiplier: 0.72 lowPressureMultiplier: 1000 diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index a01d6fae519..b44508d4a37 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -357,6 +357,24 @@ - type: Clothing sprite: Clothing/Head/Helmets/ert_janitor.rsi +- type: entity + parent: ClothingHeadHelmetBasic + id: ClothingHeadHelmetRaid + name: syndicate raid helmet + description: An armored helmet for use with the syndicate raid suit. Very stylish. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/syndie-raid.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/syndie-raid.rsi + - type: Armor + modifiers: #There's gotta be SOME reason to use this over other helmets. + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 + Heat: 0.85 + #Bone Helmet - type: entity parent: ClothingHeadHelmetBasic diff --git a/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml b/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml index d7f04f49bc3..608f061dd89 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml @@ -39,3 +39,4 @@ tags: - Scarf - ClothMade + - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/Neck/specific.yml b/Resources/Prototypes/Entities/Clothing/Neck/specific.yml index 56fddceaad6..b98cdd02e0c 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/specific.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity parent: ClothingNeckBase id: ClothingNeckChameleon name: striped red scarf @@ -12,7 +12,7 @@ - type: Clothing sprite: Clothing/Neck/Scarfs/red.rsi - type: ChameleonClothing - slot: [neck] + slot: [NECK] default: ClothingNeckScarfStripedRed - type: UserInterface interfaces: diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 606af0b127a..6de0c78220f 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -99,6 +99,78 @@ reflects: - Energy +- type: entity + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] + id: ClothingOuterArmorRaid + name: syndicate raid suit + description: A somewhat flexible and well-armored suit with a powerful shoulder mounted flashlight manufactured in the Gorlex Marauder's iconic blood-red color scheme, it does not protect it's wearer from space. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Armor/syndie-raid.rsi + layers: + - state: icon + - state: light-overlay + visible: false + shader: unshaded + - type: Clothing + sprite: Clothing/OuterClothing/Armor/syndie-raid.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.35 + Slash: 0.35 + Piercing: 0.35 + Heat: 0.35 + Caustic: 0.5 + - type: ExplosionResistance + damageCoefficient: 0.35 + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.9 + #Shoulder mounted flashlight + - type: ToggleableLightVisuals + spriteLayer: light + clothingVisuals: + outerClothing: + - state: equipped-OUTERCLOTHING-light + shader: unshaded + - type: Appearance + - type: HandheldLight + addPrefix: false + blinkingBehaviourId: blinking + radiatingBehaviourId: radiating + - type: PointLight + enabled: false + color: "#80ff80" + radius: 5 + energy: 2 + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + netsync: false + - type: LightBehaviour + behaviours: + - !type:FadeBehaviour + id: radiating + interpolate: Linear + maxDuration: 2.0 + startValue: 3.0 + endValue: 2.0 + isLooped: true + reverseWhenFinished: true + - !type:PulseBehaviour + id: blinking + interpolate: Nearest + maxDuration: 1.0 + minValue: 0.1 + maxValue: 2.0 + isLooped: true + - type: Battery + maxCharge: 600 + startingCharge: 600 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 2 + - type: entity parent: ClothingOuterBaseLarge id: ClothingOuterArmorCult diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index 591a6e5d851..5c89b051499 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -33,6 +33,30 @@ giveUplink: false giveObjectives: false +- type: entity + parent: MobHumanSyndicateAgent + id: MobHumanSyndicateAgentMedic + name: syndicate medic + components: + - type: Loadout + prototypes: [SyndicateReinforcementMedic] + +- type: entity + parent: MobHumanSyndicateAgent + id: MobHumanSyndicateAgentSpy + name: syndicate spy + components: + - type: Loadout + prototypes: [SyndicateReinforcementSpy] + +- type: entity + parent: MobHumanSyndicateAgent + id: MobHumanSyndicateAgentThief + name: syndicate thief + components: + - type: Loadout + prototypes: [SyndicateReinforcementThief] + - type: entity parent: MobHumanSyndicateAgentBase id: MobHumanSyndicateAgentNukeops # Reinforcement exclusive to nukeops uplink diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index c8d085d67c6..29c266a719e 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -72,5 +72,11 @@ components: - type: HumanoidAppearance species: Reptilian + hideLayersOnEquip: + - Snout + - HeadTop + - HeadSide + - type: Inventory + speciesId: reptilian #Weh diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index 2b07ae7613c..e7a7c7a7991 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -78,6 +78,9 @@ solution: drink - type: FitsInDispenser solution: drink + - type: Tag + tags: + - DrinkGlass # Transformable container - normal glass - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml index f5cb260e03b..b6488dbe8bf 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml @@ -432,6 +432,7 @@ whitelist: tags: - Cola + hideStackVisualsWhenClosed: false - type: StorageFill contents: - id: DrinkColaCan diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml index cb04869c2c7..09ec706e1fe 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml @@ -148,6 +148,8 @@ - state: tin - state: plain - type: CreamPie + - type: ThrowingAngle + angle: 180 - type: LandAtCursor - type: ContainerContainer containers: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index a73b1df201b..f1f30f6c46d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -34,6 +34,9 @@ solution: food - type: TrashOnSolutionEmpty solution: food + - type: Tag + tags: + - Ingredient - type: entity abstract: true @@ -272,6 +275,9 @@ reagents: - ReagentId: Nutriment Quantity: 15 + - type: Tag + tags: + - Ingredient - type: entity name: dough @@ -683,4 +689,7 @@ juiceSolution: reagents: - ReagentId: CocoaPowder - Quantity: 2 \ No newline at end of file + Quantity: 2 + - type: Tag + tags: + - Ingredient diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml index 44de2559f24..8c85b99231e 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml @@ -1,6 +1,7 @@ - type: entity parent: BaseItem - id: ReinforcementRadioSyndicate + abstract: true + id: ReinforcementRadio name: syndicate reinforcement radio description: Call in a syndicate agent of questionable quality, instantly! Only basic equipment provided. components: @@ -8,38 +9,46 @@ sprite: Objects/Devices/communication.rsi layers: - state: radio + - type: UserInterface + interfaces: + enum.GhostRoleRadioUiKey.Key: + type: GhostRoleRadioBoundUserInterface + - type: ActivatableUI + key: enum.GhostRoleRadioUiKey.Key + +- type: entity + parent: ReinforcementRadio + id: ReinforcementRadioSyndicate + name: syndicate reinforcement radio + description: Call in a syndicate agent of questionable quality, instantly! + components: - type: GhostRole - name: ghost-role-information-syndicate-reinforcement-name + name: ghost-role-information-syndicate-reinforcement-spy-name description: ghost-role-information-syndicate-reinforcement-description rules: ghost-role-information-syndicate-reinforcement-rules raffle: settings: default - type: GhostRoleMobSpawner - prototype: MobHumanSyndicateAgent - - type: EmitSoundOnUse - sound: /Audio/Effects/Emotes/parp1.ogg - - type: UseDelay - delay: 300 + prototype: MobHumanSyndicateAgentSpy + selectablePrototypes: ["SyndicateAgentMedic", "SyndicateAgentSpy", "SyndicateAgentThief"] # Goobstation - Nukeop reinforcement - type: entity - parent: ReinforcementRadioSyndicate + parent: ReinforcementRadio id: ReinforcementRadioSyndicateNukeops # Reinforcement radio exclusive to nukeops uplink name: nuclear operative radio description: Call in a nuclear operative of questionable quality, instantly! Basic nukeop equipment provided. suffix: NukeOps components: - type: GhostRole - name: ghost-role-information-nukie-reinforcement-name - description: ghost-role-information-nukie-reinforcement-description - rules: ghost-role-information-nukie-reinforcement-rules - raffle: - settings: default + name: ghost-role-information-syndicate-reinforcement-name + description: ghost-role-information-syndicate-reinforcement-description + rules: ghost-role-information-syndicate-reinforcement-rules - type: GhostRoleMobSpawner prototype: MobHumanSyndicateAgentNukeops - type: entity - parent: ReinforcementRadioSyndicate + parent: ReinforcementRadio id: ReinforcementRadioSyndicateAncestor name: syndicate genetic ancestor reinforcement radio description: Calls in a specially trained ancestor of your choosing to assist you. @@ -64,7 +73,7 @@ selectablePrototypes: ["SyndicateMonkeyNukeops", "SyndicateKoboldNukeops"] - type: entity - parent: ReinforcementRadioSyndicate + parent: ReinforcementRadio id: ReinforcementRadioSyndicateSyndiCat name: syndicat reinforcement radio description: Calls in a faithfully trained cat with a microbomb to assist you. @@ -81,7 +90,7 @@ sound: /Audio/Animals/cat_meow.ogg - type: entity - parent: ReinforcementRadioSyndicate + parent: ReinforcementRadio id: ReinforcementRadioSyndicateCyborgAssault # Reinforcement radio exclusive to nukeops uplink name: syndicate assault cyborg reinforcement radio description: Call in a well armed assault cyborg, instantly! diff --git a/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml b/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml new file mode 100644 index 00000000000..a15e30fbc72 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml @@ -0,0 +1,139 @@ +- type: entity + name: lamp + parent: BaseItem + id: ArabianLamp + description: Why the heck won't this piece of junk open!? + components: + - type: Appearance + - type: AccessReader + access: [ [ "CentralCommand" ] ] + breakOnEmag: false + - type: Lock + lockOnClick: false + breakOnEmag: false + - type: EntityStorage + capacity: 1 # Its smol. + itemCanStoreMobs: false # just leaving this here explicitly since I know at some point someone will want to use this to hold a mob. This also prevents it from becoming His Grace. + # - type: StorageFill + # contents: + # - id: PuddleSparkle # Ha! Cute. Unfortunately it despawns before the container is likely to open. + - type: ContainerContainer + containers: + entity_storage: !type:Container + - type: Item + size: Normal + heldPrefix: lamp + sprite: Objects/Misc/arabianlamp.rsi + inhandVisuals: + left: + - state: inhand-left + right: + - state: inhand-right + - type: MeleeWeapon + wideAnimationRotation: 180 + damage: + types: + Blunt: 6 + - type: ItemToggleMeleeWeapon + activatedDamage: + types: + Blunt: 6 + Heat: 3 + activatedSoundOnHit: + path: /Audio/Weapons/Guns/Hits/energy_meat1.ogg + params: + variation: 0.250 + volume: -10 + activatedSoundOnHitNoDamage: + path: /Audio/Weapons/Guns/Hits/energy_meat1.ogg + params: + variation: 0.250 + volume: -12 + deactivatedSoundOnHitNoDamage: + collection: MetalThud + - type: ItemToggle + predictable: false + soundActivate: + collection: lighterOnSounds + soundDeactivate: + path: /Audio/Items/candle_blowing.ogg + params: + variation: 0.05 + volume: 10 + - type: ItemToggleHot + - type: Sprite + sprite: Objects/Misc/arabianlamp.rsi + layers: + - state: lamp + map: [ "enum.StorageVisualLayers.Base" ] + - state: lamptop + map: ["enum.StorageVisualLayers.Door"] + - state: flame + visible: false + shader: unshaded + map: ["enum.ToggleVisuals.Layer"] + - type: GenericVisualizer + visuals: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: { visible: true } + False: { visible: false } + - type: EntityStorageVisuals + stateBaseClosed: lamp + stateDoorOpen: lamp + stateDoorClosed: lamptop + - type: ToggleableLightVisuals + spriteLayer: flame + inhandVisuals: + left: + - state: inhand-left-flame + shader: unshaded + right: + - state: inhand-right-flame + shader: unshaded + - type: SolutionContainerManager + solutions: + Welder: + reagents: + - ReagentId: WeldingFuel + Quantity: 25 + maxVol: 25 + - type: SolutionTransfer + transferAmount: 5 + canChangeTransferAmount: false + - type: Spillable + solution: Welder + - type: DrawableSolution + solution: Welder + - type: RefillableSolution + solution: Welder + - type: DrainableSolution + solution: Welder + - type: ExaminableSolution + solution: Welder + - type: SolutionRegeneration + solution: Welder + generated: + reagents: + - ReagentId: WeldingFuel + Quantity: 0.1 + duration: 5 + - type: EmitSoundOnLand + sound: + path: /Audio/Items/welder_drop.ogg + - type: Welder + fuelConsumption: 0.05 + fuelLitCost: 0.05 + tankSafe: true + - type: PointLight + enabled: false + netsync: false + radius: 5 + color: orange + - type: StaticPrice + price: 1500 + - type: Prayable + sentMessage: prayer-popup-notify-lamp-sent + notificationPrefix: prayer-chat-notify-lamp + verb: prayer-verbs-rub + verbImage: null \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index 1566a84e52d..93b2e415721 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -505,8 +505,8 @@ - state: icon-syndicate - type: ItemBorgModule items: - - WeaponAdvancedLaser - - Machete + - WeaponPistolEchis + - EnergyDaggerLoud - type: entity id: BorgModuleOperative diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index 36e629c21c1..fba506d1f95 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -401,20 +401,6 @@ components: - type: LimitedCharges charges: 0 - - type: RCD - availablePrototypes: - - WallSolid - - FloorSteel - - Plating - - Catwalk - - Grille - - Window - - WindowDirectional - - WindowReinforcedDirectional - - ReinforcedWindow - - Airlock - - AirlockGlass - - Firelock - type: entity id: RCDRecharging diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index ae309661fee..8f469f87a9b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -102,6 +102,41 @@ gun_magazine: !type:ContainerSlot gun_chamber: !type:ContainerSlot +- type: entity + name: echis + parent: BaseItem + id: WeaponPistolEchis + description: A viper for use by cyborgs. Creates .35 ammo on the fly from an internal ammo fabricator, which slowly self-charges. + components: + - type: Gun + fireRate: 5 + selectedMode: SemiAuto + availableModes: + - SemiAuto + - FullAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/pistol.ogg + - type: Sprite + sprite: Objects/Weapons/Guns/Pistols/viper.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-0 + map: ["enum.GunVisualLayers.Mag"] + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + - type: ProjectileBatteryAmmoProvider + proto: BulletPistol + fireCost: 100 + - type: Battery + maxCharge: 1000 + startingCharge: 1000 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 25 + - type: AmmoCounter + - type: entity name: cobra parent: BaseWeaponPistol diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index ce3545920ac..1e0aaf61e58 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -81,26 +81,25 @@ temperature: 700 - type: entity - name: pen + name: energy dagger parent: EnergySword - id: EnergyDagger - suffix: E-Dagger - description: 'A dark ink pen.' + id: EnergyDaggerLoud + description: A not as loud and dangerous dagger with a beam made of pure, concentrated plasma. This one is completely undisguised. components: - type: ItemToggle soundActivate: path: /Audio/Weapons/ebladeon.ogg params: - volume: -6 + volume: -3 soundDeactivate: path: /Audio/Weapons/ebladeoff.ogg params: - volume: -6 + volume: -3 - type: ItemToggleMeleeWeapon activatedSoundOnSwing: path: /Audio/Weapons/eblademiss.ogg params: - volume: -6 + volume: -3 variation: 0.250 activatedDamage: types: @@ -111,14 +110,14 @@ activeSound: path: /Audio/Weapons/ebladehum.ogg params: - volume: -6 + volume: -3 - type: ComponentToggler components: - type: Sharp - type: DisarmMalus malus: 0.4 - type: Sprite - sprite: Objects/Weapons/Melee/e_dagger.rsi + sprite: Objects/Weapons/Melee/e_dagger_loud.rsi layers: - state: e_sword - state: e_sword_blade @@ -135,7 +134,7 @@ Blunt: 1 - type: Item size: Tiny - sprite: Objects/Weapons/Melee/e_dagger.rsi + sprite: Objects/Weapons/Melee/e_dagger_loud.rsi - type: UseDelay delay: 1.0 - type: PointLight @@ -154,11 +153,45 @@ right: - state: inhand-right-blade shader: unshaded + - type: DisarmMalus + malus: 0 + +- type: entity + name: pen + parent: EnergyDaggerLoud + id: EnergyDagger + suffix: E-Dagger + description: 'A dark ink pen.' + components: + - type: ItemToggle + soundActivate: + path: /Audio/Weapons/ebladeon.ogg + params: + volume: -6 + soundDeactivate: + path: /Audio/Weapons/ebladeoff.ogg + params: + volume: -6 + - type: ItemToggleActiveSound + activeSound: + path: /Audio/Weapons/ebladehum.ogg + params: + volume: -6 + - type: Sprite + sprite: Objects/Weapons/Melee/e_dagger.rsi + layers: + - state: e_sword + - state: e_sword_blade + color: "#FFFFFF" + visible: false + shader: unshaded + map: [ "blade" ] + - type: Item + size: Tiny + sprite: Objects/Weapons/Melee/e_dagger.rsi - type: Tag tags: - Write - - type: DisarmMalus - malus: 0 - type: entity parent: BaseItem diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml index ea2e73ac151..608fb2544ae 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml @@ -5,7 +5,7 @@ description: Definition of a Classic. Keeping murder affordable since 200,000 BCE. components: - type: EmbeddableProjectile - offset: 0.15,0.15 + offset: -0.15,0.0 - type: ThrowingAngle angle: 225 - type: LandAtCursor diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index e92da80c4b2..0c280f339ac 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -1160,6 +1160,10 @@ suffix: External, Escape 3x4, Glass, Docking components: - type: GridFill + addComponents: + - type: IFF + flags: + - HideLabel #HighSecDoors - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml b/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml index 8281a6548bd..64ad3a30da0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml @@ -56,6 +56,7 @@ SheetSteel1: min: 1 max: 2 + - type: AmbientOnPowered - type: AmbientSound volume: -9 range: 5 diff --git a/Resources/Prototypes/Entities/Structures/Machines/research.yml b/Resources/Prototypes/Entities/Structures/Machines/research.yml index 498759df3c9..81a5988c2c5 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/research.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/research.yml @@ -48,6 +48,7 @@ min: 1 max: 2 - type: Appearance + - type: AmbientOnPowered - type: AmbientSound volume: -9 range: 5 diff --git a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml index 904bf46a0b7..24e7e478c9c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml @@ -22,6 +22,12 @@ snapCardinals: true layers: - state: server + - type: AmbientOnPowered + - type: AmbientSound + volume: -9 + range: 5 + sound: + path: /Audio/Ambience/Objects/server_fans.ogg - type: entity parent: SurveillanceCameraRouterBase @@ -104,6 +110,7 @@ subnetFrequency: SurveillanceCameraGeneral - type: entity + abstract: true parent: [ BaseMachinePowered, ConstructibleMachine ] id: SurveillanceCameraWirelessRouterBase name: wireless camera router @@ -126,6 +133,12 @@ sprite: Structures/Machines/server.rsi layers: - state: server + - type: AmbientOnPowered + - type: AmbientSound + volume: -9 + range: 5 + sound: + path: /Audio/Ambience/Objects/server_fans.ogg - type: entity parent: SurveillanceCameraWirelessRouterBase diff --git a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml index 5bdefb8bfc5..4a1b5a3560a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml @@ -21,6 +21,12 @@ True: { visible: true } False: { visible: false } - type: Appearance + - type: AmbientOnPowered + - type: AmbientSound + volume: -9 + range: 5 + sound: + path: /Audio/Ambience/Objects/server_fans.ogg - type: WiresVisuals - type: Physics bodyType: Static diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml index 4eec014f11b..eff831fa9ea 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml @@ -25,3 +25,32 @@ - type: Tag tags: - SpreaderIgnore + +- type: entity + id: AtmosDeviceFanDirectional + name: directional fan + description: A thin fan, stopping the movement of gases across it. + placement: + mode: SnapgridCenter + components: + - type: Transform + anchored: true + - type: Physics + bodyType: Static + - type: Sprite + sprite: Structures/Piping/Atmospherics/directionalfan.rsi + state: icon + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.48,-0.48,0.48,-0.40" + - type: Airtight + noAirWhenFullyAirBlocked: false + airBlockedDirection: + - South + - type: Clickable + - type: Tag + tags: + - SpreaderIgnore diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/shelfs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/shelfs.yml new file mode 100644 index 00000000000..af68f5898d2 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/shelfs.yml @@ -0,0 +1,475 @@ +# Parents +- type: entity + abstract: true + id: ShelfBase + parent: BaseStructure + name: shelf + description: a strange place to place, well, anything really. You feel like you shouldn't be seeing this.' + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: Structures/Storage/Shelfs/wood.rsi + state: base + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.35,-0.35,0.35,0.35" + density: 35 + layer: + - BulletImpassable + - type: Transform + - type: Damageable + damageModifierSet: Wood + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 60 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroyHeavy + - !type:DoActsBehavior + acts: ["Destruction"] + - type: WallMount + arc: 175 + - type: Storage + grid: + - 0,0,3,1 + - 0,3,3,4 + maxItemSize: Normal + - type: UserInterface + interfaces: + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + - type: InteractionOutline + - type: ContainerContainer + containers: + storagebase: !type:Container + - type: Tag + tags: + - Structure + +- type: entity + abstract: true + id: ShelfBaseReinforced + parent: ShelfBase + name: reinforced shelf + description: It looks as strong as reality itself. + components: + - type: Lock + - type: LockVisuals + - type: Sprite + sprite: Structures/Storage/Shelfs/wood.rsi + state: base + layers: + - state: rbase + map: ["enum.StorageVisualLayers.Base"] + - state: unlocked + shader: unshaded + # used to keep the unlocked light visible while open. + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - state: locked + map: ["enum.LockVisualLayers.Lock"] + shader: unshaded + - type: Appearance + - type: EntityStorageVisuals + stateDoorOpen: open + stateDoorClosed: closed + + - type: AccessReader + +# Normal +- type: entity + id: ShelfWood + parent: ShelfBase + name: wooden shelf + description: A convenient place to place, well, anything really. + components: + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 60 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroyHeavy + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank1: + min: 1 + max: 3 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Tag + tags: + - Structure + - Wooden + - type: Construction + graph: Shelf + node: ShelfWood + +- type: entity + id: ShelfMetal + parent: ShelfBase + name: metal shelf + description: A sturdy place to place, well, anything really. + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/metal.rsi + state: base + - type: Damageable + damageModifierSet: Metallic + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 120 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 2 + max: 4 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Tag + tags: + - Structure + - type: Construction + graph: Shelf + node: ShelfMetal + +- type: entity + id: ShelfGlass + parent: ShelfBase + name: glass shelf + description: A fragile place to place, well, anything really. + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/glass.rsi + state: base + - type: Damageable + damageModifierSet: Glass + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WindowShatter + - !type:SpawnEntitiesBehavior + spawn: + ShardGlass: + min: 0 + max: 2 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Tag + tags: + - Structure + - type: Construction + graph: Shelf + node: ShelfGlass + +# Reinforced +- type: entity + id: ShelfRWood + parent: ShelfBaseReinforced + name: sturdy wood shelf + description: A safe place to put your favorite bottle of whiskey + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/wood.rsi + state: base + layers: + - state: rbase + map: ["enum.StorageVisualLayers.Base"] + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - state: locked + map: ["enum.LockVisualLayers.Lock"] + shader: unshaded + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 215 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroyHeavy + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank: + min: 2 + max: 5 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Construction + graph: Shelf + node: ShelfRWood + +- type: entity + id: ShelfRMetal + parent: ShelfBaseReinforced + name: sturdy metal shelf + description: A strong & shiny place to keep all your vials safe + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/metal.rsi + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 450 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:SpawnEntitiesBehavior + spawn: + SheetPlasteel1: + min: 2 + max: 3 + ShardGlass: + min: 1 + max: 2 + PartRodMetal1: + min: 1 + max: 2 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Construction + graph: Shelf + node: ShelfRMetal + +- type: entity + id: ShelfRGlass + parent: ShelfBaseReinforced + name: sturdy glass shelf + description: Crystal clear reinforced glass doors to show off all your fancy bottles you definitely didn't sell a co-worker's favorite mothroach for. + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/glass.rsi + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 250 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WindowShatter + - !type:SpawnEntitiesBehavior + spawn: + SheetPlastic1: + min: 1 + max: 3 + ShardGlass: + min: 1 + max: 2 + PartRodMetal1: + min: 0 + max: 1 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Construction + graph: Shelf + node: ShelfRGlass + +# Departmental +- type: entity + id: ShelfBar + parent: ShelfBase + name: bar shelf + description: Made out of the finest synthetic wood for all alcohol holding needs. + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/Departments/Service/bar.rsi + state: base + layers: + - state: base + - state: bar-0 + - map: ["enum.StorageFillLayers.Fill"] + - type: Appearance + - type: StorageFillVisualizer + maxFillLevels: 13 + fillBaseName: bar + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroyHeavy + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank1: + min: 1 + max: 4 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Storage + grid: + - 0,0,5,1 + - 0,3,5,4 + maxItemSize: Normal + whitelist: + tags: + - DrinkGlass + - DrinkBottle + - DrinkCan + - Beer + - type: Construction + graph: Shelf + node: ShelfBar + +- type: entity + id: ShelfKitchen + parent: ShelfBase + name: cooking shelf + description: Holds knifes, spice, and everything nice! + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/Departments/Service/kitchen.rsi + state: base + layers: + - state: base + - state: kitchen-0 + - map: ["enum.StorageFillLayers.Fill"] + - type: Appearance + - type: StorageFillVisualizer + maxFillLevels: 13 + fillBaseName: kitchen + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 150 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 1 + max: 4 + MaterialWoodPlank1: + min: 0 + max: 1 + PartRodMetal1: + min: 0 + max: 2 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Storage + grid: + - 0,0,5,1 + - 0,3,5,4 + maxItemSize: Normal + whitelist: + tags: + - DrinkGlass + - BoxCardboard + - MonkeyCube + - Enzyme + - Mayo + - Packet + - Cleaver + - Knife + - KitchenKnife + - RollingPin + - Ingredient + - Trash + - type: Construction + graph: Shelf + node: ShelfKitchen + +- type: entity + id: ShelfChemistry + parent: ShelfBaseReinforced + name: chemical shelf + description: Keeps all your chemicals safe and out of the clow- er, public hands! + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi + layers: + - state: base + map: ["enum.StorageVisualLayers.Base"] + - state: unlocked + shader: unshaded + - state: chem-0 + - map: ["enum.StorageFillLayers.Fill"] + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - state: locked + map: ["enum.LockVisualLayers.Lock"] + shader: unshaded + - type: StorageFillVisualizer + maxFillLevels: 7 + fillBaseName: chem + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 330 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:SpawnEntitiesBehavior + spawn: + SheetPlasteel1: + min: 1 + max: 2 + SheetPlastic1: + min: 1 + max: 2 + ShardGlass: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Storage + grid: + - 0,0,5,1 + - 0,3,5,4 + maxItemSize: Normal + whitelist: + tags: + - ChemDispensable + - GlassBeaker + - Bottle + - type: Construction + graph: Shelf + node: ShelfChemistry + + + +# Access presets +# Try to keep alphabetical sorting if adding more + +- type: entity + parent: ShelfChemistry + id: ShelfChemistryChemistrySecure + suffix: Chemistry, Secure + components: + - type: AccessReader + access: [["Chemistry"]] + diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 7af99812555..1ab770812a6 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -1109,6 +1109,11 @@ - type: IconSmooth key: walls base: mining + - type: RandomIconSmooth + randomStates: + - mining + - miningB + - type: Appearance - type: entity parent: WallShuttleDiagonal diff --git a/Resources/Prototypes/Entities/Tiles/water.yml b/Resources/Prototypes/Entities/Tiles/water.yml index 2fd1c8547de..c488df231b2 100644 --- a/Resources/Prototypes/Entities/Tiles/water.yml +++ b/Resources/Prototypes/Entities/Tiles/water.yml @@ -54,3 +54,12 @@ collection: FootstepWater params: volume: 8 + - type: StepTrigger + requiredTriggeredSpeed: 0 + intersectRatio: 0.1 + blacklist: + tags: + - Catwalk + - type: TileEntityEffect + effects: + - !type:ExtinguishReaction diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index 32394763549..3222cd3208d 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -73,7 +73,7 @@ parent: BaseGameRule id: BaseNukeopsRule components: - - type: RandomMetadata #this generates the random operation name cuz it's cool. + - type: RandomMetadata #this generates the random operation name cuz it's cool. nameSegments: - operationPrefix - operationSuffix @@ -95,7 +95,7 @@ - type: GameRule minPlayers: 20 - type: LoadMapRule - gameMap: NukieOutpost + mapPath: /Maps/Nonstations/nukieplanet.yml - type: AntagSelection selectionTime: PrePlayerSpawn definitions: diff --git a/Resources/Prototypes/Goobstation/GameRules/roundstart.yml b/Resources/Prototypes/Goobstation/GameRules/roundstart.yml index 6806a95a392..cdeece55b72 100644 --- a/Resources/Prototypes/Goobstation/GameRules/roundstart.yml +++ b/Resources/Prototypes/Goobstation/GameRules/roundstart.yml @@ -18,7 +18,7 @@ mindComponents: - type: ChangelingRole prototype: Changeling - + - type: entity parent: BaseTraitorRule id: CalmTraitor # For Dual Antag Gamemodes @@ -69,7 +69,7 @@ - type: GameRule minPlayers: 30 - type: LoadMapRule - gameMap: NukieOutpost + mapPath: /Maps/Nonstations/nukieplanet.yml - type: AntagSelection selectionTime: PrePlayerSpawn definitions: diff --git a/Resources/Prototypes/Maps/fland.yml b/Resources/Prototypes/Maps/fland.yml index a1f88784e2b..11ff0a35825 100644 --- a/Resources/Prototypes/Maps/fland.yml +++ b/Resources/Prototypes/Maps/fland.yml @@ -25,7 +25,7 @@ BlueshieldOfficer: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] - Botanist: [ 4, 4 ] + Botanist: [ 3, 3 ] Chef: [ 2, 2 ] Janitor: [ 3, 3 ] Chaplain: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/oasis.yml b/Resources/Prototypes/Maps/oasis.yml index 5eca6882a6b..e092a188de9 100644 --- a/Resources/Prototypes/Maps/oasis.yml +++ b/Resources/Prototypes/Maps/oasis.yml @@ -23,7 +23,7 @@ BlueshieldOfficer: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] - Botanist: [ 4, 4 ] + Botanist: [ 2, 3 ] Chef: [ 2, 2 ] Janitor: [ 3, 3 ] Chaplain: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/packed.yml b/Resources/Prototypes/Maps/packed.yml index 29be4a3071d..861c11aa8cd 100644 --- a/Resources/Prototypes/Maps/packed.yml +++ b/Resources/Prototypes/Maps/packed.yml @@ -19,7 +19,7 @@ Captain: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] + Botanist: [ 1, 2 ] Chef: [ 1, 1 ] Janitor: [ 1, 2 ] Chaplain: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/saltern.yml b/Resources/Prototypes/Maps/saltern.yml index e9d26ce3192..d0a539d1821 100644 --- a/Resources/Prototypes/Maps/saltern.yml +++ b/Resources/Prototypes/Maps/saltern.yml @@ -20,7 +20,7 @@ Captain: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] + Botanist: [ 1, 2 ] Chef: [ 1, 1 ] Janitor: [ 1, 1 ] Chaplain: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/syndicate.yml b/Resources/Prototypes/Maps/syndicate.yml deleted file mode 100644 index abb63126d9e..00000000000 --- a/Resources/Prototypes/Maps/syndicate.yml +++ /dev/null @@ -1,11 +0,0 @@ -- type: gameMap - id: NukieOutpost - mapName: Nukie Outpost - mapPath: /Maps/Nonstations/nukieplanet.yml - minPlayers: 0 - stations: - SyndicateOutpost: - stationProto: StandardNukieOutpost - components: - - type: StationNameSetup - mapNameTemplate: "Nukie Outpost" diff --git a/Resources/Prototypes/NPCs/utility_queries.yml b/Resources/Prototypes/NPCs/utility_queries.yml index 3d5385ecbcd..06bc0a9a9eb 100644 --- a/Resources/Prototypes/NPCs/utility_queries.yml +++ b/Resources/Prototypes/NPCs/utility_queries.yml @@ -131,6 +131,7 @@ types: Blunt: 0 - type: Item + - !type:RemoveAnchoredFilter considerations: - !type:TargetMeleeCon curve: !type:QuadraticCurve diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/shelfs.yml b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/shelfs.yml new file mode 100644 index 00000000000..61a903f7a0a --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/shelfs.yml @@ -0,0 +1,268 @@ +- type: constructionGraph + id: Shelf + start: start + graph: + - node: start + actions: + - !type:DeleteEntity {} + edges: +# Normal + - to: ShelfWood + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WoodPlank + amount: 4 + doAfter: 2 + - to: ShelfMetal + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Steel + amount: 5 + doAfter: 3 + - to: ShelfGlass + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Glass + amount: 4 + doAfter: 2 +# Reinforced + - to: ShelfRWood + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WoodPlank + amount: 8 + doAfter: 3 + - material: Cable + amount: 2 + doAfter: 1 + - to: ShelfRMetal + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Plasteel + amount: 5 + doAfter: 3 + - material: ReinforcedGlass + amount: 5 + doAfter: 2 + - material: Cable + amount: 3 + doAfter: 1 + - to: ShelfRGlass + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Plastic + amount: 5 + doAfter: 2 + - material: ReinforcedGlass + amount: 5 + doAfter: 3 + - material: Cable + amount: 2 + doAfter: 1 +# Departmental + - to: ShelfBar + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WoodPlank + amount: 6 + doAfter: 2 + - to: ShelfKitchen + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: MetalRod + amount: 2 + doAfter: 1 + - material: Steel + amount: 5 + - material: WoodPlank + amount: 3 + doAfter: 2 + - to: ShelfChemistry + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Plasteel + amount: 2 + doAfter: 2 + - material: ReinforcedGlass + amount: 5 + doAfter: 2 + - material: Plastic + amount: 5 + doAfter: 2 + - material: Cable + amount: 2 + doAfter: 1 + +# Normal deconstructs + - node: ShelfWood + entity: ShelfWood + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 4 + steps: + - tool: Prying + doAfter: 2 + + - node: ShelfMetal + entity: ShelfMetal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 5 + steps: + - tool: Screwing + doAfter: 5 + + - node: ShelfGlass + entity: ShelfGlass + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetGlass1 + amount: 4 + steps: + - tool: Screwing + doAfter: 2 +# Reinforced deconstructs + - node: ShelfRWood + entity: ShelfRWood + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 8 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + steps: + - tool: Screwing + doAfter: 5 + - tool: Prying + doAfter: 2 + + - node: ShelfRMetal + entity: ShelfRMetal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetPlasteel1 + amount: 5 + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 5 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 3 + steps: + - tool: Screwing + doAfter: 2 + - tool: Welding + doAfter: 5 + + - node: ShelfRGlass + entity: ShelfRGlass + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetPlastic1 + amount: 5 + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 5 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + steps: + - tool: Welding + doAfter: 2 + - tool: Screwing + doAfter: 4 + +# Departmental deconstructs + - node: ShelfBar + entity: ShelfBar + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 6 + steps: + - tool: Prying + doAfter: 3 + + - node: ShelfKitchen + entity: ShelfKitchen + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: PartRodMetal + amount: 2 + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 5 + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 3 + steps: + - tool: Screwing + doAfter: 2 + - tool: Welding + doAfter: 2 + - tool: Prying + doAfter: 1 + + - node: ShelfChemistry + entity: ShelfChemistry + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetPlasteel1 + amount: 2 + - !type:SpawnPrototype + prototype: SheetPlastic1 + amount: 5 + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 5 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + steps: + - tool: Welding + doAfter: 2 + - tool: Screwing + doAfter: 1 + - tool: Anchoring + doAfter: 2 + - tool: Prying + doAfter: 4 diff --git a/Resources/Prototypes/Recipes/Construction/storage.yml b/Resources/Prototypes/Recipes/Construction/storage.yml index c8edebc5096..7128c79eee8 100644 --- a/Resources/Prototypes/Recipes/Construction/storage.yml +++ b/Resources/Prototypes/Recipes/Construction/storage.yml @@ -67,3 +67,151 @@ canBuildInImpassable: false conditions: - !type:TileNotBlocked + +# Shelfs +# Normals +- type: construction + id: ShelfWood + name: wooden shelf + description: A convenient place to place, well, anything really. + graph: Shelf + startNode: start + targetNode: ShelfWood + icon: + sprite: Structures/Storage/Shelfs/wood.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfMetal + name: metal shelf + description: A sturdy place to place, well, anything really. + graph: Shelf + startNode: start + targetNode: ShelfMetal + icon: + sprite: Structures/Storage/Shelfs/metal.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfGlass + name: glass shelf + description: Just like a normal shelf! But fragile and without the walls! + graph: Shelf + startNode: start + targetNode: ShelfGlass + icon: + sprite: Structures/Storage/Shelfs/glass.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +# Reinforced +- type: construction + id: ShelfRWood + name: sturdy wooden shelf + description: The perfect place to store all your vintage records. + graph: Shelf + startNode: start + targetNode: ShelfRWood + icon: + sprite: Structures/Storage/Shelfs/wood.rsi + state: rbase + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfRMetal + name: sturdy metal shelf + description: Nice and strong, and keeps your maints loot secure. + graph: Shelf + startNode: start + targetNode: ShelfRMetal + icon: + sprite: Structures/Storage/Shelfs/metal.rsi + state: rbase + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfRGlass + name: sturdy glass shelf + description: See through, decent strength, shiny plastic case. Whats not to love? + graph: Shelf + startNode: start + targetNode: ShelfRGlass + icon: + sprite: Structures/Storage/Shelfs/glass.rsi + state: rbase + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +# Departmental +- type: construction + id: ShelfBar + name: bar shelf + description: A convenient place for all your extra booze, specifically designed to hold more bottles! + graph: Shelf + startNode: start + targetNode: ShelfBar + icon: + sprite: Structures/Storage/Shelfs/Departments/Service/bar.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfKitchen + name: cooking shelf + description: Holds your knifes, spice, and everything nice! + graph: Shelf + startNode: start + targetNode: ShelfKitchen + icon: + sprite: Structures/Storage/Shelfs/Departments/Service/kitchen.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfChemistry + name: chemical shelf + description: Perfect for keeping the most important chemicals safe, and out of the clumsy clowns hands! + graph: Shelf + startNode: start + targetNode: ShelfChemistry + icon: + sprite: Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition diff --git a/Resources/Prototypes/Roles/Antags/traitor.yml b/Resources/Prototypes/Roles/Antags/traitor.yml index 2bd72a2beaf..a535c61ea00 100644 --- a/Resources/Prototypes/Roles/Antags/traitor.yml +++ b/Resources/Prototypes/Roles/Antags/traitor.yml @@ -36,6 +36,56 @@ - PinpointerSyndicateNuclear - DeathAcidifierImplanter +- type: startingGear + id: SyndicateOperativeClothing + equipment: + jumpsuit: ClothingUniformJumpsuitOperative + back: ClothingBackpackSyndicate + shoes: ClothingShoesBootsCombatFilled + gloves: ClothingHandsGlovesColorBlack + +- type: startingGear + id: SyndicateReinforcementMedic + parent: SyndicateOperativeClothing + equipment: + pocket1: WeaponPistolViper + inhand: + - MedkitCombatFilled + storage: + back: + - BoxSurvivalSyndicate + +- type: startingGear + id: SyndicateReinforcementSpy + parent: SyndicateOperativeClothing + equipment: + id: AgentIDCard + mask: ClothingMaskGasVoiceChameleon + pocket1: WeaponPistolViper + storage: + back: + - BoxSurvivalSyndicate + +- type: startingGear + id: SyndicateReinforcementThief + parent: SyndicateOperativeClothing + equipment: + pocket1: WeaponPistolViper + inhand: + - ToolboxSyndicateFilled + storage: + back: + - BoxSurvivalSyndicate + - SyndicateJawsOfLife + +# Syndicate Reinforcement NukeOps +- type: startingGear + id: SyndicateOperativeGearReinforcementNukeOps + parent: SyndicateOperativeGearExtremelyBasic + equipment: + id: SyndiPDA #Do not give a PDA to the normal Reinforcement - it will spawn with a 20TC uplink + + #Syndicate Operative Outfit - Basic - type: startingGear id: SyndicateOperativeGearBasic diff --git a/Resources/Prototypes/Roles/Ghostroles/syndicate.yml b/Resources/Prototypes/Roles/Ghostroles/syndicate.yml index 24c0d8b3e3b..8e1827e81bf 100644 --- a/Resources/Prototypes/Roles/Ghostroles/syndicate.yml +++ b/Resources/Prototypes/Roles/Ghostroles/syndicate.yml @@ -24,4 +24,28 @@ name: ghost-role-information-syndicate-monkey-reinforcement-name description: ghost-role-information-syndicate-monkey-reinforcement-description rules: ghost-role-information-syndicate-monkey-reinforcement-name - entityPrototype: MobMonkeySyndicateAgentNukeops \ No newline at end of file + entityPrototype: MobMonkeySyndicateAgentNukeops + +- type: ghostRole + id: SyndicateAgentMedic + name: ghost-role-information-syndicate-reinforcement-medic-name + description: ghost-role-information-syndicate-reinforcement-medic-description + rules: ghost-role-information-syndicate-monkey-reinforcement-rules + entityPrototype: MobHumanSyndicateAgentMedic + iconPrototype: MedkitCombat + +- type: ghostRole + id: SyndicateAgentSpy + name: ghost-role-information-syndicate-reinforcement-spy-name + description: ghost-role-information-syndicate-reinforcement-spy-description + rules: ghost-role-information-syndicate-monkey-reinforcement-rules + entityPrototype: MobHumanSyndicateAgentSpy + iconPrototype: ClothingMaskGasVoiceChameleon + +- type: ghostRole + id: SyndicateAgentThief + name: ghost-role-information-syndicate-reinforcement-thief-name + description: ghost-role-information-syndicate-reinforcement-thief-description + rules: ghost-role-information-syndicate-monkey-reinforcement-rules + entityPrototype: MobHumanSyndicateAgentThief + iconPrototype: SyndicateJawsOfLife diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index a3d63ac6249..52333ae87fc 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -542,6 +542,9 @@ - type: Tag id: DrinkCan +- type: Tag + id: DrinkGlass + - type: Tag id: DrinkSpaceGlue @@ -764,6 +767,9 @@ - type: Tag id: Igniter +- type: Tag + id: Ingredient + - type: Tag #Drop this innate tool instead of deleting it. id: InnateDontDelete diff --git a/Resources/ServerInfo/Guidebook/Engineering/TEG.xml b/Resources/ServerInfo/Guidebook/Engineering/TEG.xml index 63a62fecf80..786990c92f8 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/TEG.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/TEG.xml @@ -70,7 +70,7 @@ - The Space Vent - The Scrubber Array - Here is one layer of an example setup: (pipes can and do need to be layered under the scrubbers below to connect them!) + Here is one layer of an example setup: @@ -81,15 +81,15 @@ - - + + - - + + diff --git a/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml b/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml index 3fde8fddc11..55c74c0cc78 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml +++ b/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml @@ -10,16 +10,8 @@ They exhale nitrous oxide and are unaffected by it. Their body can process 6 reagents at the same time instead of just 2. - Slimepeople can morph into a [bold]"geras"[/bold] (an archaic slimefolk term), which is a smaller slime form that can [bold]pass through grilles[/bold], - but forces them to drop their inventory and held items. It's handy for a quick getaway. A geras is small enough to pick up (with two hands) - and fits in a duffelbag. - - - - - Slimepeople have an [bold]internal 2x3 storage inventory[/bold] inside of their slime membrane. Anyone can see what's inside and take it out of you without asking, - so be careful. They [bold]don't drop their internal storage when they morph into a geras, however![/bold] + so be careful. Slimepeople have slight accelerated regeneration compared to other humanoids. They're also capable of hardening their fists, and as such have stronger punches, although they punch a little slower. diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET-vox.png new file mode 100644 index 00000000000..c7ab17e261d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..d13b5d9acb2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/icon.png new file mode 100644 index 00000000000..7baca16fb42 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-left.png new file mode 100644 index 00000000000..e8db961b770 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-right.png new file mode 100644 index 00000000000..1580937e762 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/meta.json new file mode 100644 index 00000000000..2faf18830d9 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by alzore_(Discord) for SS14 using the colors of the blood-red hardsuit", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light-vox.png new file mode 100644 index 00000000000..6833f250275 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light.png new file mode 100644 index 00000000000..58ba92e53fc Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 00000000000..1ab6e6cfefe Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..e6a0733e3e7 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/icon.png new file mode 100644 index 00000000000..54665d7a0e5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-left.png new file mode 100644 index 00000000000..64d25308ab6 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-right.png new file mode 100644 index 00000000000..fd3c44d4ad0 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/light-overlay.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/light-overlay.png new file mode 100644 index 00000000000..c98170b7e1d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/light-overlay.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/meta.json new file mode 100644 index 00000000000..ff590848daa --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by alzore_(Discord) for SS14 using the colors of the blood-red hardsuit", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "light-overlay" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-light", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-light-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/flame.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/flame.png new file mode 100644 index 00000000000..decabebccb6 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/flame.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left-flame.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left-flame.png new file mode 100644 index 00000000000..e512dcf2975 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left-flame.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left.png new file mode 100644 index 00000000000..680158cc918 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right-flame.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right-flame.png new file mode 100644 index 00000000000..a1fc9ee7b69 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right-flame.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right.png new file mode 100644 index 00000000000..0f6b7bf2c9e Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamp.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamp.png new file mode 100644 index 00000000000..616a46f4e53 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamp.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamptop.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamptop.png new file mode 100644 index 00000000000..e3fe0fc3cb0 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamptop.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/meta.json b/Resources/Textures/Objects/Misc/arabianlamp.rsi/meta.json new file mode 100644 index 00000000000..32199184601 --- /dev/null +++ b/Resources/Textures/Objects/Misc/arabianlamp.rsi/meta.json @@ -0,0 +1,117 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "made by IProduceWidgets, flame sprite by TheShuEd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "lamp", + "directions": 4 + }, + { + "name": "lamptop", + "directions": 4 + }, + { + "name": "flame", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left-flame", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-right-flame", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword.png new file mode 100644 index 00000000000..109a3230b98 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword_blade.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword_blade.png new file mode 100644 index 00000000000..8b8c9f45a74 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword_blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/icon.png new file mode 100644 index 00000000000..4111eebaab4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left-blade.png new file mode 100644 index 00000000000..03d50f98ef4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left-blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left.png new file mode 100644 index 00000000000..639da1c1843 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right-blade.png new file mode 100644 index 00000000000..ae7c25221e3 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right-blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right.png new file mode 100644 index 00000000000..00d8e890aaa Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/meta.json new file mode 100644 index 00000000000..3b12fda33ee --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/meta.json @@ -0,0 +1,78 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation and modified by alzore_(Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "e_sword" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "e_sword_blade", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-left-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-right-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/icon.png b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/icon.png new file mode 100644 index 00000000000..577175edcd2 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/meta.json b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/meta.json new file mode 100644 index 00000000000..217a9f3d782 --- /dev/null +++ b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Made by SlamBamActionman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 4, + "delays":[ + [ + 0.01,0.01,0.01,0.01 + ], + [ + 0.01,0.01,0.01,0.01 + ], + [ + 0.01,0.01,0.01,0.01 + ], + [ + 0.01,0.01,0.01,0.01 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp0.png b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp0.png index 45134518715..a83b3f9e095 100644 Binary files a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp0.png and b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp0.png differ diff --git a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp1.png b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp1.png index 21f121314de..8902a538953 100644 Binary files a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp1.png and b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp1.png differ diff --git a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp2.png b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp2.png index 4002ea9fb60..f579920985f 100644 Binary files a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp2.png and b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp2.png differ diff --git a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp3.png b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp3.png index 63d8adc2c79..129f9388f7d 100644 Binary files a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp3.png and b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp3.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/base.png new file mode 100644 index 00000000000..2d67101d2fc Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-0.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-0.png new file mode 100644 index 00000000000..199a65fb959 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-0.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-1.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-1.png new file mode 100644 index 00000000000..47ee108f18c Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-1.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-2.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-2.png new file mode 100644 index 00000000000..77a54a15cef Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-2.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-3.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-3.png new file mode 100644 index 00000000000..ddd26ba6270 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-3.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-4.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-4.png new file mode 100644 index 00000000000..942f3df3ad2 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-4.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-5.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-5.png new file mode 100644 index 00000000000..1b7430d8095 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-5.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-6.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-6.png new file mode 100644 index 00000000000..e415ee1a7e8 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-6.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/closed.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/closed.png new file mode 100644 index 00000000000..c79f80c0c23 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/locked.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/locked.png new file mode 100644 index 00000000000..3156cb9fa1e Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/meta.json new file mode 100644 index 00000000000..a3fb20976ef --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/meta.json @@ -0,0 +1,47 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "chem-0" + }, + { + "name": "chem-1" + }, + { + "name": "chem-2" + }, + { + "name": "chem-3" + }, + { + "name": "chem-4" + }, + { + "name": "chem-5" + }, + { + "name": "chem-6" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/open.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/open.png new file mode 100644 index 00000000000..ce50773db87 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/unlocked.png new file mode 100644 index 00000000000..39d2fb77884 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-0.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-0.png new file mode 100644 index 00000000000..c090326148d Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-0.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-1.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-1.png new file mode 100644 index 00000000000..7d698e0020f Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-1.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-10.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-10.png new file mode 100644 index 00000000000..5acb43b1799 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-10.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-11.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-11.png new file mode 100644 index 00000000000..328ca05ab73 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-11.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-12.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-12.png new file mode 100644 index 00000000000..77469720a63 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-12.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-2.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-2.png new file mode 100644 index 00000000000..5eab596dd46 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-2.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-3.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-3.png new file mode 100644 index 00000000000..116080939b6 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-3.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-4.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-4.png new file mode 100644 index 00000000000..15c03124e69 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-4.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-5.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-5.png new file mode 100644 index 00000000000..ece06f2d786 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-5.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-6.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-6.png new file mode 100644 index 00000000000..8ec7b1f6123 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-6.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-7.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-7.png new file mode 100644 index 00000000000..e9468e2cdfe Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-7.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-8.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-8.png new file mode 100644 index 00000000000..d01b2a6bc87 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-8.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-9.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-9.png new file mode 100644 index 00000000000..b5b86d3e4cd Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-9.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/base.png new file mode 100644 index 00000000000..ff9dd093b6b Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/meta.json new file mode 100644 index 00000000000..79e0904dd92 --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/meta.json @@ -0,0 +1,53 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "bar-0" + }, + { + "name": "bar-1" + }, + { + "name": "bar-2" + }, + { + "name": "bar-3" + }, + { + "name": "bar-4" + }, + { + "name": "bar-5" + }, + { + "name": "bar-6" + }, + { + "name": "bar-7" + }, + { + "name": "bar-8" + }, + { + "name": "bar-9" + }, + { + "name": "bar-10" + }, + { + "name": "bar-11" + }, + { + "name": "bar-12" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/base.png new file mode 100644 index 00000000000..b302518d3de Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-0.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-0.png new file mode 100644 index 00000000000..199a65fb959 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-0.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-1.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-1.png new file mode 100644 index 00000000000..ded931cadfc Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-1.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-10.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-10.png new file mode 100644 index 00000000000..8d71c464f6e Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-10.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-11.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-11.png new file mode 100644 index 00000000000..5885ae1c6e3 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-11.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-12.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-12.png new file mode 100644 index 00000000000..5afb489f643 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-12.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-2.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-2.png new file mode 100644 index 00000000000..03799bb6889 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-2.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-3.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-3.png new file mode 100644 index 00000000000..5daaf7dda89 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-3.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-4.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-4.png new file mode 100644 index 00000000000..fc7be0c7da2 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-4.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-5.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-5.png new file mode 100644 index 00000000000..150e8f3ec78 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-5.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-6.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-6.png new file mode 100644 index 00000000000..653ca142c23 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-6.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-7.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-7.png new file mode 100644 index 00000000000..8fb7d79932d Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-7.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-8.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-8.png new file mode 100644 index 00000000000..ca197f5ba5f Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-8.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-9.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-9.png new file mode 100644 index 00000000000..9f61aeeb480 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-9.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/meta.json new file mode 100644 index 00000000000..2daba51b6c9 --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/meta.json @@ -0,0 +1,53 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "kitchen-0" + }, + { + "name": "kitchen-1" + }, + { + "name": "kitchen-2" + }, + { + "name": "kitchen-3" + }, + { + "name": "kitchen-4" + }, + { + "name": "kitchen-5" + }, + { + "name": "kitchen-6" + }, + { + "name": "kitchen-7" + }, + { + "name": "kitchen-8" + }, + { + "name": "kitchen-9" + }, + { + "name": "kitchen-10" + }, + { + "name": "kitchen-11" + }, + { + "name": "kitchen-12" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/base.png new file mode 100644 index 00000000000..ccaf278a543 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/closed.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/closed.png new file mode 100644 index 00000000000..c79f80c0c23 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/locked.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/locked.png new file mode 100644 index 00000000000..3156cb9fa1e Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/meta.json new file mode 100644 index 00000000000..544b43a1e80 --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "rbase" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "closed" + }, + { + "name": "open" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/open.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/open.png new file mode 100644 index 00000000000..ce50773db87 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/rbase.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/rbase.png new file mode 100644 index 00000000000..584a185caab Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/rbase.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/unlocked.png new file mode 100644 index 00000000000..39d2fb77884 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/base.png new file mode 100644 index 00000000000..430b603aa3a Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/closed.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/closed.png new file mode 100644 index 00000000000..c79f80c0c23 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/locked.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/locked.png new file mode 100644 index 00000000000..3156cb9fa1e Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/meta.json new file mode 100644 index 00000000000..544b43a1e80 --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "rbase" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "closed" + }, + { + "name": "open" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/open.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/open.png new file mode 100644 index 00000000000..ce50773db87 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/rbase.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/rbase.png new file mode 100644 index 00000000000..430b603aa3a Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/rbase.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/unlocked.png new file mode 100644 index 00000000000..39d2fb77884 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/base.png new file mode 100644 index 00000000000..a1054e575dd Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/closed.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/closed.png new file mode 100644 index 00000000000..df740ed7b0f Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/locked.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/locked.png new file mode 100644 index 00000000000..421688fcda8 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/meta.json new file mode 100644 index 00000000000..544b43a1e80 --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "rbase" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "closed" + }, + { + "name": "open" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/open.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/open.png new file mode 100644 index 00000000000..c0e25c446bd Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/rbase.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/rbase.png new file mode 100644 index 00000000000..a1054e575dd Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/rbase.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/unlocked.png new file mode 100644 index 00000000000..3a00217edae Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/meta.json b/Resources/Textures/Structures/Walls/mining.rsi/meta.json index 4ce4691c516..77f43229984 100644 --- a/Resources/Textures/Structures/Walls/mining.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/mining.rsi/meta.json @@ -7,40 +7,72 @@ "y": 32 }, "states": [ - { + { "name": "full" }, - { + { "name": "mining0", - "directions": 4 + "directions": 4 }, - { + { "name": "mining1", - "directions": 4 + "directions": 4 }, - { + { "name": "mining2", - "directions": 4 + "directions": 4 }, - { + { "name": "mining3", - "directions": 4 + "directions": 4 }, - { + { "name": "mining4", - "directions": 4 + "directions": 4 }, - { + { "name": "mining5", - "directions": 4 + "directions": 4 }, - { + { "name": "mining6", - "directions": 4 + "directions": 4 }, - { + { "name": "mining7", - "directions": 4 + "directions": 4 + }, + { + "name": "miningB0", + "directions": 4 + }, + { + "name": "miningB1", + "directions": 4 + }, + { + "name": "miningB2", + "directions": 4 + }, + { + "name": "miningB3", + "directions": 4 + }, + { + "name": "miningB4", + "directions": 4 + }, + { + "name": "miningB5", + "directions": 4 + }, + { + "name": "miningB6", + "directions": 4 + }, + { + "name": "miningB7", + "directions": 4 } ] } diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB0.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB0.png new file mode 100644 index 00000000000..f65f066b65a Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB0.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB1.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB1.png new file mode 100644 index 00000000000..24c81aa8779 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB1.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB2.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB2.png new file mode 100644 index 00000000000..f65f066b65a Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB2.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB3.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB3.png new file mode 100644 index 00000000000..24c81aa8779 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB3.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB4.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB4.png new file mode 100644 index 00000000000..1412f002696 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB4.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB5.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB5.png new file mode 100644 index 00000000000..8bbef8ca971 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB5.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB6.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB6.png new file mode 100644 index 00000000000..1412f002696 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB6.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB7.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB7.png new file mode 100644 index 00000000000..add9cddf83f Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB7.png differ diff --git a/RobustToolbox b/RobustToolbox index fc1cca4f48f..2e4275a7f3b 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit fc1cca4f48f2f2d3fbf41aa42b80b4e43b1095a4 +Subproject commit 2e4275a7f3b2800e7fbe1da1e1909e8e349033bf