diff --git a/.github/labeler.yml b/.github/labeler.yml index 9d9fe3a08d..97b402eda9 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -12,6 +12,10 @@ - changed-files: - any-glob-to-any-file: '**/*.xaml*' +"Changes: Shaders": +- changed-files: + - any-glob-to-any-file: '**/*.swsl' + "No C#": - changed-files: # Equiv to any-glob-to-all as long as this has one matcher. If ALL changed files are not C# files, then apply label. diff --git a/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml.cs b/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml.cs index ddd66623bd..18aa02e9d6 100644 --- a/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml.cs +++ b/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml.cs @@ -88,6 +88,10 @@ public BwoinkControl() var ach = AHelpHelper.EnsurePanel(a.SessionId); var bch = AHelpHelper.EnsurePanel(b.SessionId); + // Pinned players first + if (a.IsPinned != b.IsPinned) + return a.IsPinned ? -1 : 1; + // First, sort by unread. Any chat with unread messages appears first. We just sort based on unread // status, not number of unread messages, so that more recent unread messages take priority. var aUnread = ach.Unread > 0; @@ -99,15 +103,31 @@ public BwoinkControl() if (a.Connected != b.Connected) return a.Connected ? -1 : 1; - // Next, group by whether or not the players have participated in this round. - // The ahelp window shows all players that have connected since server restart, this groups them all towards the bottom. - if (a.ActiveThisRound != b.ActiveThisRound) - return a.ActiveThisRound ? -1 : 1; + // Sort connected players by New Player status, then by Antag status + if (a.Connected && b.Connected) + { + var aNewPlayer = a.OverallPlaytime <= TimeSpan.FromMinutes(_cfg.GetCVar(CCVars.NewPlayerThreshold)); + var bNewPlayer = b.OverallPlaytime <= TimeSpan.FromMinutes(_cfg.GetCVar(CCVars.NewPlayerThreshold)); + + if (aNewPlayer != bNewPlayer) + return aNewPlayer ? -1 : 1; + + if (a.Antag != b.Antag) + return a.Antag ? -1 : 1; + } + + // Sort disconnected players by participation in the round + if (!a.Connected && !b.Connected) + { + if (a.ActiveThisRound != b.ActiveThisRound) + return a.ActiveThisRound ? -1 : 1; + } // Finally, sort by the most recent message. return bch.LastMessage.CompareTo(ach.LastMessage); }; + Bans.OnPressed += _ => { if (_currentPlayer is not null) @@ -253,7 +273,20 @@ private void SwitchToChannel(NetUserId? ch) public void PopulateList() { + // Maintain existing pin statuses + var pinnedPlayers = ChannelSelector.PlayerInfo.Where(p => p.IsPinned).ToDictionary(p => p.SessionId); + ChannelSelector.PopulateList(); + + // Restore pin statuses + foreach (var player in ChannelSelector.PlayerInfo) + { + if (pinnedPlayers.TryGetValue(player.SessionId, out var pinnedPlayer)) + { + player.IsPinned = pinnedPlayer.IsPinned; + } + } + UpdateButtons(); } } diff --git a/Content.Client/Administration/UI/Bwoink/BwoinkWindow.xaml.cs b/Content.Client/Administration/UI/Bwoink/BwoinkWindow.xaml.cs index 30f9d24df1..e8653843c7 100644 --- a/Content.Client/Administration/UI/Bwoink/BwoinkWindow.xaml.cs +++ b/Content.Client/Administration/UI/Bwoink/BwoinkWindow.xaml.cs @@ -30,7 +30,11 @@ public BwoinkWindow() } }; - OnOpen += () => Bwoink.PopulateList(); + OnOpen += () => + { + Bwoink.ChannelSelector.StopFiltering(); + Bwoink.PopulateList(); + }; } } } diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs index 12522d552d..c7fbf6c2dc 100644 --- a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs +++ b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs @@ -4,154 +4,166 @@ using Content.Client.Verbs.UI; using Content.Shared.Administration; using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Input; +using Robust.Shared.Utility; -namespace Content.Client.Administration.UI.CustomControls +namespace Content.Client.Administration.UI.CustomControls; + +[GenerateTypedNameReferences] +public sealed partial class PlayerListControl : BoxContainer { - [GenerateTypedNameReferences] - public sealed partial class PlayerListControl : BoxContainer - { - private readonly AdminSystem _adminSystem; + private readonly AdminSystem _adminSystem; - private List _playerList = new(); - private readonly List _sortedPlayerList = new(); + private readonly IEntityManager _entManager; + private readonly IUserInterfaceManager _uiManager; - public event Action? OnSelectionChanged; - public IReadOnlyList PlayerInfo => _playerList; + private PlayerInfo? _selectedPlayer; - public Func? OverrideText; - public Comparison? Comparison; + private List _playerList = new(); + private List _sortedPlayerList = new(); - private IEntityManager _entManager; - private IUserInterfaceManager _uiManager; + public Comparison? Comparison; + public Func? OverrideText; - private PlayerInfo? _selectedPlayer; + public PlayerListControl() + { + _entManager = IoCManager.Resolve(); + _uiManager = IoCManager.Resolve(); + _adminSystem = _entManager.System(); + RobustXamlLoader.Load(this); + // Fill the Option data + PlayerListContainer.ItemPressed += PlayerListItemPressed; + PlayerListContainer.ItemKeyBindDown += PlayerListItemKeyBindDown; + PlayerListContainer.GenerateItem += GenerateButton; + PlayerListContainer.NoItemSelected += PlayerListNoItemSelected; + PopulateList(_adminSystem.PlayerList); + FilterLineEdit.OnTextChanged += _ => FilterList(); + _adminSystem.PlayerListChanged += PopulateList; + BackgroundPanel.PanelOverride = new StyleBoxFlat { BackgroundColor = new Color(32, 32, 40) }; + } - public PlayerListControl() - { - _entManager = IoCManager.Resolve(); - _uiManager = IoCManager.Resolve(); - _adminSystem = _entManager.System(); - RobustXamlLoader.Load(this); - // Fill the Option data - PlayerListContainer.ItemPressed += PlayerListItemPressed; - PlayerListContainer.ItemKeyBindDown += PlayerListItemKeyBindDown; - PlayerListContainer.GenerateItem += GenerateButton; - PlayerListContainer.NoItemSelected += PlayerListNoItemSelected; - PopulateList(_adminSystem.PlayerList); - FilterLineEdit.OnTextChanged += _ => FilterList(); - _adminSystem.PlayerListChanged += PopulateList; - BackgroundPanel.PanelOverride = new StyleBoxFlat {BackgroundColor = new Color(32, 32, 40)}; - } + public IReadOnlyList PlayerInfo => _playerList; - private void PlayerListNoItemSelected() - { - _selectedPlayer = null; - OnSelectionChanged?.Invoke(null); - } + public event Action? OnSelectionChanged; - private void PlayerListItemPressed(BaseButton.ButtonEventArgs? args, ListData? data) - { - if (args == null || data is not PlayerListData {Info: var selectedPlayer}) - return; + private void PlayerListNoItemSelected() + { + _selectedPlayer = null; + OnSelectionChanged?.Invoke(null); + } - if (selectedPlayer == _selectedPlayer) - return; + private void PlayerListItemPressed(BaseButton.ButtonEventArgs? args, ListData? data) + { + if (args == null || data is not PlayerListData { Info: var selectedPlayer }) + return; - if (args.Event.Function != EngineKeyFunctions.UIClick) - return; + if (selectedPlayer == _selectedPlayer) + return; - OnSelectionChanged?.Invoke(selectedPlayer); - _selectedPlayer = selectedPlayer; + if (args.Event.Function != EngineKeyFunctions.UIClick) + return; - // update label text. Only required if there is some override (e.g. unread bwoink count). - if (OverrideText != null && args.Button.Children.FirstOrDefault()?.Children?.FirstOrDefault() is Label label) - label.Text = GetText(selectedPlayer); - } + OnSelectionChanged?.Invoke(selectedPlayer); + _selectedPlayer = selectedPlayer; - private void PlayerListItemKeyBindDown(GUIBoundKeyEventArgs? args, ListData? data) - { - if (args == null || data is not PlayerListData { Info: var selectedPlayer }) - return; + // update label text. Only required if there is some override (e.g. unread bwoink count). + if (OverrideText != null && args.Button.Children.FirstOrDefault()?.Children?.FirstOrDefault() is Label label) + label.Text = GetText(selectedPlayer); + } - if (args.Function != EngineKeyFunctions.UIRightClick || selectedPlayer.NetEntity == null) - return; + private void PlayerListItemKeyBindDown(GUIBoundKeyEventArgs? args, ListData? data) + { + if (args == null || data is not PlayerListData { Info: var selectedPlayer }) + return; - _uiManager.GetUIController().OpenVerbMenu(selectedPlayer.NetEntity.Value, true); - args.Handle(); - } + if (args.Function != EngineKeyFunctions.UIRightClick || selectedPlayer.NetEntity == null) + return; + + _uiManager.GetUIController().OpenVerbMenu(selectedPlayer.NetEntity.Value, true); + args.Handle(); + } + + public void StopFiltering() + { + FilterLineEdit.Text = string.Empty; + } - public void StopFiltering() + private void FilterList() + { + _sortedPlayerList.Clear(); + foreach (var info in _playerList) { - FilterLineEdit.Text = string.Empty; + var displayName = $"{info.CharacterName} ({info.Username})"; + if (info.IdentityName != info.CharacterName) + displayName += $" [{info.IdentityName}]"; + if (!string.IsNullOrEmpty(FilterLineEdit.Text) + && !displayName.ToLowerInvariant().Contains(FilterLineEdit.Text.Trim().ToLowerInvariant())) + continue; + _sortedPlayerList.Add(info); } - private void FilterList() - { - _sortedPlayerList.Clear(); - foreach (var info in _playerList) - { - var displayName = $"{info.CharacterName} ({info.Username})"; - if (info.IdentityName != info.CharacterName) - displayName += $" [{info.IdentityName}]"; - if (!string.IsNullOrEmpty(FilterLineEdit.Text) - && !displayName.ToLowerInvariant().Contains(FilterLineEdit.Text.Trim().ToLowerInvariant())) - continue; - _sortedPlayerList.Add(info); - } + if (Comparison != null) + _sortedPlayerList.Sort((a, b) => Comparison(a, b)); - if (Comparison != null) - _sortedPlayerList.Sort((a, b) => Comparison(a, b)); + PlayerListContainer.PopulateList(_sortedPlayerList.Select(info => new PlayerListData(info)).ToList()); + if (_selectedPlayer != null) + PlayerListContainer.Select(new PlayerListData(_selectedPlayer)); + } - PlayerListContainer.PopulateList(_sortedPlayerList.Select(info => new PlayerListData(info)).ToList()); - if (_selectedPlayer != null) - PlayerListContainer.Select(new PlayerListData(_selectedPlayer)); - } - public void PopulateList(IReadOnlyList? players = null) - { - players ??= _adminSystem.PlayerList; + public void PopulateList(IReadOnlyList? players = null) + { + // Maintain existing pin statuses + var pinnedPlayers = _playerList.Where(p => p.IsPinned).ToDictionary(p => p.SessionId); - _playerList = players.ToList(); - if (_selectedPlayer != null && !_playerList.Contains(_selectedPlayer)) - _selectedPlayer = null; + players ??= _adminSystem.PlayerList; - FilterList(); - } + _playerList = players.ToList(); - private string GetText(PlayerInfo info) + // Restore pin statuses + foreach (var player in _playerList) { - var text = $"{info.CharacterName} ({info.Username})"; - if (OverrideText != null) - text = OverrideText.Invoke(info, text); - return text; + if (pinnedPlayers.TryGetValue(player.SessionId, out var pinnedPlayer)) + { + player.IsPinned = pinnedPlayer.IsPinned; + } } - private void GenerateButton(ListData data, ListContainerButton button) - { - if (data is not PlayerListData { Info: var info }) - return; + if (_selectedPlayer != null && !_playerList.Contains(_selectedPlayer)) + _selectedPlayer = null; - button.AddChild(new BoxContainer - { - Orientation = LayoutOrientation.Vertical, - Children = - { - new Label - { - ClipText = true, - Text = GetText(info) - } - } - }); - - button.AddStyleClass(ListContainer.StyleClassListContainerButton); - } + FilterList(); + } + + + private string GetText(PlayerInfo info) + { + var text = $"{info.CharacterName} ({info.Username})"; + if (OverrideText != null) + text = OverrideText.Invoke(info, text); + return text; } - public record PlayerListData(PlayerInfo Info) : ListData; + private void GenerateButton(ListData data, ListContainerButton button) + { + if (data is not PlayerListData { Info: var info }) + return; + + var entry = new PlayerListEntry(); + entry.Setup(info, OverrideText); + entry.OnPinStatusChanged += _ => + { + FilterList(); + }; + + button.AddChild(entry); + button.AddStyleClass(ListContainer.StyleClassListContainerButton); + } } + +public record PlayerListData(PlayerInfo Info) : ListData; diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml new file mode 100644 index 0000000000..af13ccc0e0 --- /dev/null +++ b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml @@ -0,0 +1,6 @@ + + diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs new file mode 100644 index 0000000000..cd6a56ea71 --- /dev/null +++ b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs @@ -0,0 +1,58 @@ +using Content.Client.Stylesheets; +using Content.Shared.Administration; +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Utility; + +namespace Content.Client.Administration.UI.CustomControls; + +[GenerateTypedNameReferences] +public sealed partial class PlayerListEntry : BoxContainer +{ + public PlayerListEntry() + { + RobustXamlLoader.Load(this); + } + + public event Action? OnPinStatusChanged; + + public void Setup(PlayerInfo info, Func? overrideText) + { + Update(info, overrideText); + PlayerEntryPinButton.OnPressed += HandlePinButtonPressed(info); + } + + private Action HandlePinButtonPressed(PlayerInfo info) + { + return args => + { + info.IsPinned = !info.IsPinned; + UpdatePinButtonTexture(info.IsPinned); + OnPinStatusChanged?.Invoke(info); + }; + } + + private void Update(PlayerInfo info, Func? overrideText) + { + PlayerEntryLabel.Text = overrideText?.Invoke(info, $"{info.CharacterName} ({info.Username})") ?? + $"{info.CharacterName} ({info.Username})"; + + UpdatePinButtonTexture(info.IsPinned); + } + + private void UpdatePinButtonTexture(bool isPinned) + { + if (isPinned) + { + PlayerEntryPinButton?.RemoveStyleClass(StyleNano.StyleClassPinButtonUnpinned); + PlayerEntryPinButton?.AddStyleClass(StyleNano.StyleClassPinButtonPinned); + } + else + { + PlayerEntryPinButton?.RemoveStyleClass(StyleNano.StyleClassPinButtonPinned); + PlayerEntryPinButton?.AddStyleClass(StyleNano.StyleClassPinButtonUnpinned); + } + } +} diff --git a/Content.Client/Arcade/BlockGameMenu.cs b/Content.Client/Arcade/BlockGameMenu.cs index 4a579fc4bf..ad360c5439 100644 --- a/Content.Client/Arcade/BlockGameMenu.cs +++ b/Content.Client/Arcade/BlockGameMenu.cs @@ -380,7 +380,7 @@ private Control SetupGameGrid(Texture panelTex) { PanelOverride = back, HorizontalExpand = true, - SizeFlagsStretchRatio = 60 + SizeFlagsStretchRatio = 34.25f }; var backgroundPanel = new PanelContainer { diff --git a/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs b/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs index 8fa8035afd..4f08e6bd0a 100644 --- a/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs +++ b/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs @@ -17,6 +17,7 @@ protected override void Open() base.Open(); _menu = this.CreateWindow(); + _menu.OnAction += SendAction; } protected override void ReceiveMessage(BoundUserInterfaceMessage message) diff --git a/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs b/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs index c0704530de..8fff406e86 100644 --- a/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs +++ b/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs @@ -25,6 +25,7 @@ protected override void Open() base.Open(); _menu = this.CreateWindow(); + _menu.OnPlayerAction += SendAction; } protected override void ReceiveMessage(BoundUserInterfaceMessage message) diff --git a/Content.Client/Lathe/LatheSystem.cs b/Content.Client/Lathe/LatheSystem.cs index c72f01b39b..386520c198 100644 --- a/Content.Client/Lathe/LatheSystem.cs +++ b/Content.Client/Lathe/LatheSystem.cs @@ -22,21 +22,29 @@ private void OnAppearanceChange(EntityUid uid, LatheComponent component, ref App if (args.Sprite == null) return; + // Lathe specific stuff + if (_appearance.TryGetData(uid, LatheVisuals.IsRunning, out var isRunning, args.Component)) + { + if (args.Sprite.LayerMapTryGet(LatheVisualLayers.IsRunning, out var runningLayer) && + component.RunningState != null && + component.IdleState != null) + { + var state = isRunning ? component.RunningState : component.IdleState; + args.Sprite.LayerSetState(runningLayer, state); + } + } + if (_appearance.TryGetData(uid, PowerDeviceVisuals.Powered, out var powered, args.Component) && args.Sprite.LayerMapTryGet(PowerDeviceVisualLayers.Powered, out var powerLayer)) { args.Sprite.LayerSetVisible(powerLayer, powered); - } - // Lathe specific stuff - if (_appearance.TryGetData(uid, LatheVisuals.IsRunning, out var isRunning, args.Component) && - args.Sprite.LayerMapTryGet(LatheVisualLayers.IsRunning, out var runningLayer) && - component.RunningState != null && - component.IdleState != null) - { - var state = isRunning ? component.RunningState : component.IdleState; - args.Sprite.LayerSetAnimationTime(runningLayer, 0f); - args.Sprite.LayerSetState(runningLayer, state); + if (component.UnlitIdleState != null && + component.UnlitRunningState != null) + { + var state = isRunning ? component.UnlitRunningState : component.UnlitIdleState; + args.Sprite.LayerSetState(powerLayer, state); + } } } diff --git a/Content.Client/Mech/Ui/MechMenu.xaml.cs b/Content.Client/Mech/Ui/MechMenu.xaml.cs index 6f39bc386e..7ce863b7cd 100644 --- a/Content.Client/Mech/Ui/MechMenu.xaml.cs +++ b/Content.Client/Mech/Ui/MechMenu.xaml.cs @@ -12,7 +12,7 @@ public sealed partial class MechMenu : FancyWindow { [Dependency] private readonly IEntityManager _ent = default!; - private readonly EntityUid _mech; + private EntityUid _mech; public event Action? OnRemoveButtonPressed; @@ -25,6 +25,7 @@ public MechMenu() public void SetEntity(EntityUid uid) { MechView.SetEntity(uid); + _mech = uid; } public void UpdateMechStats() diff --git a/Content.Client/Paper/EnvelopeSystem.cs b/Content.Client/Paper/EnvelopeSystem.cs new file mode 100644 index 0000000000..f405ed1518 --- /dev/null +++ b/Content.Client/Paper/EnvelopeSystem.cs @@ -0,0 +1,35 @@ +using Content.Shared.Paper; +using Robust.Client.GameObjects; + +namespace Content.Client.Paper; + +public sealed class EnvelopeSystem : VisualizerSystem +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnAfterAutoHandleState); + } + + private void OnAfterAutoHandleState(Entity ent, ref AfterAutoHandleStateEvent args) + { + UpdateAppearance(ent); + } + + private void UpdateAppearance(Entity ent, SpriteComponent? sprite = null) + { + if (!Resolve(ent.Owner, ref sprite)) + return; + + sprite.LayerSetVisible(EnvelopeVisualLayers.Open, ent.Comp.State == EnvelopeComponent.EnvelopeState.Open); + sprite.LayerSetVisible(EnvelopeVisualLayers.Sealed, ent.Comp.State == EnvelopeComponent.EnvelopeState.Sealed); + sprite.LayerSetVisible(EnvelopeVisualLayers.Torn, ent.Comp.State == EnvelopeComponent.EnvelopeState.Torn); + } + + public enum EnvelopeVisualLayers : byte + { + Open, + Sealed, + Torn + } +} diff --git a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml.cs b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml.cs index 9c2b51dcae..8b21e7d94b 100644 --- a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml.cs +++ b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml.cs @@ -3,6 +3,7 @@ using Content.Client.Resources; using Content.Client.UserInterface.Controls; using Content.Shared.Singularity.Components; +using Content.Shared.Access.Systems; using Robust.Client.Animations; using Robust.Client.AutoGenerated; using Robust.Client.Graphics; @@ -13,6 +14,7 @@ using Robust.Shared.Noise; using Robust.Shared.Prototypes; using Robust.Shared.Timing; +using Robust.Client.Player; namespace Content.Client.ParticleAccelerator.UI; @@ -21,6 +23,11 @@ public sealed partial class ParticleAcceleratorControlMenu : FancyWindow { [Dependency] private readonly IResourceCache _cache = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IPlayerManager _player = default!; + + private readonly AccessReaderSystem _accessReader; + private readonly FastNoiseLite _drawNoiseGenerator; private readonly Animation _alarmControlAnimation; @@ -44,6 +51,7 @@ public ParticleAcceleratorControlMenu() RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); + _accessReader = _entityManager.System(); _drawNoiseGenerator = new(); _drawNoiseGenerator.SetFractalType(FastNoiseLite.FractalType.FBm); _drawNoiseGenerator.SetFrequency(0.5f); @@ -150,7 +158,7 @@ private void PowerStateChanged(ValueChangedEventArgs e) private bool StrengthSpinBoxValid(int n) { - return n >= 0 && n <= _maxStrength ; + return n >= 0 && n <= _maxStrength; } protected override DragMode GetDragModeFor(Vector2 relativeMousePos) @@ -201,13 +209,16 @@ private void UpdatePowerState(ParticleAcceleratorPowerState state, bool enabled, private void UpdateUI(bool assembled, bool blocked, bool enabled, bool powerBlock) { + bool hasAccess = _player.LocalSession?.AttachedEntity is {} player + && _accessReader.IsAllowed(player, _entity); + OnButton.Pressed = enabled; OffButton.Pressed = !enabled; - var cantUse = !assembled || blocked || powerBlock; + var cantUse = !assembled || blocked || powerBlock || !hasAccess; OnButton.Disabled = cantUse; OffButton.Disabled = cantUse; - ScanButton.Disabled = blocked; + ScanButton.Disabled = blocked || !hasAccess; var cantChangeLevel = !assembled || blocked || !enabled || cantUse; StateSpinBox.SetButtonDisabled(cantChangeLevel); diff --git a/Content.Client/Power/EntitySystems/PowerReceiverSystem.cs b/Content.Client/Power/EntitySystems/PowerReceiverSystem.cs index 4d56592c23..61e20f751c 100644 --- a/Content.Client/Power/EntitySystems/PowerReceiverSystem.cs +++ b/Content.Client/Power/EntitySystems/PowerReceiverSystem.cs @@ -1,6 +1,7 @@ -using Content.Client.Power.Components; +using Content.Client.Power.Components; using Content.Shared.Power.Components; using Content.Shared.Power.EntitySystems; +using Content.Shared.Examine; using Robust.Shared.GameStates; namespace Content.Client.Power.EntitySystems; @@ -10,9 +11,15 @@ public sealed class PowerReceiverSystem : SharedPowerReceiverSystem public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnExamined); SubscribeLocalEvent(OnHandleState); } + private void OnExamined(Entity ent, ref ExaminedEvent args) + { + args.PushMarkup(GetExamineText(ent.Comp.Powered)); + } + private void OnHandleState(EntityUid uid, ApcPowerReceiverComponent component, ref ComponentHandleState args) { if (args.Current is not ApcPowerReceiverComponentState state) diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs index 801a3f8fdf..71561703d6 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs @@ -170,11 +170,12 @@ private bool TryFindFallbackSpawn(out EntityCoordinates coords) { var size = grid.LocalAABB.Size.LengthSquared(); - if (maxSize is not null && size < maxSize) - continue; - var station = HasComp(uid); + //We want the first station grid to overwrite any previous non-station grids no matter the size, in case the vgroid was found first + if (maxSize is not null && size < maxSize && !(!stationFound && station)) + continue; + if (!station && stationFound) continue; @@ -183,7 +184,6 @@ private bool TryFindFallbackSpawn(out EntityCoordinates coords) if (station) stationFound = true; - } coords = new EntityCoordinates(maxUid ?? default, default); diff --git a/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs b/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs index 663bde15b0..fe48b042f3 100644 --- a/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs +++ b/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs @@ -102,12 +102,21 @@ protected override void UpdateState(BoundUserInterfaceState state) offering.AddContent(new Label { - Text = faction, + Text = string.IsNullOrWhiteSpace(Loc.GetString(_protoManager.Index(faction).Description)) + ? LogAndReturnDefaultFactionDescription(faction) + : Loc.GetString(_protoManager.Index(faction).Description), FontColorOverride = StyleNano.NanoGold, HorizontalAlignment = Control.HAlignment.Left, Margin = new Thickness(0f, 0f, 0f, 5f), }); + string LogAndReturnDefaultFactionDescription(string faction) + { + Logger.Error($"Description is null or white space for SalvageFactionPrototype: {faction}"); + return Loc.GetString(_protoManager.Index(faction).ID); + } + + // Duration offering.AddContent(new Label { @@ -132,12 +141,20 @@ protected override void UpdateState(BoundUserInterfaceState state) offering.AddContent(new Label { - Text = Loc.GetString(_protoManager.Index(biome).ID), + Text = string.IsNullOrWhiteSpace(Loc.GetString(_protoManager.Index(biome).Description)) + ? LogAndReturnDefaultBiomDescription(biome) + : Loc.GetString(_protoManager.Index(biome).Description), FontColorOverride = StyleNano.NanoGold, HorizontalAlignment = Control.HAlignment.Left, Margin = new Thickness(0f, 0f, 0f, 5f), }); + string LogAndReturnDefaultBiomDescription(string biome) + { + Logger.Error($"Description is null or white space for SalvageBiomeModPrototype: {biome}"); + return Loc.GetString(_protoManager.Index(biome).ID); + } + // Modifiers offering.AddContent(new Label { diff --git a/Content.Client/Singularity/SingularityOverlay.cs b/Content.Client/Singularity/SingularityOverlay.cs index c7c6aa2b5b..e71b6e96b8 100644 --- a/Content.Client/Singularity/SingularityOverlay.cs +++ b/Content.Client/Singularity/SingularityOverlay.cs @@ -100,6 +100,8 @@ protected override void Draw(in OverlayDrawArgs args) /// private void OnProjectFromScreenToMap(ref PixelToMapEvent args) { // Mostly copypasta from the singularity shader. + if (args.Viewport.Eye == null) + return; var maxDistance = MaxDistance * EyeManager.PixelsPerMeter; var finalCoords = args.VisiblePosition; @@ -112,10 +114,11 @@ private void OnProjectFromScreenToMap(ref PixelToMapEvent args) // and in local space 'Y' is measured in pixels from the top of the viewport. // As a minor optimization the locations of the singularities are transformed into fragment space in BeforeDraw so the shader doesn't need to. // We need to undo that here or this will transform the cursor position as if the singularities were mirrored vertically relative to the center of the viewport. + var localPosition = _positions[i]; localPosition.Y = args.Viewport.Size.Y - localPosition.Y; var delta = args.VisiblePosition - localPosition; - var distance = (delta / args.Viewport.RenderScale).Length(); + var distance = (delta / (args.Viewport.RenderScale * args.Viewport.Eye.Scale)).Length(); var deformation = _intensities[i] / MathF.Pow(distance, _falloffPowers[i]); diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs index dba48a119d..0c04a55059 100644 --- a/Content.Client/Stylesheets/StyleNano.cs +++ b/Content.Client/Stylesheets/StyleNano.cs @@ -151,6 +151,11 @@ public sealed class StyleNano : StyleBase public static readonly Color ChatBackgroundColor = Color.FromHex("#25252ADD"); + //Bwoink + public const string StyleClassPinButtonPinned = "pinButtonPinned"; + public const string StyleClassPinButtonUnpinned = "pinButtonUnpinned"; + + public override Stylesheet Stylesheet { get; } public StyleNano(IResourceCache resCache) : base(resCache) @@ -1608,6 +1613,21 @@ public StyleNano(IResourceCache resCache) : base(resCache) { BackgroundColor = FancyTreeSelectedRowColor, }), + // Pinned button style + new StyleRule( + new SelectorElement(typeof(TextureButton), new[] { StyleClassPinButtonPinned }, null, null), + new[] + { + new StyleProperty(TextureButton.StylePropertyTexture, resCache.GetTexture("/Textures/Interface/Bwoink/pinned.png")) + }), + + // Unpinned button style + new StyleRule( + new SelectorElement(typeof(TextureButton), new[] { StyleClassPinButtonUnpinned }, null, null), + new[] + { + new StyleProperty(TextureButton.StylePropertyTexture, resCache.GetTexture("/Textures/Interface/Bwoink/un_pinned.png")) + }) }).ToList()); } } diff --git a/Content.IntegrationTests/Tests/GameRules/FailAndStartPresetTest.cs b/Content.IntegrationTests/Tests/GameRules/FailAndStartPresetTest.cs index 518166ed86..3109df890a 100644 --- a/Content.IntegrationTests/Tests/GameRules/FailAndStartPresetTest.cs +++ b/Content.IntegrationTests/Tests/GameRules/FailAndStartPresetTest.cs @@ -1,4 +1,4 @@ -#nullable enable +#nullable enable using Content.Server.GameTicking; using Content.Server.GameTicking.Presets; using Content.Shared.CCVar; @@ -36,7 +36,7 @@ public sealed class FailAndStartPresetTest - type: entity id: TestRule parent: BaseGameRule - noSpawn: true + categories: [ GameRules ] components: - type: GameRule minPlayers: 0 @@ -45,7 +45,7 @@ public sealed class FailAndStartPresetTest - type: entity id: TestRuleTenPlayers parent: BaseGameRule - noSpawn: true + categories: [ GameRules ] components: - type: GameRule minPlayers: 10 diff --git a/Content.IntegrationTests/Tests/NPC/NPCTest.cs b/Content.IntegrationTests/Tests/NPC/NPCTest.cs index 83321fe613..064fd6c5bf 100644 --- a/Content.IntegrationTests/Tests/NPC/NPCTest.cs +++ b/Content.IntegrationTests/Tests/NPC/NPCTest.cs @@ -45,6 +45,10 @@ private static void Count(HTNCompoundPrototype compound, Dictionary var count = counts.GetOrNew(compound.ID); count++; + // Compound tasks marked with AllowRecursion are only evaluated once + if (counts.ContainsKey(compound.ID) && compound.AllowRecursion) + continue; + Assert.That(count, Is.LessThan(50)); counts[compound.ID] = count; Count(protoManager.Index(compoundTask.Task), counts, htnSystem, protoManager); diff --git a/Content.Server/Access/LogWireAction.cs b/Content.Server/Access/LogWireAction.cs index 1e97d5c9d6..837cf420d5 100644 --- a/Content.Server/Access/LogWireAction.cs +++ b/Content.Server/Access/LogWireAction.cs @@ -25,7 +25,7 @@ public sealed partial class LogWireAction : ComponentWireAction AccessWireActionKey.Status; + public override object StatusKey => LogWireActionKey.Status; public override void Initialize() { diff --git a/Content.Server/Administration/Commands/JobWhitelistCommands.cs b/Content.Server/Administration/Commands/JobWhitelistCommands.cs index a84a11ef84..e604417f92 100644 --- a/Content.Server/Administration/Commands/JobWhitelistCommands.cs +++ b/Content.Server/Administration/Commands/JobWhitelistCommands.cs @@ -47,7 +47,7 @@ public override async void Execute(IConsoleShell shell, string argStr, string[] var isWhitelisted = await _db.IsJobWhitelisted(guid, job); if (isWhitelisted) { - shell.WriteLine(Loc.GetString("cmd-jobwhitelist-already-whitelisted", + shell.WriteLine(Loc.GetString("cmd-jobwhitelistadd-already-whitelisted", ("player", player), ("jobId", job.Id), ("jobName", jobPrototype.LocalizedName))); diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index eb21662719..1f5abf6726 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -285,18 +285,18 @@ private void AddSmiteVerbs(GetVerbsEvent args) { Text = "admin-smite-remove-hands-name", Category = VerbCategory.Smite, - Icon = new SpriteSpecifier.Rsi(new ("/Textures/Fluids/vomit_toxin.rsi"), "vomit_toxin-1"), + Icon = new SpriteSpecifier.Rsi(new("/Textures/Fluids/vomit_toxin.rsi"), "vomit_toxin-1"), Act = () => { _vomitSystem.Vomit(args.Target, -1000, -1000); // You feel hollow! - var organs = _bodySystem.GetBodyOrganComponents(args.Target, body); + var organs = _bodySystem.GetBodyOrganEntityComps((args.Target, body)); var baseXform = Transform(args.Target); - foreach (var (xform, organ) in organs) + foreach (var organ in organs) { - if (HasComp(xform.Owner) || HasComp(xform.Owner)) + if (HasComp(organ.Owner) || HasComp(organ.Owner)) continue; - _transformSystem.AttachToGridOrMap(organ.Owner); + _transformSystem.PlaceNextTo((organ.Owner, organ.Comp1), (args.Target, baseXform)); } _popupSystem.PopupEntity(Loc.GetString("admin-smite-vomit-organs-self"), args.Target, @@ -361,9 +361,9 @@ private void AddSmiteVerbs(GetVerbsEvent args) Icon = new SpriteSpecifier.Rsi(new ("/Textures/Mobs/Species/Human/organs.rsi"), "stomach"), Act = () => { - foreach (var (component, _) in _bodySystem.GetBodyOrganComponents(args.Target, body)) + foreach (var entity in _bodySystem.GetBodyOrganEntityComps((args.Target, body))) { - QueueDel(component.Owner); + QueueDel(entity.Owner); } _popupSystem.PopupEntity(Loc.GetString("admin-smite-stomach-removal-self"), args.Target, @@ -381,9 +381,9 @@ private void AddSmiteVerbs(GetVerbsEvent args) Icon = new SpriteSpecifier.Rsi(new ("/Textures/Mobs/Species/Human/organs.rsi"), "lung-r"), Act = () => { - foreach (var (component, _) in _bodySystem.GetBodyOrganComponents(args.Target, body)) + foreach (var entity in _bodySystem.GetBodyOrganEntityComps((args.Target, body))) { - QueueDel(component.Owner); + QueueDel(entity.Owner); } _popupSystem.PopupEntity(Loc.GetString("admin-smite-lung-removal-self"), args.Target, diff --git a/Content.Server/Administration/Systems/BwoinkSystem.cs b/Content.Server/Administration/Systems/BwoinkSystem.cs index 0a797aa02a..6709403177 100644 --- a/Content.Server/Administration/Systems/BwoinkSystem.cs +++ b/Content.Server/Administration/Systems/BwoinkSystem.cs @@ -7,11 +7,13 @@ using System.Threading.Tasks; using Content.Server.Administration.Managers; using Content.Server.Afk; +using Content.Server.Database; using Content.Server.Discord; using Content.Server.GameTicking; using Content.Server.Players.RateLimiting; using Content.Shared.Administration; using Content.Shared.CCVar; +using Content.Shared.GameTicking; using Content.Shared.Mind; using JetBrains.Annotations; using Robust.Server.Player; @@ -38,6 +40,7 @@ public sealed partial class BwoinkSystem : SharedBwoinkSystem [Dependency] private readonly GameTicker _gameTicker = default!; [Dependency] private readonly SharedMindSystem _minds = default!; [Dependency] private readonly IAfkManager _afkManager = default!; + [Dependency] private readonly IServerDbManager _dbManager = default!; [Dependency] private readonly PlayerRateLimitManager _rateLimit = default!; [GeneratedRegex(@"^https://discord\.com/api/webhooks/(\d+)/((?!.*/).*)$")] @@ -50,7 +53,11 @@ public sealed partial class BwoinkSystem : SharedBwoinkSystem private string _footerIconUrl = string.Empty; private string _avatarUrl = string.Empty; private string _serverName = string.Empty; - private readonly Dictionary _relayMessages = new(); + + private readonly + Dictionary _relayMessages = new(); + private Dictionary _oldMessageIds = new(); private readonly Dictionary> _messageQueues = new(); private readonly HashSet _processingChannels = new(); @@ -69,6 +76,7 @@ public sealed partial class BwoinkSystem : SharedBwoinkSystem private const string TooLongText = "... **(too long)**"; private int _maxAdditionalChars; + private readonly Dictionary _activeConversations = new(); public override void Initialize() { @@ -79,13 +87,22 @@ public override void Initialize() Subs.CVar(_config, CVars.GameHostName, OnServerNameChanged, true); Subs.CVar(_config, CCVars.AdminAhelpOverrideClientName, OnOverrideChanged, true); _sawmill = IoCManager.Resolve().GetSawmill("AHELP"); - _maxAdditionalChars = GenerateAHelpMessage("", "", true, _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"), _gameTicker.RunLevel, playedSound: false).Length; + var defaultParams = new AHelpMessageParams( + string.Empty, + string.Empty, + true, + _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"), + _gameTicker.RunLevel, + playedSound: false + ); + _maxAdditionalChars = GenerateAHelpMessage(defaultParams).Length; _playerManager.PlayerStatusChanged += OnPlayerStatusChanged; SubscribeLocalEvent(OnGameRunLevelChanged); SubscribeNetworkEvent(OnClientTypingUpdated); + SubscribeLocalEvent(_ => _activeConversations.Clear()); - _rateLimit.Register( + _rateLimit.Register( RateLimitKey, new RateLimitRegistration { @@ -107,14 +124,129 @@ private void OnOverrideChanged(string obj) _overrideClientName = obj; } - private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) + private async void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) { + if (e.NewStatus == SessionStatus.Disconnected) + { + if (_activeConversations.TryGetValue(e.Session.UserId, out var lastMessageTime)) + { + var timeSinceLastMessage = DateTime.Now - lastMessageTime; + if (timeSinceLastMessage > TimeSpan.FromMinutes(5)) + { + _activeConversations.Remove(e.Session.UserId); + return; // Do not send disconnect message if timeout exceeded + } + } + + // Check if the user has been banned + var ban = await _dbManager.GetServerBanAsync(null, e.Session.UserId, null); + if (ban != null) + { + var banMessage = Loc.GetString("bwoink-system-player-banned", ("banReason", ban.Reason)); + NotifyAdmins(e.Session, banMessage, PlayerStatusType.Banned); + _activeConversations.Remove(e.Session.UserId); + return; + } + } + + // Notify all admins if a player disconnects or reconnects + var message = e.NewStatus switch + { + SessionStatus.Connected => Loc.GetString("bwoink-system-player-reconnecting"), + SessionStatus.Disconnected => Loc.GetString("bwoink-system-player-disconnecting"), + _ => null + }; + + if (message != null) + { + var statusType = e.NewStatus == SessionStatus.Connected + ? PlayerStatusType.Connected + : PlayerStatusType.Disconnected; + NotifyAdmins(e.Session, message, statusType); + } + if (e.NewStatus != SessionStatus.InGame) return; RaiseNetworkEvent(new BwoinkDiscordRelayUpdated(!string.IsNullOrWhiteSpace(_webhookUrl)), e.Session); } + private void NotifyAdmins(ICommonSession session, string message, PlayerStatusType statusType) + { + if (!_activeConversations.ContainsKey(session.UserId)) + { + // If the user is not part of an active conversation, do not notify admins. + return; + } + + // Get the current timestamp + var timestamp = DateTime.Now.ToString("HH:mm:ss"); + var roundTime = _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"); + + // Determine the icon based on the status type + string icon = statusType switch + { + PlayerStatusType.Connected => ":green_circle:", + PlayerStatusType.Disconnected => ":red_circle:", + PlayerStatusType.Banned => ":no_entry:", + _ => ":question:" + }; + + // Create the message parameters for Discord + var messageParams = new AHelpMessageParams( + session.Name, + message, + true, + roundTime, + _gameTicker.RunLevel, + playedSound: true, + icon: icon + ); + + // Create the message for in-game with username + var color = statusType switch + { + PlayerStatusType.Connected => Color.Green.ToHex(), + PlayerStatusType.Disconnected => Color.Yellow.ToHex(), + PlayerStatusType.Banned => Color.Orange.ToHex(), + _ => Color.Gray.ToHex(), + }; + var inGameMessage = $"[color={color}]{session.Name} {message}[/color]"; + + var bwoinkMessage = new BwoinkTextMessage( + userId: session.UserId, + trueSender: SystemUserId, + text: inGameMessage, + sentAt: DateTime.Now, + playSound: false + ); + + var admins = GetTargetAdmins(); + foreach (var admin in admins) + { + RaiseNetworkEvent(bwoinkMessage, admin); + } + + // Enqueue the message for Discord relay + if (_webhookUrl != string.Empty) + { + // if (!_messageQueues.ContainsKey(session.UserId)) + // _messageQueues[session.UserId] = new Queue(); + // + // var escapedText = FormattedMessage.EscapeText(message); + // messageParams.Message = escapedText; + // + // var discordMessage = GenerateAHelpMessage(messageParams); + // _messageQueues[session.UserId].Enqueue(discordMessage); + + var queue = _messageQueues.GetOrNew(session.UserId); + var escapedText = FormattedMessage.EscapeText(message); + messageParams.Message = escapedText; + var discordMessage = GenerateAHelpMessage(messageParams); + queue.Enqueue(discordMessage); + } + } + private void OnGameRunLevelChanged(GameRunLevelChangedEvent args) { // Don't make a new embed if we @@ -209,7 +341,8 @@ private async Task SetWebhookData(string id, string token) var content = await response.Content.ReadAsStringAsync(); if (!response.IsSuccessStatusCode) { - _sawmill.Log(LogLevel.Error, $"Discord returned bad status code when trying to get webhook data (perhaps the webhook URL is invalid?): {response.StatusCode}\nResponse: {content}"); + _sawmill.Log(LogLevel.Error, + $"Discord returned bad status code when trying to get webhook data (perhaps the webhook URL is invalid?): {response.StatusCode}\nResponse: {content}"); return; } @@ -233,7 +366,7 @@ private async void ProcessQueue(NetUserId userId, Queue messages) // Whether the message will become too long after adding these new messages var tooLong = exists && messages.Sum(msg => Math.Min(msg.Length, MessageLengthCap) + "\n".Length) - + existingEmbed.description.Length > DescriptionMax; + + existingEmbed.description.Length > DescriptionMax; // If there is no existing embed, or it is getting too long, we create a new embed if (!exists || tooLong) @@ -242,7 +375,8 @@ private async void ProcessQueue(NetUserId userId, Queue messages) if (lookup == null) { - _sawmill.Log(LogLevel.Error, $"Unable to find player for NetUserId {userId} when sending discord webhook."); + _sawmill.Log(LogLevel.Error, + $"Unable to find player for NetUserId {userId} when sending discord webhook."); _relayMessages.Remove(userId); return; } @@ -254,11 +388,13 @@ private async void ProcessQueue(NetUserId userId, Queue messages) { if (tooLong && existingEmbed.id != null) { - linkToPrevious = $"**[Go to previous embed of this round](https://discord.com/channels/{guildId}/{channelId}/{existingEmbed.id})**\n"; + linkToPrevious = + $"**[Go to previous embed of this round](https://discord.com/channels/{guildId}/{channelId}/{existingEmbed.id})**\n"; } else if (_oldMessageIds.TryGetValue(userId, out var id) && !string.IsNullOrEmpty(id)) { - linkToPrevious = $"**[Go to last round's conversation with this player](https://discord.com/channels/{guildId}/{channelId}/{id})**\n"; + linkToPrevious = + $"**[Go to last round's conversation with this player](https://discord.com/channels/{guildId}/{channelId}/{id})**\n"; } } @@ -274,7 +410,8 @@ private async void ProcessQueue(NetUserId userId, Queue messages) GameRunLevel.PreRoundLobby => "\n\n:arrow_forward: _**Pre-round lobby started**_\n", GameRunLevel.InRound => "\n\n:arrow_forward: _**Round started**_\n", GameRunLevel.PostRound => "\n\n:stop_button: _**Post-round started**_\n", - _ => throw new ArgumentOutOfRangeException(nameof(_gameTicker.RunLevel), $"{_gameTicker.RunLevel} was not matched."), + _ => throw new ArgumentOutOfRangeException(nameof(_gameTicker.RunLevel), + $"{_gameTicker.RunLevel} was not matched."), }; existingEmbed.lastRunLevel = _gameTicker.RunLevel; @@ -290,7 +427,9 @@ private async void ProcessQueue(NetUserId userId, Queue messages) existingEmbed.description += $"\n{message}"; } - var payload = GeneratePayload(existingEmbed.description, existingEmbed.username, existingEmbed.characterName); + var payload = GeneratePayload(existingEmbed.description, + existingEmbed.username, + existingEmbed.characterName); // If there is no existing embed, create a new one // Otherwise patch (edit) it @@ -302,7 +441,8 @@ private async void ProcessQueue(NetUserId userId, Queue messages) var content = await request.Content.ReadAsStringAsync(); if (!request.IsSuccessStatusCode) { - _sawmill.Log(LogLevel.Error, $"Discord returned bad status code when posting message (perhaps the message is too long?): {request.StatusCode}\nResponse: {content}"); + _sawmill.Log(LogLevel.Error, + $"Discord returned bad status code when posting message (perhaps the message is too long?): {request.StatusCode}\nResponse: {content}"); _relayMessages.Remove(userId); return; } @@ -310,7 +450,8 @@ private async void ProcessQueue(NetUserId userId, Queue messages) var id = JsonNode.Parse(content)?["id"]; if (id == null) { - _sawmill.Log(LogLevel.Error, $"Could not find id in json-content returned from discord webhook: {content}"); + _sawmill.Log(LogLevel.Error, + $"Could not find id in json-content returned from discord webhook: {content}"); _relayMessages.Remove(userId); return; } @@ -325,7 +466,8 @@ private async void ProcessQueue(NetUserId userId, Queue messages) if (!request.IsSuccessStatusCode) { var content = await request.Content.ReadAsStringAsync(); - _sawmill.Log(LogLevel.Error, $"Discord returned bad status code when patching message (perhaps the message is too long?): {request.StatusCode}\nResponse: {content}"); + _sawmill.Log(LogLevel.Error, + $"Discord returned bad status code when patching message (perhaps the message is too long?): {request.StatusCode}\nResponse: {content}"); _relayMessages.Remove(userId); return; } @@ -355,7 +497,8 @@ private WebhookPayload GeneratePayload(string messages, string username, string? : $"pre-round lobby for round {_gameTicker.RoundId + 1}", GameRunLevel.InRound => $"round {_gameTicker.RoundId}", GameRunLevel.PostRound => $"post-round {_gameTicker.RoundId}", - _ => throw new ArgumentOutOfRangeException(nameof(_gameTicker.RunLevel), $"{_gameTicker.RunLevel} was not matched."), + _ => throw new ArgumentOutOfRangeException(nameof(_gameTicker.RunLevel), + $"{_gameTicker.RunLevel} was not matched."), }; return new WebhookPayload @@ -401,6 +544,7 @@ public override void Update(float frameTime) protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySessionEventArgs eventArgs) { base.OnBwoinkTextMessage(message, eventArgs); + _activeConversations[message.UserId] = DateTime.Now; var senderSession = eventArgs.SenderSession; // TODO: Sanitize text? @@ -422,7 +566,9 @@ protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySes string bwoinkText; - if (senderAdmin is not null && senderAdmin.Flags == AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently. + if (senderAdmin is not null && + senderAdmin.Flags == + AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently. { bwoinkText = $"[color=purple]{senderSession.Name}[/color]"; } @@ -461,7 +607,9 @@ protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySes { string overrideMsgText; // Doing the same thing as above, but with the override name. Theres probably a better way to do this. - if (senderAdmin is not null && senderAdmin.Flags == AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently. + if (senderAdmin is not null && + senderAdmin.Flags == + AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently. { overrideMsgText = $"[color=purple]{_overrideClientName}[/color]"; } @@ -476,7 +624,11 @@ protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySes overrideMsgText = $"{(message.PlaySound ? "" : "(S) ")}{overrideMsgText}: {escapedText}"; - RaiseNetworkEvent(new BwoinkTextMessage(message.UserId, senderSession.UserId, overrideMsgText, playSound: playSound), session.Channel); + RaiseNetworkEvent(new BwoinkTextMessage(message.UserId, + senderSession.UserId, + overrideMsgText, + playSound: playSound), + session.Channel); } else RaiseNetworkEvent(msg, session.Channel); @@ -496,8 +648,18 @@ protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySes { str = str[..(DescriptionMax - _maxAdditionalChars - unameLength)]; } + var nonAfkAdmins = GetNonAfkAdmins(); - _messageQueues[msg.UserId].Enqueue(GenerateAHelpMessage(senderSession.Name, str, !personalChannel, _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"), _gameTicker.RunLevel, playedSound: playSound, noReceivers: nonAfkAdmins.Count == 0)); + var messageParams = new AHelpMessageParams( + senderSession.Name, + str, + !personalChannel, + _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"), + _gameTicker.RunLevel, + playedSound: playSound, + noReceivers: nonAfkAdmins.Count == 0 + ); + _messageQueues[msg.UserId].Enqueue(GenerateAHelpMessage(messageParams)); } if (admins.Count != 0 || sendsWebhook) @@ -512,7 +674,8 @@ protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySes private IList GetNonAfkAdmins() { return _adminManager.ActiveAdmins - .Where(p => (_adminManager.GetAdminData(p)?.HasFlag(AdminFlags.Adminhelp) ?? false) && !_afkManager.IsAfk(p)) + .Where(p => (_adminManager.GetAdminData(p)?.HasFlag(AdminFlags.Adminhelp) ?? false) && + !_afkManager.IsAfk(p)) .Select(p => p.Channel) .ToList(); } @@ -525,25 +688,69 @@ private IList GetTargetAdmins() .ToList(); } - private static string GenerateAHelpMessage(string username, string message, bool admin, string roundTime, GameRunLevel roundState, bool playedSound, bool noReceivers = false) + private static string GenerateAHelpMessage(AHelpMessageParams parameters) { var stringbuilder = new StringBuilder(); - if (admin) + if (parameters.Icon != null) + stringbuilder.Append(parameters.Icon); + else if (parameters.IsAdmin) stringbuilder.Append(":outbox_tray:"); - else if (noReceivers) + else if (parameters.NoReceivers) stringbuilder.Append(":sos:"); else stringbuilder.Append(":inbox_tray:"); - if(roundTime != string.Empty && roundState == GameRunLevel.InRound) - stringbuilder.Append($" **{roundTime}**"); - if (!playedSound) + if (parameters.RoundTime != string.Empty && parameters.RoundState == GameRunLevel.InRound) + stringbuilder.Append($" **{parameters.RoundTime}**"); + if (!parameters.PlayedSound) stringbuilder.Append(" **(S)**"); - stringbuilder.Append($" **{username}:** "); - stringbuilder.Append(message); + + if (parameters.Icon == null) + stringbuilder.Append($" **{parameters.Username}:** "); + else + stringbuilder.Append($" **{parameters.Username}** "); + stringbuilder.Append(parameters.Message); return stringbuilder.ToString(); } } -} + public sealed class AHelpMessageParams + { + public string Username { get; set; } + public string Message { get; set; } + public bool IsAdmin { get; set; } + public string RoundTime { get; set; } + public GameRunLevel RoundState { get; set; } + public bool PlayedSound { get; set; } + public bool NoReceivers { get; set; } + public string? Icon { get; set; } + + public AHelpMessageParams( + string username, + string message, + bool isAdmin, + string roundTime, + GameRunLevel roundState, + bool playedSound, + bool noReceivers = false, + string? icon = null) + { + Username = username; + Message = message; + IsAdmin = isAdmin; + RoundTime = roundTime; + RoundState = roundState; + PlayedSound = playedSound; + NoReceivers = noReceivers; + Icon = icon; + } + } + + public enum PlayerStatusType + { + Connected, + Disconnected, + Banned, + } +} diff --git a/Content.Server/Anomaly/AnomalySynchronizerSystem.cs b/Content.Server/Anomaly/AnomalySynchronizerSystem.cs index 434a3fef66..9f18a41292 100644 --- a/Content.Server/Anomaly/AnomalySynchronizerSystem.cs +++ b/Content.Server/Anomaly/AnomalySynchronizerSystem.cs @@ -122,7 +122,7 @@ private void ConnectToAnomaly(Entity ent, Entity ent, AnomalyComponent anomaly) { diff --git a/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs b/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs index 0e49c5ee56..d289fdabff 100644 --- a/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs @@ -76,7 +76,7 @@ public override void Update(float frameTime) if (anomaly.Severity >= 0.97) reagentProducingAmount *= component.SupercriticalReagentProducingModifier; newSol.AddReagent(component.ProducingReagent, reagentProducingAmount); - _solutionContainer.TryAddSolution(component.Solution.Value, newSol); //TO DO - the container is not fully filled. + _solutionContainer.TryAddSolution(component.Solution.Value, newSol); // TODO - the container is not fully filled. component.AccumulatedFrametime = 0; diff --git a/Content.Server/Antag/AntagSelectionSystem.cs b/Content.Server/Antag/AntagSelectionSystem.cs index d2bc26f20d..c9ef237474 100644 --- a/Content.Server/Antag/AntagSelectionSystem.cs +++ b/Content.Server/Antag/AntagSelectionSystem.cs @@ -336,7 +336,7 @@ public void MakeAntag(Entity ent, ICommonSession? sessi } _mind.TransferTo(curMind.Value, antagEnt, ghostCheckOverride: true); - _role.MindAddRoles(curMind.Value, def.MindComponents); + _role.MindAddRoles(curMind.Value, def.MindComponents, null, true); ent.Comp.SelectedMinds.Add((curMind.Value, Name(player))); SendBriefing(session, def.Briefing); } diff --git a/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs b/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs index cd22f1f6d3..943fb75525 100644 --- a/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs +++ b/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs @@ -157,7 +157,7 @@ private void InputTick(float frameTime) /// The message to broadcase to all players/spectators. private void SendMessage(BoundUserInterfaceMessage message) { - _uiSystem.ServerSendUiMessage(_entityManager.GetEntity(message.Entity), BlockGameUiKey.Key, message); + _uiSystem.ServerSendUiMessage(_owner, BlockGameUiKey.Key, message); } /// @@ -167,7 +167,7 @@ private void SendMessage(BoundUserInterfaceMessage message) /// The target recipient. private void SendMessage(BoundUserInterfaceMessage message, EntityUid actor) { - _uiSystem.ServerSendUiMessage(_entityManager.GetEntity(message.Entity), BlockGameUiKey.Key, message, actor); + _uiSystem.ServerSendUiMessage(_owner, BlockGameUiKey.Key, message, actor); } /// diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index dd408755e6..7a2a3d474a 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -177,6 +177,10 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com RaiseLocalEvent(ref ev); ev.FulfillmentEntity ??= station.Value; + _idCardSystem.TryFindIdCard(player, out var idCard); + // ReSharper disable once ConditionalAccessQualifierIsNonNullableAccordingToAPIContract + order.SetApproverData(idCard.Comp?.FullName, idCard.Comp?.JobTitle); + if (!ev.Handled) { ev.FulfillmentEntity = TryFulfillOrder((station.Value, stationData), order, orderDatabase); @@ -189,18 +193,13 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com } } - _idCardSystem.TryFindIdCard(player, out var idCard); - // ReSharper disable once ConditionalAccessQualifierIsNonNullableAccordingToAPIContract - order.SetApproverData(idCard.Comp?.FullName, idCard.Comp?.JobTitle); + order.Approved = true; _audio.PlayPvs(component.ConfirmSound, uid); - var approverName = idCard.Comp?.FullName ?? Loc.GetString("access-reader-unknown-id"); - var approverJob = idCard.Comp?.JobTitle ?? Loc.GetString("access-reader-unknown-id"); var message = Loc.GetString("cargo-console-unlock-approved-order-broadcast", ("productName", Loc.GetString(order.ProductName)), ("orderAmount", order.OrderQuantity), - ("approverName", approverName), - ("approverJob", approverJob), + ("approver", order.Approver ?? string.Empty), ("cost", cost)); _radio.SendRadioMessage(uid, message, component.AnnouncementChannel, uid, escapeMarkup: false); ConsolePopup(args.Actor, Loc.GetString("cargo-console-trade-station", ("destination", MetaData(ev.FulfillmentEntity.Value).EntityName))); @@ -421,6 +420,7 @@ Entity stationData // Approve it now order.SetApproverData(dest, sender); + order.Approved = true; // Log order addition _adminLogger.Add(LogType.Action, LogImpact.Low, diff --git a/Content.Server/CharacterInfo/CharacterInfoSystem.cs b/Content.Server/CharacterInfo/CharacterInfoSystem.cs index 3099b2f90f..3d83a66705 100644 --- a/Content.Server/CharacterInfo/CharacterInfoSystem.cs +++ b/Content.Server/CharacterInfo/CharacterInfoSystem.cs @@ -31,7 +31,7 @@ private void OnRequestCharacterInfoEvent(RequestCharacterInfoEvent msg, EntitySe var entity = args.SenderSession.AttachedEntity.Value; var objectives = new Dictionary>(); - var jobTitle = "No Profession"; + var jobTitle = Loc.GetString("character-info-no-profession"); string? briefing = null; if (_minds.TryGetMind(entity, out var mindId, out var mind)) { diff --git a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs index 54c3fd576f..d94faa8123 100644 --- a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs @@ -203,9 +203,9 @@ private void InjectDoAfter(Entity injector, EntityUid target, BreakOnMove = true, BreakOnWeightlessMove = false, BreakOnDamage = true, - NeedHand = true, - BreakOnHandChange = true, - MovementThreshold = 0.1f, + NeedHand = injector.Comp.NeedHand, + BreakOnHandChange = injector.Comp.BreakOnHandChange, + MovementThreshold = injector.Comp.MovementThreshold, }); } diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs index aa1ab3dacc..37a5ba2ef8 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs @@ -25,7 +25,6 @@ using Content.Shared.Item; using Content.Shared.Movement.Events; using Content.Shared.Popups; -using Content.Shared.Throwing; using Content.Shared.Verbs; using Robust.Server.Audio; using Robust.Server.GameObjects; @@ -35,7 +34,6 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; using Robust.Shared.Player; -using Robust.Shared.Random; using Robust.Shared.Utility; namespace Content.Server.Disposal.Unit.EntitySystems; @@ -331,12 +329,13 @@ private void OnMovement(EntityUid uid, SharedDisposalUnitComponent component, re { var currentTime = GameTiming.CurTime; + if (!_actionBlockerSystem.CanMove(args.Entity)) + return; + if (!TryComp(args.Entity, out HandsComponent? hands) || hands.Count == 0 || currentTime < component.LastExitAttempt + ExitAttemptDelay) - { return; - } component.LastExitAttempt = currentTime; Remove(uid, component, args.Entity); diff --git a/Content.Server/Flash/DamagedByFlashingSystem.cs b/Content.Server/Flash/DamagedByFlashingSystem.cs index cf0368ca42..5b4c19b8e5 100644 --- a/Content.Server/Flash/DamagedByFlashingSystem.cs +++ b/Content.Server/Flash/DamagedByFlashingSystem.cs @@ -16,7 +16,7 @@ private void OnFlashAttempt(Entity ent, ref FlashAtt { _damageable.TryChangeDamage(ent, ent.Comp.FlashDamage); - //To Do: It would be more logical if different flashes had different power, + //TODO: It would be more logical if different flashes had different power, //and the damage would be inflicted depending on the strength of the flash. } } diff --git a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs index 81001f0932..b4023bbdb9 100644 --- a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs @@ -157,7 +157,7 @@ private void OnContainerModified(EntityUid uid, ReagentGrinderComponent reagentG var outputContainer = _itemSlotsSystem.GetItemOrNull(uid, SharedReagentGrinder.BeakerSlotId); _appearanceSystem.SetData(uid, ReagentGrinderVisualState.BeakerAttached, outputContainer.HasValue); - if (reagentGrinder.AutoMode != GrinderAutoMode.Off && !HasComp(uid)) + if (reagentGrinder.AutoMode != GrinderAutoMode.Off && !HasComp(uid) && this.IsPowered(uid, EntityManager)) { var program = reagentGrinder.AutoMode == GrinderAutoMode.Grind ? GrinderProgram.Grind : GrinderProgram.Juice; DoWork(uid, reagentGrinder, program); diff --git a/Content.Server/Lightning/LightningSystem.cs b/Content.Server/Lightning/LightningSystem.cs index 2147ac80f2..94f3ab8802 100644 --- a/Content.Server/Lightning/LightningSystem.cs +++ b/Content.Server/Lightning/LightningSystem.cs @@ -71,9 +71,9 @@ public void ShootLightning(EntityUid user, EntityUid target, string lightningPro /// if the lightnings being fired should trigger lightning events. public void ShootRandomLightnings(EntityUid user, float range, int boltCount, string lightningPrototype = "Lightning", int arcDepth = 0, bool triggerLightningEvents = true) { - //To Do: add support to different priority target tablem for different lightning types - //To Do: Remove Hardcode LightningTargetComponent (this should be a parameter of the SharedLightningComponent) - //To Do: This is still pretty bad for perf but better than before and at least it doesn't re-allocate + //TODO: add support to different priority target tablem for different lightning types + //TODO: Remove Hardcode LightningTargetComponent (this should be a parameter of the SharedLightningComponent) + //TODO: This is still pretty bad for perf but better than before and at least it doesn't re-allocate // several hashsets every time var targets = _lookup.GetComponentsInRange(_transform.GetMapCoordinates(user), range).ToList(); diff --git a/Content.Server/MagicMirror/MagicMirrorSystem.cs b/Content.Server/MagicMirror/MagicMirrorSystem.cs index 8d8a6bfa3b..f4f889e549 100644 --- a/Content.Server/MagicMirror/MagicMirrorSystem.cs +++ b/Content.Server/MagicMirror/MagicMirrorSystem.cs @@ -4,8 +4,12 @@ using Content.Shared.DoAfter; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Markings; +using Content.Shared.IdentityManagement; using Content.Shared.Interaction; +using Content.Shared.Inventory; using Content.Shared.MagicMirror; +using Content.Shared.Popups; +using Content.Shared.Tag; using Robust.Shared.Audio.Systems; namespace Content.Server.MagicMirror; @@ -19,6 +23,9 @@ public sealed class MagicMirrorSystem : SharedMagicMirrorSystem [Dependency] private readonly DoAfterSystem _doAfterSystem = default!; [Dependency] private readonly MarkingManager _markings = default!; [Dependency] private readonly HumanoidAppearanceSystem _humanoid = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; public override void Initialize() { @@ -46,9 +53,26 @@ private void OnMagicMirrorSelect(EntityUid uid, MagicMirrorComponent component, if (component.Target is not { } target) return; + // Check if the target getting their hair altered has any clothes that hides their hair + if (CheckHeadSlotOrClothes(message.Actor, component.Target.Value)) + { + _popup.PopupEntity( + component.Target == message.Actor + ? Loc.GetString("magic-mirror-blocked-by-hat-self") + : Loc.GetString("magic-mirror-blocked-by-hat-self-target"), + message.Actor, + message.Actor, + PopupType.Medium); + return; + } + _doAfterSystem.Cancel(component.DoAfter); component.DoAfter = null; + var doafterTime = component.SelectSlotTime; + if (component.Target == message.Actor) + doafterTime /= 3; + var doAfter = new MagicMirrorSelectDoAfterEvent() { Category = message.Category, @@ -56,7 +80,7 @@ private void OnMagicMirrorSelect(EntityUid uid, MagicMirrorComponent component, Marking = message.Marking, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.SelectSlotTime, doAfter, uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, doafterTime, doAfter, uid, target: target, used: uid) { DistanceThreshold = SharedInteractionSystem.InteractionRange, BreakOnDamage = true, @@ -66,6 +90,15 @@ private void OnMagicMirrorSelect(EntityUid uid, MagicMirrorComponent component, }, out var doAfterId); + if (component.Target == message.Actor) + { + _popup.PopupEntity(Loc.GetString("magic-mirror-change-slot-self"), component.Target.Value, component.Target.Value, PopupType.Medium); + } + else + { + _popup.PopupEntity(Loc.GetString("magic-mirror-change-slot-target", ("user", Identity.Name(message.Actor, EntityManager))), component.Target.Value, component.Target.Value, PopupType.Medium); + } + component.DoAfter = doAfterId; _audio.PlayPvs(component.ChangeHairSound, uid); } @@ -102,9 +135,26 @@ private void OnTryMagicMirrorChangeColor(EntityUid uid, MagicMirrorComponent com if (component.Target is not { } target) return; + // Check if the target getting their hair altered has any clothes that hides their hair + if (CheckHeadSlotOrClothes(message.Actor, component.Target.Value)) + { + _popup.PopupEntity( + component.Target == message.Actor + ? Loc.GetString("magic-mirror-blocked-by-hat-self") + : Loc.GetString("magic-mirror-blocked-by-hat-self-target"), + message.Actor, + message.Actor, + PopupType.Medium); + return; + } + _doAfterSystem.Cancel(component.DoAfter); component.DoAfter = null; + var doafterTime = component.ChangeSlotTime; + if (component.Target == message.Actor) + doafterTime /= 3; + var doAfter = new MagicMirrorChangeColorDoAfterEvent() { Category = message.Category, @@ -112,7 +162,7 @@ private void OnTryMagicMirrorChangeColor(EntityUid uid, MagicMirrorComponent com Colors = message.Colors, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.ChangeSlotTime, doAfter, uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, doafterTime, doAfter, uid, target: target, used: uid) { BreakOnDamage = true, BreakOnMove = true, @@ -121,6 +171,15 @@ private void OnTryMagicMirrorChangeColor(EntityUid uid, MagicMirrorComponent com }, out var doAfterId); + if (component.Target == message.Actor) + { + _popup.PopupEntity(Loc.GetString("magic-mirror-change-color-self"), component.Target.Value, component.Target.Value, PopupType.Medium); + } + else + { + _popup.PopupEntity(Loc.GetString("magic-mirror-change-color-target", ("user", Identity.Name(message.Actor, EntityManager))), component.Target.Value, component.Target.Value, PopupType.Medium); + } + component.DoAfter = doAfterId; } private void OnChangeColorDoAfter(EntityUid uid, MagicMirrorComponent component, MagicMirrorChangeColorDoAfterEvent args) @@ -156,16 +215,33 @@ private void OnTryMagicMirrorRemoveSlot(EntityUid uid, MagicMirrorComponent comp if (component.Target is not { } target) return; + // Check if the target getting their hair altered has any clothes that hides their hair + if (CheckHeadSlotOrClothes(message.Actor, component.Target.Value)) + { + _popup.PopupEntity( + component.Target == message.Actor + ? Loc.GetString("magic-mirror-blocked-by-hat-self") + : Loc.GetString("magic-mirror-blocked-by-hat-self-target"), + message.Actor, + message.Actor, + PopupType.Medium); + return; + } + _doAfterSystem.Cancel(component.DoAfter); component.DoAfter = null; + var doafterTime = component.RemoveSlotTime; + if (component.Target == message.Actor) + doafterTime /= 3; + var doAfter = new MagicMirrorRemoveSlotDoAfterEvent() { Category = message.Category, Slot = message.Slot, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.RemoveSlotTime, doAfter, uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, doafterTime, doAfter, uid, target: target, used: uid) { DistanceThreshold = SharedInteractionSystem.InteractionRange, BreakOnDamage = true, @@ -174,6 +250,15 @@ private void OnTryMagicMirrorRemoveSlot(EntityUid uid, MagicMirrorComponent comp }, out var doAfterId); + if (component.Target == message.Actor) + { + _popup.PopupEntity(Loc.GetString("magic-mirror-remove-slot-self"), component.Target.Value, component.Target.Value, PopupType.Medium); + } + else + { + _popup.PopupEntity(Loc.GetString("magic-mirror-remove-slot-target", ("user", Identity.Name(message.Actor, EntityManager))), component.Target.Value, component.Target.Value, PopupType.Medium); + } + component.DoAfter = doAfterId; _audio.PlayPvs(component.ChangeHairSound, uid); } @@ -210,15 +295,32 @@ private void OnTryMagicMirrorAddSlot(EntityUid uid, MagicMirrorComponent compone if (component.Target == null) return; + // Check if the target getting their hair altered has any clothes that hides their hair + if (CheckHeadSlotOrClothes(message.Actor, component.Target.Value)) + { + _popup.PopupEntity( + component.Target == message.Actor + ? Loc.GetString("magic-mirror-blocked-by-hat-self") + : Loc.GetString("magic-mirror-blocked-by-hat-self-target"), + message.Actor, + message.Actor, + PopupType.Medium); + return; + } + _doAfterSystem.Cancel(component.DoAfter); component.DoAfter = null; + var doafterTime = component.AddSlotTime; + if (component.Target == message.Actor) + doafterTime /= 3; + var doAfter = new MagicMirrorAddSlotDoAfterEvent() { Category = message.Category, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.AddSlotTime, doAfter, uid, target: component.Target.Value, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, doafterTime, doAfter, uid, target: component.Target.Value, used: uid) { BreakOnDamage = true, BreakOnMove = true, @@ -227,6 +329,15 @@ private void OnTryMagicMirrorAddSlot(EntityUid uid, MagicMirrorComponent compone }, out var doAfterId); + if (component.Target == message.Actor) + { + _popup.PopupEntity(Loc.GetString("magic-mirror-add-slot-self"), component.Target.Value, component.Target.Value, PopupType.Medium); + } + else + { + _popup.PopupEntity(Loc.GetString("magic-mirror-add-slot-target", ("user", Identity.Name(message.Actor, EntityManager))), component.Target.Value, component.Target.Value, PopupType.Medium); + } + component.DoAfter = doAfterId; _audio.PlayPvs(component.ChangeHairSound, uid); } @@ -265,4 +376,32 @@ private void OnUiClosed(Entity ent, ref BoundUIClosedEvent ent.Comp.Target = null; Dirty(ent); } + + /// + /// Helper function that checks if the wearer has anything on their head + /// Or if they have any clothes that hides their hair + /// + private bool CheckHeadSlotOrClothes(EntityUid user, EntityUid target) + { + if (TryComp(target, out var inventoryComp)) + { + // any hat whatsoever will block haircutting + if (_inventory.TryGetSlotEntity(target, "head", out var hat, inventoryComp)) + { + return true; + } + + // maybe there's some kind of armor that has the HidesHair tag as well, so check every slot for it + var slots = _inventory.GetSlotEnumerator((target, inventoryComp), SlotFlags.WITHOUT_POCKET); + while (slots.MoveNext(out var slot)) + { + if (slot.ContainedEntity != null && _tagSystem.HasTag(slot.ContainedEntity.Value, "HidesHair")) + { + return true; + } + } + } + + return false; + } } diff --git a/Content.Server/NPC/HTN/HTNCompoundPrototype.cs b/Content.Server/NPC/HTN/HTNCompoundPrototype.cs index 29cfb96f97..69f8441973 100644 --- a/Content.Server/NPC/HTN/HTNCompoundPrototype.cs +++ b/Content.Server/NPC/HTN/HTNCompoundPrototype.cs @@ -12,4 +12,10 @@ public sealed partial class HTNCompoundPrototype : IPrototype [DataField("branches", required: true)] public List Branches = new(); + + /// + /// Exclude this compound task from the CompoundRecursion integration test. + /// + [DataField] + public bool AllowRecursion = false; } diff --git a/Content.Server/NPC/HTN/HTNPlanJob.cs b/Content.Server/NPC/HTN/HTNPlanJob.cs index 8158303524..9c62f5840a 100644 --- a/Content.Server/NPC/HTN/HTNPlanJob.cs +++ b/Content.Server/NPC/HTN/HTNPlanJob.cs @@ -63,8 +63,13 @@ public HTNPlanJob( // How many primitive tasks we've added since last record. var primitiveCount = 0; + int tasksProcessed = 0; + while (tasksToProcess.TryDequeue(out var currentTask)) { + if (tasksProcessed++ > _rootTask.MaximumTasks) + throw new Exception("HTN Planner exceeded maximum tasks"); + switch (currentTask) { case HTNCompoundTask compound: diff --git a/Content.Server/NPC/HTN/HTNTask.cs b/Content.Server/NPC/HTN/HTNTask.cs index 0f7c0a377e..c09849d079 100644 --- a/Content.Server/NPC/HTN/HTNTask.cs +++ b/Content.Server/NPC/HTN/HTNTask.cs @@ -3,4 +3,10 @@ namespace Content.Server.NPC.HTN; [ImplicitDataDefinitionForInheritors] public abstract partial class HTNTask { + /// + /// Limit the amount of tasks the planner considers. Exceeding this value sleeps the NPC and throws an exception. + /// The expected way to hit this limit is with badly written recursive tasks. + /// + [DataField] + public int MaximumTasks = 1000; } diff --git a/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs b/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs index 191d3fc4bd..9b15bdfd28 100644 --- a/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs @@ -46,6 +46,11 @@ public override void Initialize() _provQuery = GetEntityQuery(); } + private void OnExamined(Entity ent, ref ExaminedEvent args) + { + args.PushMarkup(GetExamineText(ent.Comp.Powered)); + } + private void OnGetVerbs(EntityUid uid, ApcPowerReceiverComponent component, GetVerbsEvent args) { if (!_adminManager.HasAdminFlag(args.User, AdminFlags.Admin)) @@ -61,17 +66,6 @@ private void OnGetVerbs(EntityUid uid, ApcPowerReceiverComponent component, GetV }); } - /// - ///Adds some markup to the examine text of whatever object is using this component to tell you if it's powered or not, even if it doesn't have an icon state to do this for you. - /// - private void OnExamined(EntityUid uid, ApcPowerReceiverComponent component, ExaminedEvent args) - { - args.PushMarkup(Loc.GetString("power-receiver-component-on-examine-main", - ("stateText", Loc.GetString( component.Powered - ? "power-receiver-component-on-examine-powered" - : "power-receiver-component-on-examine-unpowered")))); - } - private void OnProviderShutdown(EntityUid uid, ApcPowerProviderComponent component, ComponentShutdown args) { foreach (var receiver in component.LinkedReceivers) diff --git a/Content.Server/Preferences/Managers/ServerPreferencesManager.cs b/Content.Server/Preferences/Managers/ServerPreferencesManager.cs index 8de458b6ee..2583ed0221 100644 --- a/Content.Server/Preferences/Managers/ServerPreferencesManager.cs +++ b/Content.Server/Preferences/Managers/ServerPreferencesManager.cs @@ -250,7 +250,6 @@ public bool TryGetCachedPreferences(NetUserId userId, /// /// Retrieves preferences for the given username from storage. - /// Creates and saves default preferences if they are not found, then returns them. /// public PlayerPreferences GetPreferences(NetUserId userId) { @@ -265,7 +264,6 @@ public PlayerPreferences GetPreferences(NetUserId userId) /// /// Retrieves preferences for the given username from storage or returns null. - /// Creates and saves default preferences if they are not found, then returns them. /// public PlayerPreferences? GetPreferencesOrNull(NetUserId? userId) { diff --git a/Content.Server/Resist/ResistLockerSystem.cs b/Content.Server/Resist/ResistLockerSystem.cs index 2ab277d0f1..8294ecc5f9 100644 --- a/Content.Server/Resist/ResistLockerSystem.cs +++ b/Content.Server/Resist/ResistLockerSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.Resist; using Content.Shared.Tools.Components; using Content.Shared.Tools.Systems; +using Content.Shared.ActionBlocker; namespace Content.Server.Resist; @@ -18,6 +19,7 @@ public sealed class ResistLockerSystem : EntitySystem [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly WeldableSystem _weldable = default!; + [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; public override void Initialize() { @@ -34,6 +36,9 @@ private void OnRelayMovement(EntityUid uid, ResistLockerComponent component, ref if (!TryComp(uid, out EntityStorageComponent? storageComponent)) return; + if (!_actionBlocker.CanMove(args.Entity)) + return; + if (TryComp(uid, out var lockComponent) && lockComponent.Locked || _weldable.IsWelded(uid)) { AttemptResist(args.Entity, uid, storageComponent, component); diff --git a/Content.Server/Shuttles/Components/GridSpawnComponent.cs b/Content.Server/Shuttles/Components/GridSpawnComponent.cs index d8144354b8..430c9c8df2 100644 --- a/Content.Server/Shuttles/Components/GridSpawnComponent.cs +++ b/Content.Server/Shuttles/Components/GridSpawnComponent.cs @@ -26,6 +26,11 @@ public interface IGridSpawnGroup /// public float MinimumDistance { get; } + /// + /// Maximum distance to spawn away from the station. + /// + public float MaximumDistance { get; } + /// public ProtoId? NameDataset { get; } @@ -67,6 +72,8 @@ public sealed class DungeonSpawnGroup : IGridSpawnGroup /// public float MinimumDistance { get; } + public float MaximumDistance { get; } + /// public ProtoId? NameDataset { get; } @@ -94,7 +101,11 @@ public sealed class GridSpawnGroup : IGridSpawnGroup { public List Paths = new(); + /// public float MinimumDistance { get; } + + /// + public float MaximumDistance { get; } public ProtoId? NameDataset { get; } public int MinCount { get; set; } = 1; public int MaxCount { get; set; } = 1; diff --git a/Content.Server/Shuttles/Systems/DockingSystem.cs b/Content.Server/Shuttles/Systems/DockingSystem.cs index 59a030e83c..f46c3980e5 100644 --- a/Content.Server/Shuttles/Systems/DockingSystem.cs +++ b/Content.Server/Shuttles/Systems/DockingSystem.cs @@ -281,24 +281,24 @@ public void Dock(Entity dockA, Entity dockB) { if (_doorSystem.TryOpen(dockAUid, doorA)) { - doorA.ChangeAirtight = false; if (TryComp(dockAUid, out var airlockA)) { _doorSystem.SetBoltsDown((dockAUid, airlockA), true); } } + doorA.ChangeAirtight = false; } if (TryComp(dockBUid, out DoorComponent? doorB)) { if (_doorSystem.TryOpen(dockBUid, doorB)) { - doorB.ChangeAirtight = false; if (TryComp(dockBUid, out var airlockB)) { _doorSystem.SetBoltsDown((dockBUid, airlockB), true); } } + doorB.ChangeAirtight = false; } if (_pathfinding.TryCreatePortal(dockAXform.Coordinates, dockBXform.Coordinates, out var handle)) diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs index 0976bc5de1..a31fda074f 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs @@ -10,6 +10,7 @@ using Content.Shared.Station.Components; using Robust.Shared.Collections; using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Random; using Robust.Shared.Utility; @@ -86,9 +87,15 @@ private void CargoSpawn(EntityUid uid, StationCargoShuttleComponent component) _mapManager.DeleteMap(mapId); } - private bool TryDungeonSpawn(EntityUid targetGrid, EntityUid stationUid, MapId mapId, DungeonSpawnGroup group, out EntityUid spawned) + private bool TryDungeonSpawn(Entity targetGrid, EntityUid stationUid, MapId mapId, DungeonSpawnGroup group, out EntityUid spawned) { spawned = EntityUid.Invalid; + + if (!_gridQuery.Resolve(targetGrid.Owner, ref targetGrid.Comp)) + { + return false; + } + var dungeonProtoId = _random.Pick(group.Protos); if (!_protoManager.TryIndex(dungeonProtoId, out var dungeonProto)) @@ -96,11 +103,13 @@ private bool TryDungeonSpawn(EntityUid targetGrid, EntityUid stationUid, MapId m return false; } - var spawnCoords = new EntityCoordinates(targetGrid, Vector2.Zero); + var targetPhysics = _physicsQuery.Comp(targetGrid); + var spawnCoords = new EntityCoordinates(targetGrid, targetPhysics.LocalCenter); if (group.MinimumDistance > 0f) { - spawnCoords = spawnCoords.Offset(_random.NextVector2(group.MinimumDistance, group.MinimumDistance * 1.5f)); + var distancePadding = MathF.Max(targetGrid.Comp.LocalAABB.Width, targetGrid.Comp.LocalAABB.Height); + spawnCoords = spawnCoords.Offset(_random.NextVector2(distancePadding + group.MinimumDistance, distancePadding + group.MaximumDistance)); } var spawnMapCoords = _transform.ToMapCoordinates(spawnCoords); diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.IFF.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.IFF.cs index ed5d109e85..5e746fd495 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.IFF.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.IFF.cs @@ -1,4 +1,5 @@ using Content.Server.Shuttles.Components; +using Content.Shared.CCVar; using Content.Shared.Shuttles.BUIStates; using Content.Shared.Shuttles.Components; using Content.Shared.Shuttles.Events; @@ -12,6 +13,26 @@ private void InitializeIFF() SubscribeLocalEvent(OnIFFConsoleAnchor); SubscribeLocalEvent(OnIFFShow); SubscribeLocalEvent(OnIFFShowVessel); + SubscribeLocalEvent(OnGridSplit); + } + + private void OnGridSplit(ref GridSplitEvent ev) + { + var splitMass = _cfg.GetCVar(CCVars.HideSplitGridsUnder); + + if (splitMass < 0) + return; + + foreach (var grid in ev.NewGrids) + { + if (!_physicsQuery.TryGetComponent(grid, out var physics) || + physics.Mass > splitMass) + { + continue; + } + + AddIFFFlag(grid, IFFFlags.HideLabel); + } } private void OnIFFShow(EntityUid uid, IFFConsoleComponent component, IFFShowIFFMessage args) diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.cs index 85703389e9..aae466ba0d 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.cs @@ -58,12 +58,16 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem [Dependency] private readonly ThrusterSystem _thruster = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + private EntityQuery _gridQuery; + public const float TileMassMultiplier = 0.5f; public override void Initialize() { base.Initialize(); + _gridQuery = GetEntityQuery(); + InitializeFTL(); InitializeGridFills(); InitializeIFF(); diff --git a/Content.Server/Atmos/Components/TemperatureProtectionComponent.cs b/Content.Server/Temperature/Components/TemperatureProtectionComponent.cs similarity index 92% rename from Content.Server/Atmos/Components/TemperatureProtectionComponent.cs rename to Content.Server/Temperature/Components/TemperatureProtectionComponent.cs index bdee5ff514..437f0f8940 100644 --- a/Content.Server/Atmos/Components/TemperatureProtectionComponent.cs +++ b/Content.Server/Temperature/Components/TemperatureProtectionComponent.cs @@ -1,6 +1,6 @@ using Content.Server.Temperature.Systems; -namespace Content.Server.Atmos.Components; +namespace Content.Server.Temperature.Components; [RegisterComponent] [Access(typeof(TemperatureSystem))] diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs index 23c8cb6783..d33bf6e025 100644 --- a/Content.Server/Temperature/Systems/TemperatureSystem.cs +++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs @@ -1,6 +1,5 @@ using System.Linq; using Content.Server.Administration.Logs; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Temperature.Components; diff --git a/Content.Shared/Access/SharedAccessWire.cs b/Content.Shared/Access/SharedAccessWire.cs index d5d1b48c70..a0bb316028 100644 --- a/Content.Shared/Access/SharedAccessWire.cs +++ b/Content.Shared/Access/SharedAccessWire.cs @@ -10,3 +10,12 @@ public enum AccessWireActionKey : byte Pulsed, PulseCancel } + +[Serializable, NetSerializable] +public enum LogWireActionKey : byte +{ + Key, + Status, + Pulsed, + PulseCancel +} diff --git a/Content.Shared/Administration/PlayerInfo.cs b/Content.Shared/Administration/PlayerInfo.cs index 93f1aa0b39..ed54d57bbe 100644 --- a/Content.Shared/Administration/PlayerInfo.cs +++ b/Content.Shared/Administration/PlayerInfo.cs @@ -18,6 +18,8 @@ public sealed record PlayerInfo( { private string? _playtimeString; + public bool IsPinned { get; set; } + public string PlaytimeString => _playtimeString ??= OverallPlaytime?.ToString("%d':'hh':'mm") ?? Loc.GetString("generic-unknown-title"); diff --git a/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs b/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs index efabebfc85..30fed573b8 100644 --- a/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs +++ b/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs @@ -183,6 +183,30 @@ public bool AddOrganToFirstValidSlot( return list; } + /// + /// Returns a list of Entity<, > + /// for each organ of the body + /// + /// The component that we want to return + /// The body to check the organs of + public List> GetBodyOrganEntityComps( + Entity entity) + where T : IComponent + { + if (!Resolve(entity, ref entity.Comp)) + return new List>(); + + var query = GetEntityQuery(); + var list = new List>(3); + foreach (var organ in GetBodyOrgans(entity.Owner, entity.Comp)) + { + if (query.TryGetComponent(organ.Id, out var comp)) + list.Add((organ.Id, comp, organ.Component)); + } + + return list; + } + /// /// Tries to get a list of ValueTuples of and OrganComponent on each organs /// in the given body. diff --git a/Content.Shared/Burial/BurialSystem.cs b/Content.Shared/Burial/BurialSystem.cs index 45a89f3be9..5cf7d8820e 100644 --- a/Content.Shared/Burial/BurialSystem.cs +++ b/Content.Shared/Burial/BurialSystem.cs @@ -1,3 +1,4 @@ +using Content.Shared.ActionBlocker; using Content.Shared.Burial; using Content.Shared.Burial.Components; using Content.Shared.DoAfter; @@ -8,7 +9,6 @@ using Content.Shared.Storage.Components; using Content.Shared.Storage.EntitySystems; using Robust.Shared.Audio.Systems; -using Robust.Shared.Player; namespace Content.Server.Burial.Systems; @@ -18,6 +18,7 @@ public sealed class BurialSystem : EntitySystem [Dependency] private readonly SharedEntityStorageSystem _storageSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; public override void Initialize() { @@ -162,6 +163,9 @@ private void OnRelayMovement(EntityUid uid, GraveComponent component, ref Contai if (component.HandDiggingDoAfter != null) return; + if (!_actionBlocker.CanMove(args.Entity)) + return; + var doAfterEventArgs = new DoAfterArgs(EntityManager, args.Entity, component.DigDelay / component.DigOutByHandModifier, new GraveDiggingDoAfterEvent(), uid, target: uid) { NeedHand = false, diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 316b2d2945..37edf3ae42 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -1489,6 +1489,13 @@ public static readonly CVarDef public static readonly CVarDef GodmodeArrivals = CVarDef.Create("shuttle.godmode_arrivals", false, CVar.SERVERONLY); + /// + /// If a grid is split then hide any smaller ones under this mass (kg) from the map. + /// This is useful to avoid split grids spamming out labels. + /// + public static readonly CVarDef HideSplitGridsUnder = + CVarDef.Create("shuttle.hide_split_grids_under", 30, CVar.SERVERONLY); + /// /// Whether to automatically spawn escape shuttles. /// diff --git a/Content.Shared/Cargo/CargoOrderData.cs b/Content.Shared/Cargo/CargoOrderData.cs index ce05d92236..5645cc454d 100644 --- a/Content.Shared/Cargo/CargoOrderData.cs +++ b/Content.Shared/Cargo/CargoOrderData.cs @@ -48,7 +48,7 @@ public sealed partial class CargoOrderData // public int RequesterId; [DataField] public string Reason { get; private set; } - public bool Approved => Approver is not null; + public bool Approved; [DataField] public string? Approver; diff --git a/Content.Shared/Chemistry/Components/InjectorComponent.cs b/Content.Shared/Chemistry/Components/InjectorComponent.cs index aec6834063..1f2716356c 100644 --- a/Content.Shared/Chemistry/Components/InjectorComponent.cs +++ b/Content.Shared/Chemistry/Components/InjectorComponent.cs @@ -87,6 +87,22 @@ public sealed partial class InjectorComponent : Component [AutoNetworkedField] [DataField] public InjectorToggleMode ToggleState = InjectorToggleMode.Draw; + + #region Arguments for injection doafter + + /// + [DataField] + public bool NeedHand = true; + + /// + [DataField] + public bool BreakOnHandChange = true; + + /// + [DataField] + public float MovementThreshold = 0.1f; + + #endregion } /// diff --git a/Content.Shared/Climbing/Systems/ClimbSystem.cs b/Content.Shared/Climbing/Systems/ClimbSystem.cs index 726cdc2468..635bf36049 100644 --- a/Content.Shared/Climbing/Systems/ClimbSystem.cs +++ b/Content.Shared/Climbing/Systems/ClimbSystem.cs @@ -1,5 +1,4 @@ using Content.Shared.ActionBlocker; -using Content.Shared.Body.Systems; using Content.Shared.Buckle.Components; using Content.Shared.Climbing.Components; using Content.Shared.Climbing.Events; @@ -44,6 +43,7 @@ public sealed partial class ClimbSystem : VirtualController private const string ClimbingFixtureName = "climb"; private const int ClimbingCollisionGroup = (int) (CollisionGroup.TableLayer | CollisionGroup.LowImpassable); + private EntityQuery _climbableQuery; private EntityQuery _fixturesQuery; private EntityQuery _xformQuery; @@ -51,6 +51,7 @@ public override void Initialize() { base.Initialize(); + _climbableQuery = GetEntityQuery(); _fixturesQuery = GetEntityQuery(); _xformQuery = GetEntityQuery(); @@ -350,12 +351,39 @@ private void OnClimbEndCollide(EntityUid uid, ClimbingComponent component, ref E { if (args.OurFixtureId != ClimbingFixtureName || !component.IsClimbing - || component.NextTransition != null - || args.OurFixture.Contacts.Count > 1) + || component.NextTransition != null) { return; } + if (args.OurFixture.Contacts.Count > 1) + { + foreach (var contact in args.OurFixture.Contacts.Values) + { + if (!contact.IsTouching) + continue; + + var otherEnt = contact.EntityA; + var otherFixture = contact.FixtureA; + var otherFixtureId = contact.FixtureAId; + if (uid == contact.EntityA) + { + otherEnt = contact.EntityB; + otherFixture = contact.FixtureB; + otherFixtureId = contact.FixtureBId; + } + + if (args.OtherEntity == otherEnt && args.OtherFixtureId == otherFixtureId) + continue; + + if (otherFixture is { Hard: true } && + _climbableQuery.HasComp(otherEnt)) + { + return; + } + } + } + foreach (var otherFixture in args.OurFixture.Contacts.Keys) { // If it's the other fixture then ignore em diff --git a/Content.Shared/CombatMode/SharedCombatModeSystem.cs b/Content.Shared/CombatMode/SharedCombatModeSystem.cs index 60d1362bb0..5eed8ee242 100644 --- a/Content.Shared/CombatMode/SharedCombatModeSystem.cs +++ b/Content.Shared/CombatMode/SharedCombatModeSystem.cs @@ -1,4 +1,5 @@ using Content.Shared.Actions; +using Content.Shared.Mind; using Content.Shared.MouseRotator; using Content.Shared.Movement.Components; using Content.Shared.Popups; @@ -13,6 +14,7 @@ public abstract class SharedCombatModeSystem : EntitySystem [Dependency] private readonly INetManager _netMan = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; public override void Initialize() { @@ -82,7 +84,7 @@ public virtual void SetInCombatMode(EntityUid entity, bool value, CombatModeComp _actionsSystem.SetToggled(component.CombatToggleActionEntity, component.IsInCombatMode); // Change mouse rotator comps if flag is set - if (!component.ToggleMouseRotator || IsNpc(entity)) + if (!component.ToggleMouseRotator || IsNpc(entity) && !_mind.TryGetMind(entity, out _, out _)) return; SetMouseRotatorComponents(entity, value); diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index b9f287f1ce..3bf6066f33 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -58,7 +58,7 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnHandCountChanged); + SubscribeLocalEvent(OnHandCountChanged); SubscribeLocalEvent(OnUncuffAttempt); SubscribeLocalEvent(OnCuffsRemovedFromContainer); @@ -380,33 +380,24 @@ private void OnCuffVirtualItemDeleted(EntityUid uid, HandcuffComponent component /// /// Check the current amount of hands the owner has, and if there's less hands than active cuffs we remove some cuffs. /// - private void OnHandCountChanged(HandCountChangedEvent message) + private void OnHandCountChanged(Entity ent, ref HandCountChangedEvent message) { - var owner = message.Sender; - - if (!TryComp(owner, out CuffableComponent? cuffable) || - !cuffable.Initialized) - { - return; - } - var dirty = false; - var handCount = CompOrNull(owner)?.Count ?? 0; + var handCount = CompOrNull(ent.Owner)?.Count ?? 0; - while (cuffable.CuffedHandCount > handCount && cuffable.CuffedHandCount > 0) + while (ent.Comp.CuffedHandCount > handCount && ent.Comp.CuffedHandCount > 0) { dirty = true; - var container = cuffable.Container; - var entity = container.ContainedEntities[^1]; + var handcuffContainer = ent.Comp.Container; + var handcuffEntity = handcuffContainer.ContainedEntities[^1]; - _container.Remove(entity, container); - _transform.SetWorldPosition(entity, _transform.GetWorldPosition(owner)); + _transform.PlaceNextTo(handcuffEntity, ent.Owner); } if (dirty) { - UpdateCuffState(owner, cuffable); + UpdateCuffState(ent.Owner, ent.Comp); } } diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index ab2df72568..2319d5e916 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -21,6 +21,7 @@ using Robust.Shared.Timing; using Robust.Shared.Audio.Systems; using Robust.Shared.Network; +using Robust.Shared.Map.Components; namespace Content.Shared.Doors.Systems; @@ -40,6 +41,8 @@ public abstract partial class SharedDoorSystem : EntitySystem [Dependency] private readonly AccessReaderSystem _accessReaderSystem = default!; [Dependency] private readonly PryingSystem _pryingSystem = default!; [Dependency] protected readonly SharedPopupSystem Popup = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [ValidatePrototypeId] public const string DoorBumpTag = "DoorBumpOpener"; @@ -546,29 +549,37 @@ public IEnumerable GetColliding(EntityUid uid, PhysicsComponent? phys if (!Resolve(uid, ref physics)) yield break; + var xform = Transform(uid); + // Getting the world bounds from the gridUid allows us to use the version of + // GetCollidingEntities that returns Entity + if (!TryComp(xform.GridUid, out var mapGridComp)) + yield break; + var tileRef = _mapSystem.GetTileRef(xform.GridUid.Value, mapGridComp, xform.Coordinates); + var doorWorldBounds = _entityLookup.GetWorldBounds(tileRef); + // TODO SLOTH fix electro's code. // ReSharper disable once InconsistentNaming var doorAABB = _entityLookup.GetWorldAABB(uid); - foreach (var otherPhysics in PhysicsSystem.GetCollidingEntities(Transform(uid).MapID, doorAABB)) + foreach (var otherPhysics in PhysicsSystem.GetCollidingEntities(Transform(uid).MapID, doorWorldBounds)) { - if (otherPhysics == physics) + if (otherPhysics.Comp == physics) continue; //TODO: Make only shutters ignore these objects upon colliding instead of all airlocks // Excludes Glasslayer for windows, GlassAirlockLayer for windoors, TableLayer for tables - if (!otherPhysics.CanCollide || otherPhysics.CollisionLayer == (int)CollisionGroup.GlassLayer || otherPhysics.CollisionLayer == (int)CollisionGroup.GlassAirlockLayer || otherPhysics.CollisionLayer == (int)CollisionGroup.TableLayer) + if (!otherPhysics.Comp.CanCollide || otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.GlassLayer || otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.GlassAirlockLayer || otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.TableLayer) continue; //If the colliding entity is a slippable item ignore it by the airlock - if (otherPhysics.CollisionLayer == (int)CollisionGroup.SlipLayer && otherPhysics.CollisionMask == (int)CollisionGroup.ItemMask) + if (otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.SlipLayer && otherPhysics.Comp.CollisionMask == (int) CollisionGroup.ItemMask) continue; //For when doors need to close over conveyor belts - if (otherPhysics.CollisionLayer == (int) CollisionGroup.ConveyorMask) + if (otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.ConveyorMask) continue; - if ((physics.CollisionMask & otherPhysics.CollisionLayer) == 0 && (otherPhysics.CollisionMask & physics.CollisionLayer) == 0) + if ((physics.CollisionMask & otherPhysics.Comp.CollisionLayer) == 0 && (otherPhysics.Comp.CollisionMask & physics.CollisionLayer) == 0) continue; if (_entityLookup.GetWorldAABB(otherPhysics.Owner).IntersectPercentage(doorAABB) < IntersectPercentage) diff --git a/Content.Shared/Examine/ExamineSystemShared.cs b/Content.Shared/Examine/ExamineSystemShared.cs index 4100b07483..f0406c5398 100644 --- a/Content.Shared/Examine/ExamineSystemShared.cs +++ b/Content.Shared/Examine/ExamineSystemShared.cs @@ -18,6 +18,7 @@ namespace Content.Shared.Examine { public abstract partial class ExamineSystemShared : EntitySystem { + [Dependency] private readonly OccluderSystem _occluder = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; @@ -182,12 +183,9 @@ public bool InRangeUnOccluded(MapCoordinates origin, MapCoordinates othe length = MaxRaycastRange; } - var occluderSystem = Get(); - IoCManager.Resolve(ref entMan); - var ray = new Ray(origin.Position, dir.Normalized()); - var rayResults = occluderSystem - .IntersectRayWithPredicate(origin.MapId, ray, length, state, predicate, false).ToList(); + var rayResults = _occluder + .IntersectRayWithPredicate(origin.MapId, ray, length, state, predicate, false); if (rayResults.Count == 0) return true; @@ -195,13 +193,13 @@ public bool InRangeUnOccluded(MapCoordinates origin, MapCoordinates othe foreach (var result in rayResults) { - if (!entMan.TryGetComponent(result.HitEntity, out OccluderComponent? o)) + if (!TryComp(result.HitEntity, out OccluderComponent? o)) { continue; } var bBox = o.BoundingBox; - bBox = bBox.Translated(entMan.GetComponent(result.HitEntity).WorldPosition); + bBox = bBox.Translated(_transform.GetWorldPosition(result.HitEntity)); if (bBox.Contains(origin.Position) || bBox.Contains(other.Position)) { @@ -216,7 +214,6 @@ public bool InRangeUnOccluded(MapCoordinates origin, MapCoordinates othe public bool InRangeUnOccluded(EntityUid origin, EntityUid other, float range = ExamineRange, Ignored? predicate = null, bool ignoreInsideBlocker = true) { - var entMan = IoCManager.Resolve(); var originPos = _transform.GetMapCoordinates(origin); var otherPos = _transform.GetMapCoordinates(other); @@ -225,16 +222,14 @@ public bool InRangeUnOccluded(EntityUid origin, EntityUid other, float range = E public bool InRangeUnOccluded(EntityUid origin, EntityCoordinates other, float range = ExamineRange, Ignored? predicate = null, bool ignoreInsideBlocker = true) { - var entMan = IoCManager.Resolve(); var originPos = _transform.GetMapCoordinates(origin); - var otherPos = other.ToMap(entMan, _transform); + var otherPos = _transform.ToMapCoordinates(other); return InRangeUnOccluded(originPos, otherPos, range, predicate, ignoreInsideBlocker); } public bool InRangeUnOccluded(EntityUid origin, MapCoordinates other, float range = ExamineRange, Ignored? predicate = null, bool ignoreInsideBlocker = true) { - var entMan = IoCManager.Resolve(); var originPos = _transform.GetMapCoordinates(origin); return InRangeUnOccluded(originPos, other, range, predicate, ignoreInsideBlocker); @@ -250,11 +245,12 @@ public FormattedMessage GetExamineText(EntityUid entity, EntityUid? examiner) } var hasDescription = false; + var metadata = MetaData(entity); //Add an entity description if one is declared - if (!string.IsNullOrEmpty(EntityManager.GetComponent(entity).EntityDescription)) + if (!string.IsNullOrEmpty(metadata.EntityDescription)) { - message.AddText(EntityManager.GetComponent(entity).EntityDescription); + message.AddText(metadata.EntityDescription); hasDescription = true; } @@ -356,7 +352,7 @@ int Comparison(ExamineMessagePart a, ExamineMessagePart b) var totalMessage = new FormattedMessage(Message); parts.Sort(Comparison); - if (_hasDescription) + if (_hasDescription && parts.Count > 0) { totalMessage.PushNewline(); } diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 2391a7be85..6eada850da 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -952,7 +952,7 @@ public void InteractUsing( RaiseLocalEvent(target, interactUsingEvent, true); DoContactInteraction(user, used, interactUsingEvent); DoContactInteraction(user, target, interactUsingEvent); - DoContactInteraction(used, target, interactUsingEvent); + // Contact interactions are currently only used for forensics, so we don't raise used -> target if (interactUsingEvent.Handled) return; @@ -973,7 +973,7 @@ public void InteractDoAfter(EntityUid user, EntityUid used, EntityUid? target, E if (canReach) { DoContactInteraction(user, target, afterInteractEvent); - DoContactInteraction(used, target, afterInteractEvent); + // Contact interactions are currently only used for forensics, so we don't raise used -> target } if (afterInteractEvent.Handled) @@ -989,7 +989,7 @@ public void InteractDoAfter(EntityUid user, EntityUid used, EntityUid? target, E if (canReach) { DoContactInteraction(user, target, afterInteractUsingEvent); - DoContactInteraction(used, target, afterInteractUsingEvent); + // Contact interactions are currently only used for forensics, so we don't raise used -> target } } diff --git a/Content.Shared/Lathe/LatheComponent.cs b/Content.Shared/Lathe/LatheComponent.cs index 88ac8c05bf..5039e78cb0 100644 --- a/Content.Shared/Lathe/LatheComponent.cs +++ b/Content.Shared/Lathe/LatheComponent.cs @@ -39,6 +39,12 @@ public sealed partial class LatheComponent : Component [DataField] public string? RunningState; + + [DataField] + public string? UnlitIdleState; + + [DataField] + public string? UnlitRunningState; #endregion /// diff --git a/Content.Shared/Lock/LockComponent.cs b/Content.Shared/Lock/LockComponent.cs index e3e2bc6df1..070d5801c1 100644 --- a/Content.Shared/Lock/LockComponent.cs +++ b/Content.Shared/Lock/LockComponent.cs @@ -86,6 +86,13 @@ public sealed partial class LockComponent : Component [ByRefEvent] public record struct LockToggleAttemptEvent(EntityUid User, bool Silent = false, bool Cancelled = false); +/// +/// Event raised on the user when a toggle is attempted. +/// Can be cancelled to prevent it. +/// +[ByRefEvent] +public record struct UserLockToggleAttemptEvent(EntityUid Target, bool Silent = false, bool Cancelled = false); + /// /// Event raised on a lock after it has been toggled. /// diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index 17749817b2..0944c69bbf 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -229,7 +229,12 @@ public bool CanToggleLock(EntityUid uid, EntityUid user, bool quiet = true) var ev = new LockToggleAttemptEvent(user, quiet); RaiseLocalEvent(uid, ref ev, true); - return !ev.Cancelled; + if (ev.Cancelled) + return false; + + var userEv = new UserLockToggleAttemptEvent(uid, quiet); + RaiseLocalEvent(user, ref userEv, true); + return !userEv.Cancelled; } // TODO: this should be a helper on AccessReaderSystem since so many systems copy paste it @@ -368,4 +373,3 @@ private void LockToggled(EntityUid uid, ActivatableUIRequiresLockComponent compo _activatableUI.CloseAll(uid); } } - diff --git a/Content.Shared/Lock/LockingWhitelistComponent.cs b/Content.Shared/Lock/LockingWhitelistComponent.cs new file mode 100644 index 0000000000..4ac832e438 --- /dev/null +++ b/Content.Shared/Lock/LockingWhitelistComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.Lock; + +/// +/// Adds whitelist and blacklist for this mob to lock things. +/// The whitelist and blacklist are checked against the object being locked, not the mob. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(LockingWhitelistSystem))] +public sealed partial class LockingWhitelistComponent : Component +{ + [DataField] + public EntityWhitelist? Whitelist; + + [DataField] + public EntityWhitelist? Blacklist; +} diff --git a/Content.Shared/Lock/LockingWhitelistSystem.cs b/Content.Shared/Lock/LockingWhitelistSystem.cs new file mode 100644 index 0000000000..ba495fba90 --- /dev/null +++ b/Content.Shared/Lock/LockingWhitelistSystem.cs @@ -0,0 +1,28 @@ +using Content.Shared.Popups; +using Content.Shared.Whitelist; + +namespace Content.Shared.Lock; + +public sealed class LockingWhitelistSystem : EntitySystem +{ + [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnUserLockToggleAttempt); + } + + private void OnUserLockToggleAttempt(Entity ent, ref UserLockToggleAttemptEvent args) + { + if (_whitelistSystem.CheckBoth(args.Target, ent.Comp.Blacklist, ent.Comp.Whitelist)) + return; + + if (!args.Silent) + _popupSystem.PopupClient(Loc.GetString("locking-whitelist-component-lock-toggle-deny"), ent.Owner); + + args.Cancelled = true; + } +} diff --git a/Content.Shared/MagicMirror/MagicMirrorComponent.cs b/Content.Shared/MagicMirror/MagicMirrorComponent.cs index 95b1736979..97738be228 100644 --- a/Content.Shared/MagicMirror/MagicMirrorComponent.cs +++ b/Content.Shared/MagicMirror/MagicMirrorComponent.cs @@ -20,28 +20,28 @@ public sealed partial class MagicMirrorComponent : Component public EntityUid? Target; /// - /// doafter time required to add a new slot + /// Do after time to add a new slot, adding hair to a person /// [DataField, ViewVariables(VVAccess.ReadWrite)] - public TimeSpan AddSlotTime = TimeSpan.FromSeconds(5); + public TimeSpan AddSlotTime = TimeSpan.FromSeconds(7); /// - /// doafter time required to remove a existing slot + /// Do after time to remove a slot, removing hair from a person /// [DataField, ViewVariables(VVAccess.ReadWrite)] - public TimeSpan RemoveSlotTime = TimeSpan.FromSeconds(2); + public TimeSpan RemoveSlotTime = TimeSpan.FromSeconds(7); /// - /// doafter time required to change slot + /// Do after time to change a person's hairstyle /// [DataField, ViewVariables(VVAccess.ReadWrite)] - public TimeSpan SelectSlotTime = TimeSpan.FromSeconds(3); + public TimeSpan SelectSlotTime = TimeSpan.FromSeconds(7); /// - /// doafter time required to recolor slot + /// Do after time to change a person's hair color /// [DataField, ViewVariables(VVAccess.ReadWrite)] - public TimeSpan ChangeSlotTime = TimeSpan.FromSeconds(1); + public TimeSpan ChangeSlotTime = TimeSpan.FromSeconds(7); /// /// Sound emitted when slots are changed diff --git a/Content.Shared/Paper/EnvelopeComponent.cs b/Content.Shared/Paper/EnvelopeComponent.cs new file mode 100644 index 0000000000..e56fbd85af --- /dev/null +++ b/Content.Shared/Paper/EnvelopeComponent.cs @@ -0,0 +1,63 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Paper; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] +public sealed partial class EnvelopeComponent : Component +{ + /// + /// The current open/sealed/torn state of the envelope + /// + [ViewVariables, DataField, AutoNetworkedField] + public EnvelopeState State = EnvelopeState.Open; + + [DataField, ViewVariables] + public string SlotId = "letter_slot"; + + /// + /// Stores the current sealing/tearing doafter of the envelope + /// to prevent doafter spam/prediction issues + /// + [DataField, ViewVariables] + public DoAfterId? EnvelopeDoAfter; + + /// + /// How long it takes to seal the envelope closed + /// + [DataField, ViewVariables] + public TimeSpan SealDelay = TimeSpan.FromSeconds(1); + + /// + /// How long it takes to tear open the envelope + /// + [DataField, ViewVariables] + public TimeSpan TearDelay = TimeSpan.FromSeconds(1); + + /// + /// The sound to play when the envelope is sealed closed + /// + [DataField, ViewVariables] + public SoundPathSpecifier? SealSound = new SoundPathSpecifier("/Audio/Effects/packetrip.ogg"); + + /// + /// The sound to play when the envelope is torn open + /// + [DataField, ViewVariables] + public SoundPathSpecifier? TearSound = new SoundPathSpecifier("/Audio/Effects/poster_broken.ogg"); + + [Serializable, NetSerializable] + public enum EnvelopeState : byte + { + Open, + Sealed, + Torn + } +} + +[Serializable, NetSerializable] +public sealed partial class EnvelopeDoAfterEvent : SimpleDoAfterEvent +{ +} diff --git a/Content.Shared/Paper/EnvelopeSystem.cs b/Content.Shared/Paper/EnvelopeSystem.cs new file mode 100644 index 0000000000..560c2c82f9 --- /dev/null +++ b/Content.Shared/Paper/EnvelopeSystem.cs @@ -0,0 +1,108 @@ +using Content.Shared.DoAfter; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Content.Shared.Examine; + +namespace Content.Shared.Paper; + +public sealed class EnvelopeSystem : EntitySystem +{ + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInsertAttempt); + SubscribeLocalEvent(OnEjectAttempt); + SubscribeLocalEvent>(OnGetAltVerbs); + SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(OnExamine); + } + + private void OnExamine(Entity ent, ref ExaminedEvent args) + { + if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Sealed) + { + args.PushMarkup(Loc.GetString("envelope-sealed-examine", ("envelope", ent.Owner))); + } + else if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Torn) + { + args.PushMarkup(Loc.GetString("envelope-torn-examine", ("envelope", ent.Owner))); + } + } + + private void OnGetAltVerbs(Entity ent, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Torn) + return; + + var user = args.User; + args.Verbs.Add(new AlternativeVerb() + { + Text = Loc.GetString(ent.Comp.State == EnvelopeComponent.EnvelopeState.Open ? "envelope-verb-seal" : "envelope-verb-tear"), + IconEntity = GetNetEntity(ent.Owner), + Act = () => + { + TryStartDoAfter(ent, user, ent.Comp.State == EnvelopeComponent.EnvelopeState.Open ? ent.Comp.SealDelay : ent.Comp.TearDelay); + }, + }); + } + + private void OnInsertAttempt(Entity ent, ref ItemSlotInsertAttemptEvent args) + { + args.Cancelled |= ent.Comp.State != EnvelopeComponent.EnvelopeState.Open; + } + + private void OnEjectAttempt(Entity ent, ref ItemSlotEjectAttemptEvent args) + { + args.Cancelled |= ent.Comp.State == EnvelopeComponent.EnvelopeState.Sealed; + } + + private void TryStartDoAfter(Entity ent, EntityUid user, TimeSpan delay) + { + if (ent.Comp.EnvelopeDoAfter.HasValue) + return; + + var doAfterEventArgs = new DoAfterArgs(EntityManager, user, delay, new EnvelopeDoAfterEvent(), ent.Owner, ent.Owner) + { + BreakOnDamage = true, + NeedHand = true, + BreakOnHandChange = true, + MovementThreshold = 0.01f, + DistanceThreshold = 1.0f, + }; + + if (_doAfterSystem.TryStartDoAfter(doAfterEventArgs, out var doAfterId)) + ent.Comp.EnvelopeDoAfter = doAfterId; + } + private void OnDoAfter(Entity ent, ref EnvelopeDoAfterEvent args) + { + ent.Comp.EnvelopeDoAfter = null; + + if (args.Cancelled) + return; + + if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Open) + { + _audioSystem.PlayPredicted(ent.Comp.SealSound, ent.Owner, args.User); + ent.Comp.State = EnvelopeComponent.EnvelopeState.Sealed; + Dirty(ent.Owner, ent.Comp); + } + else if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Sealed) + { + _audioSystem.PlayPredicted(ent.Comp.TearSound, ent.Owner, args.User); + ent.Comp.State = EnvelopeComponent.EnvelopeState.Torn; + Dirty(ent.Owner, ent.Comp); + + if (_itemSlotsSystem.TryGetSlot(ent.Owner, ent.Comp.SlotId, out var slotComp)) + _itemSlotsSystem.TryEjectToHands(ent.Owner, slotComp, args.User); + } + } +} diff --git a/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs b/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs index be2a9dc3ab..37ac751889 100644 --- a/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs +++ b/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs @@ -1,6 +1,15 @@ -namespace Content.Shared.Power.EntitySystems; +using Content.Shared.Examine; +using Content.Shared.Power.Components; + +namespace Content.Shared.Power.EntitySystems; public abstract class SharedPowerReceiverSystem : EntitySystem { - + protected string GetExamineText(bool powered) + { + return Loc.GetString("power-receiver-component-on-examine-main", + ("stateText", Loc.GetString(powered + ? "power-receiver-component-on-examine-powered" + : "power-receiver-component-on-examine-unpowered"))); + } } diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/ISalvageMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/ISalvageMod.cs index aa27f83f03..6233b179b3 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/ISalvageMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/ISalvageMod.cs @@ -5,7 +5,7 @@ public interface ISalvageMod /// /// Player-friendly version describing this modifier. /// - string Description { get; } + LocId Description { get; } /// /// Cost for difficulty modifiers. diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs index c9f038e38f..fda08281b0 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs @@ -17,7 +17,7 @@ public sealed partial class SalvageAirMod : IPrototype, IBiomeSpecificMod /// [DataField("desc")] - public string Description { get; private set; } = string.Empty; + public LocId Description { get; private set; } = string.Empty; /// [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs index 1d4efbd18d..3235741f11 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs @@ -12,7 +12,7 @@ public sealed partial class SalvageBiomeModPrototype : IPrototype, ISalvageMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// /// Cost for difficulty modifiers. diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs index ee3233c551..713bdf08b3 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs @@ -10,7 +10,7 @@ public sealed partial class SalvageDungeonModPrototype : IPrototype, IBiomeSpeci { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs index a7c38b258d..d744d5c308 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs @@ -8,7 +8,7 @@ public sealed partial class SalvageLightMod : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs index 3cc4488684..5226824ed5 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs @@ -10,7 +10,7 @@ public sealed partial class SalvageMod : IPrototype, ISalvageMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// /// Cost for difficulty modifiers. diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs index 17e9af038f..e8b7235511 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs @@ -8,7 +8,7 @@ public sealed partial class SalvageTemperatureMod : IPrototype, IBiomeSpecificMo { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs index 1629d02b08..fc704d49e4 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs @@ -10,7 +10,7 @@ public sealed partial class SalvageWeatherMod : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs b/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs index 4c594945f0..71be4f7bd0 100644 --- a/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs +++ b/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs @@ -7,7 +7,7 @@ public sealed partial class SalvageFactionPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; [ViewVariables(VVAccess.ReadWrite), DataField("entries", required: true)] public List MobGroups = new(); diff --git a/Content.Shared/Salvage/SharedSalvageSystem.cs b/Content.Shared/Salvage/SharedSalvageSystem.cs index 5f5fc875d6..0c56f4f556 100644 --- a/Content.Shared/Salvage/SharedSalvageSystem.cs +++ b/Content.Shared/Salvage/SharedSalvageSystem.cs @@ -55,18 +55,18 @@ public SalvageMission GetMission(SalvageDifficultyPrototype difficulty, int seed if (air.Description != string.Empty) { - mods.Add(air.Description); + mods.Add(Loc.GetString(air.Description)); } // only show the description if there is an atmosphere since wont matter otherwise if (temp.Description != string.Empty && !air.Space) { - mods.Add(temp.Description); + mods.Add(Loc.GetString(temp.Description)); } if (light.Description != string.Empty) { - mods.Add(light.Description); + mods.Add(Loc.GetString(light.Description)); } var duration = TimeSpan.FromSeconds(CfgManager.GetCVar(CCVars.SalvageExpeditionDuration)); diff --git a/Content.Shared/Slippery/NoSlipComponent.cs b/Content.Shared/Slippery/NoSlipComponent.cs index 186861a5a9..d9c3fe3f76 100644 --- a/Content.Shared/Slippery/NoSlipComponent.cs +++ b/Content.Shared/Slippery/NoSlipComponent.cs @@ -1,7 +1,9 @@ -namespace Content.Shared.Slippery +using Robust.Shared.GameStates; + +namespace Content.Shared.Slippery; + +[RegisterComponent, NetworkedComponent] +public sealed partial class NoSlipComponent : Component { - [RegisterComponent] - public sealed partial class NoSlipComponent : Component - { - } + } diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index bb49725e04..4932613d0e 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -16,16 +16,14 @@ using Content.Shared.Verbs; using Content.Shared.Wall; using Content.Shared.Whitelist; -using Robust.Shared.Audio; +using Content.Shared.ActionBlocker; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Physics; -using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; -using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -47,6 +45,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem [Dependency] protected readonly SharedTransformSystem TransformSystem = default!; [Dependency] private readonly WeldableSystem _weldable = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; public const string ContainerName = "entity_storage"; @@ -132,6 +131,9 @@ protected void OnRelayMovement(EntityUid uid, SharedEntityStorageComponent compo if (!HasComp(args.Entity)) return; + if (!_actionBlocker.CanMove(args.Entity)) + return; + if (_timing.CurTime < component.NextInternalOpenAttempt) return; @@ -139,9 +141,7 @@ protected void OnRelayMovement(EntityUid uid, SharedEntityStorageComponent compo Dirty(uid, component); if (component.OpenOnMove) - { TryOpenStorage(args.Entity, uid); - } } protected void OnFoldAttempt(EntityUid uid, SharedEntityStorageComponent component, ref FoldAttemptEvent args) diff --git a/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs b/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs index 15807794c3..0fbaefc31b 100644 --- a/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs +++ b/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs @@ -45,7 +45,7 @@ public override void Initialize() private void OnInteract(Entity ent, ref AfterInteractEvent args) { var (uid, comp) = ent; - if (args.Target == null) + if (args.Target == null || !args.CanReach) return; var target = args.Target.Value; @@ -150,8 +150,11 @@ public void DoTeleport(Entity ent) return; } - var (teleEnt, cont) = GetTeleportingEntity((uid, xform)); - var (otherTeleEnt, otherCont) = GetTeleportingEntity((linkedEnt, Transform(linkedEnt))); + var teleEnt = GetTeleportingEntity((uid, xform)); + var otherTeleEnt = GetTeleportingEntity((linkedEnt, Transform(linkedEnt))); + + _container.TryGetOuterContainer(teleEnt, Transform(teleEnt), out var cont); + _container.TryGetOuterContainer(otherTeleEnt, Transform(otherTeleEnt), out var otherCont); if (otherCont != null && !_container.CanInsert(teleEnt, otherCont) || cont != null && !_container.CanInsert(otherTeleEnt, cont)) @@ -195,20 +198,18 @@ public void DestroyLink(Entity ent, EntityUid? user) DestroyLink(linked, user); // the linked one is shown globally } - private (EntityUid, BaseContainer?) GetTeleportingEntity(Entity ent) + private EntityUid GetTeleportingEntity(Entity ent) { var parent = ent.Comp.ParentUid; - if (_container.TryGetOuterContainer(ent, ent, out var container)) - parent = container.Owner; if (HasComp(parent) || HasComp(parent)) - return (ent, container); + return ent; if (!_xformQuery.TryGetComponent(parent, out var parentXform) || parentXform.Anchored) - return (ent, container); + return ent; if (!TryComp(parent, out var body) || body.BodyType == BodyType.Static) - return (ent, container); + return ent; return GetTeleportingEntity((parent, parentXform)); } diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index 42b6a3c9c7..72cf4ec550 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -485,7 +485,7 @@ protected virtual void DoLightAttack(EntityUid user, LightAttackEvent ev, Entity var weapon = GetEntity(ev.Weapon); - Interaction.DoContactInteraction(weapon, target); + // We skip weapon -> target interaction, as forensics system applies DNA on hit Interaction.DoContactInteraction(user, weapon); // If the user is using a long-range weapon, this probably shouldn't be happening? But I'll interpret melee as a @@ -616,7 +616,7 @@ private bool DoHeavyAttack(EntityUid user, HeavyAttackEvent ev, EntityUid meleeU // For stuff that cares about it being attacked. foreach (var target in targets) { - Interaction.DoContactInteraction(weapon, target); + // We skip weapon -> target interaction, as forensics system applies DNA on hit // If the user is using a long-range weapon, this probably shouldn't be happening? But I'll interpret melee as a // somewhat messy scuffle. See also, light attacks. diff --git a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs index 6feffffbe3..75d5300fdb 100644 --- a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs +++ b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs @@ -31,8 +31,6 @@ public abstract class SharedGrapplingGunSystem : EntitySystem public const string GrapplingJoint = "grappling"; - public const float ReelRate = 2.5f; - public override void Initialize() { base.Initialize(); @@ -187,7 +185,7 @@ public override void Update(float frameTime) } // TODO: This should be on engine. - distance.MaxLength = MathF.Max(distance.MinLength, distance.MaxLength - ReelRate * frameTime); + distance.MaxLength = MathF.Max(distance.MinLength, distance.MaxLength - grappling.ReelRate * frameTime); distance.Length = MathF.Min(distance.MaxLength, distance.Length); _physics.WakeBody(joint.BodyAUid); diff --git a/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs b/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs index d0af3e8b36..553f0c10f3 100644 --- a/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs @@ -8,6 +8,12 @@ namespace Content.Shared.Weapons.Ranged.Components; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class GrapplingGunComponent : Component { + /// + /// Hook's reeling force and speed - the higher the number, the faster the hook rewinds. + /// + [DataField, AutoNetworkedField] + public float ReelRate = 2.5f; + [DataField("jointId"), AutoNetworkedField] public string Joint = string.Empty; diff --git a/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs index fa3732209f..2016459b9d 100644 --- a/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs @@ -15,4 +15,7 @@ public sealed partial class GunRequiresWieldComponent : Component [DataField, AutoNetworkedField] public TimeSpan PopupCooldown = TimeSpan.FromSeconds(1); + + [DataField] + public LocId? WieldRequiresExamineMessage = "gunrequireswield-component-examine"; } diff --git a/Content.Shared/Whitelist/EntityWhitelistSystem.cs b/Content.Shared/Whitelist/EntityWhitelistSystem.cs index 2985c93822..38118ef656 100644 --- a/Content.Shared/Whitelist/EntityWhitelistSystem.cs +++ b/Content.Shared/Whitelist/EntityWhitelistSystem.cs @@ -23,6 +23,23 @@ public bool IsValid(EntityWhitelist list, [NotNullWhen(true)] EntityUid? uid) return uid != null && IsValid(list, uid.Value); } + /// + /// Checks whether a given entity is allowed by a whitelist and not blocked by a blacklist. + /// If a blacklist is provided and it matches then this returns false. + /// If a whitelist is provided and it does not match then this returns false. + /// If either list is null it does not get checked. + /// + public bool CheckBoth([NotNullWhen(true)] EntityUid? uid, EntityWhitelist? blacklist = null, EntityWhitelist? whitelist = null) + { + if (uid == null) + return false; + + if (blacklist != null && IsValid(blacklist, uid)) + return false; + + return whitelist == null || IsValid(whitelist, uid); + } + /// /// Checks whether a given entity satisfies a whitelist. /// diff --git a/Content.Shared/Wieldable/WieldableSystem.cs b/Content.Shared/Wieldable/WieldableSystem.cs index a0c9d04ff7..d76876c0cf 100644 --- a/Content.Shared/Wieldable/WieldableSystem.cs +++ b/Content.Shared/Wieldable/WieldableSystem.cs @@ -47,6 +47,7 @@ public override void Initialize() SubscribeLocalEvent(OnDeselectWieldable); SubscribeLocalEvent(OnMeleeAttempt); + SubscribeLocalEvent(OnExamineRequires); SubscribeLocalEvent(OnShootAttempt); SubscribeLocalEvent(OnGunWielded); SubscribeLocalEvent(OnGunUnwielded); @@ -116,8 +117,17 @@ private void OnGunRefreshModifiers(Entity bonus, ref Gun } } + private void OnExamineRequires(Entity entity, ref ExaminedEvent args) + { + if(entity.Comp.WieldRequiresExamineMessage != null) + args.PushText(Loc.GetString(entity.Comp.WieldRequiresExamineMessage)); + } + private void OnExamine(EntityUid uid, GunWieldBonusComponent component, ref ExaminedEvent args) { + if (HasComp(uid)) + return; + if (component.WieldBonusExamineMessage != null) args.PushText(Loc.GetString(component.WieldBonusExamineMessage)); } diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml b/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml index b0f955bdde..84288b8b85 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml @@ -15,7 +15,7 @@ baby_jail.enabled = true baby_jail.show_reason = true baby_jail.max_account_age = 5256000 # 10 years. Disabling this check specifically isn't currently supported baby_jail.max_overall_minutes = 3000 # 50 hours -baby_jail.custom_reason = "Sorry! Only new players can join the servers, try joining another one instead!" +baby_jail.custom_reason = "Sorry! Only new and whitelisted players can join this server. Apply to be whitelisted in our Discord server (discord.ss14.io) or try joining another server instead!" baby_jail.whitelisted_can_bypass = true [hub] diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 47b90c9a16..6f5e023184 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aeshus, Aexxie, Afrokada, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUm418, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, ArkiveDev, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, bhenrich, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blueDev2, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CaasGit, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, CatTheSystem, Centronias, chairbender, Charlese2, chavonadelal, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, Ciac32, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, DexlerXD, dffdff2423, diraven, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FoLoKe, fooberticus, Fortune117, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, HerCoyote23, hitomishirichan, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JIPDawg, JoeHammad1844, joelsgp, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, K-Dynamic, KaiShibaa, kalane15, kalanosh, Keer-Sar, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, laok233, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, nuke-haus, NULL882, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, pigeonpeas, pissdemon, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, RamZ, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, RumiTiger, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, superjj18, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, Terraspark4941, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, Tornado-Technology, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Voomra, Vordenburg, vulppine, wafehling, WarMechanic, waylon531, weaversam8, whateverusername0, Willhelm53, Winkarst-cpu, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zymem +0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aeshus, Aexxie, Afrokada, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUm418, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, ArkiveDev, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, bhenrich, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blueDev2, Boaz1111, BobdaBiscuit, BombasterDS, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CaasGit, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, CatTheSystem, Centronias, chairbender, Charlese2, chavonadelal, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, Ciac32, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, Deeeeja, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, DexlerXD, dffdff2423, diraven, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FoLoKe, fooberticus, Fortune117, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, HerCoyote23, hitomishirichan, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JIPDawg, JoeHammad1844, joelsgp, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, K-Dynamic, KaiShibaa, kalane15, kalanosh, Keer-Sar, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, laok233, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, nuke-haus, NULL882, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, pigeonpeas, pissdemon, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, RamZ, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, RumiTiger, Saakra, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, superjj18, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, Terraspark4941, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, Tornado-Technology, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Voomra, Vordenburg, vulppine, wafehling, WarMechanic, waylon531, weaversam8, whateverusername0, Willhelm53, Winkarst-cpu, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zymem diff --git a/Resources/Locale/en-US/actions/actions/polymorph.ftl b/Resources/Locale/en-US/actions/actions/polymorph.ftl new file mode 100644 index 0000000000..4a65a60ecf --- /dev/null +++ b/Resources/Locale/en-US/actions/actions/polymorph.ftl @@ -0,0 +1 @@ +gera-transformation-popup = This action will transform you. Use it again to confirm. diff --git a/Resources/Locale/en-US/administration/bwoink.ftl b/Resources/Locale/en-US/administration/bwoink.ftl index 3a92f58ad1..e43932dc1d 100644 --- a/Resources/Locale/en-US/administration/bwoink.ftl +++ b/Resources/Locale/en-US/administration/bwoink.ftl @@ -16,3 +16,6 @@ admin-bwoink-play-sound = Bwoink? bwoink-title-none-selected = None selected bwoink-system-rate-limited = System: you are sending messages too quickly. +bwoink-system-player-disconnecting = has disconnected. +bwoink-system-player-reconnecting = has reconnected. +bwoink-system-player-banned = has been banned for: {$banReason} diff --git a/Resources/Locale/en-US/cargo/cargo-console-component.ftl b/Resources/Locale/en-US/cargo/cargo-console-component.ftl index 3c032488b5..7114924c02 100644 --- a/Resources/Locale/en-US/cargo/cargo-console-component.ftl +++ b/Resources/Locale/en-US/cargo/cargo-console-component.ftl @@ -30,7 +30,7 @@ cargo-console-snip-snip = Order trimmed to capacity cargo-console-insufficient-funds = Insufficient funds (require {$cost}) cargo-console-unfulfilled = No room to fulfill order cargo-console-trade-station = Sent to {$destination} -cargo-console-unlock-approved-order-broadcast = [bold]{$productName} x{$orderAmount}[/bold], which cost [bold]{$cost}[/bold], was approved by [bold]{$approverName}, {$approverJob}[/bold] +cargo-console-unlock-approved-order-broadcast = [bold]{$productName} x{$orderAmount}[/bold], which cost [bold]{$cost}[/bold], was approved by [bold]{$approver}[/bold] cargo-console-paper-print-name = Order #{$orderNumber} cargo-console-paper-print-text = diff --git a/Resources/Locale/en-US/character-appearance/components/magic-mirror-component.ftl b/Resources/Locale/en-US/character-appearance/components/magic-mirror-component.ftl index e9018171a4..0906cccee5 100644 --- a/Resources/Locale/en-US/character-appearance/components/magic-mirror-component.ftl +++ b/Resources/Locale/en-US/character-appearance/components/magic-mirror-component.ftl @@ -1,3 +1,15 @@ magic-mirror-component-activate-user-has-no-hair = You can't have any hair! -magic-mirror-window-title = Magic Mirror \ No newline at end of file +magic-mirror-window-title = Magic Mirror +magic-mirror-add-slot-self = You're giving yourself some hair. +magic-mirror-remove-slot-self = You're removing some of your hair. +magic-mirror-change-slot-self = You're changing your hairstyle. +magic-mirror-change-color-self = You're changing your hair color. + +magic-mirror-add-slot-target = Hair is being added to you by {$user}. +magic-mirror-remove-slot-target = Your hair is being cut off by {$user}. +magic-mirror-change-slot-target = Your hairstyle is being changed by {$user}. +magic-mirror-change-color-target = Your hair color is being changed by {$user}. + +magic-mirror-blocked-by-hat-self = You need to take off your hat before changing your hair. +magic-mirror-blocked-by-hat-self-target = You try to change their hair but their clothes gets in the way. diff --git a/Resources/Locale/en-US/character-info/components/character-info-component.ftl b/Resources/Locale/en-US/character-info/components/character-info-component.ftl index 07a0dd696a..b515c36c5a 100644 --- a/Resources/Locale/en-US/character-info/components/character-info-component.ftl +++ b/Resources/Locale/en-US/character-info/components/character-info-component.ftl @@ -1,3 +1,4 @@ character-info-title = Character character-info-roles-antagonist-text = Antagonist Roles character-info-objectives-label = Objectives +character-info-no-profession = No Profession diff --git a/Resources/Locale/en-US/examine/examine-system.ftl b/Resources/Locale/en-US/examine/examine-system.ftl index 243ba57257..fae6360e9b 100644 --- a/Resources/Locale/en-US/examine/examine-system.ftl +++ b/Resources/Locale/en-US/examine/examine-system.ftl @@ -6,6 +6,6 @@ examine-system-cant-see-entity = You can't make out whatever that is. examine-verb-name = Basic -examinable-anchored = It is [color=darkgreen]anchored[/color] to the floor +examinable-anchored = It is [color=darkgreen]anchored[/color] to the floor. -examinable-unanchored = It is [color=darkred]unanchored[/color] from the floor +examinable-unanchored = It is [color=darkred]unanchored[/color] from the floor. 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 480fa0ebe5..abad964b4a 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -207,6 +207,9 @@ ghost-role-information-syndicate-reinforcement-spy-description = Someone needs r 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-nukeop-reinforcement-name = Nuclear Operative +ghost-role-information-nukeop-reinforcement-description = The nuclear operatives need reinforcements. You, a reserve agent, will help them. +ghost-role-information-nukeop-reinforcement-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with the nuclear operatives who summoned you. 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. diff --git a/Resources/Locale/en-US/lock/locking-whitelist-component.ftl b/Resources/Locale/en-US/lock/locking-whitelist-component.ftl new file mode 100644 index 0000000000..182814c2c5 --- /dev/null +++ b/Resources/Locale/en-US/lock/locking-whitelist-component.ftl @@ -0,0 +1 @@ +locking-whitelist-component-lock-toggle-deny = You can't toggle the lock. diff --git a/Resources/Locale/en-US/mass-media/news-ui.ftl b/Resources/Locale/en-US/mass-media/news-ui.ftl index 1553a24b4a..678f20a81a 100644 --- a/Resources/Locale/en-US/mass-media/news-ui.ftl +++ b/Resources/Locale/en-US/mass-media/news-ui.ftl @@ -34,4 +34,4 @@ news-write-ui-richtext-tooltip = News articles support rich text {"[bullet/]bullet[/color]"} news-pda-notification-header = New news article -news-publish-admin-announcement = {$actor} published news article {$title} by {$author}" +news-publish-admin-announcement = {$actor} published news article {$title} by {$author} diff --git a/Resources/Locale/en-US/paper/envelope.ftl b/Resources/Locale/en-US/paper/envelope.ftl new file mode 100644 index 0000000000..bb7993d284 --- /dev/null +++ b/Resources/Locale/en-US/paper/envelope.ftl @@ -0,0 +1,11 @@ +envelope-verb-seal = Seal +envelope-verb-tear = Tear + +envelope-letter-slot = Letter + +envelope-sealed-examine = [color=gray]{CAPITALIZE(THE($envelope))} is sealed.[/color] +envelope-torn-examine = [color=yellow]{CAPITALIZE(THE($envelope))} is torn and unusable![/color] + +envelope-default-message = TO: + + FROM: \ No newline at end of file diff --git a/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl b/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl index d0b4fc4112..632ebd4cc1 100644 --- a/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl +++ b/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl @@ -60,4 +60,5 @@ humanoid-profile-editor-no-traits = No traits available humanoid-profile-editor-trait-count-hint = Points available: [{$current}/{$max}] trait-category-disabilities = Disabilities -trait-category-speech = Speech traits \ No newline at end of file +trait-category-speech = Speech traits +trait-category-quirks = Quirks diff --git a/Resources/Locale/en-US/procedural/expeditions.ftl b/Resources/Locale/en-US/procedural/expeditions.ftl index b7bbdbce2f..56776e351d 100644 --- a/Resources/Locale/en-US/procedural/expeditions.ftl +++ b/Resources/Locale/en-US/procedural/expeditions.ftl @@ -32,3 +32,34 @@ salvage-expedition-announcement-countdown-seconds = {$duration} seconds remainin salvage-expedition-announcement-dungeon = Dungeon is located {$direction}. salvage-expedition-completed = Expedition is completed. salvage-expedition-reward-description = Mission completion reward + +# Salvage biome mod +salvage-biome-mod-caves = Caves +salvage-biome-mod-grasslands = Grasslands +salvage-biome-mod-snow = Snow +salvage-biome-mod-lava = Lava + +# Salvage mods +salvage-light-mod-daylight = Daylight +salvage-light-mod-evening = Evening +salvage-light-mod-night = Night time + +salvage-temperature-mod-room-temperature = Room temperature +salvage-temperature-mod-hot = Hot +salvage-temperature-mod-high-temperature = High temperature +salvage-temperature-mod-extreme-heat = Extreme heat +salvage-temperature-mod-cold = Cold +salvage-temperature-mod-low-temperature = Low temperature +salvage-temperature-mod-extreme-cold = Extreme cold + +salvage-air-mod-no-atmosphere = No atmosphere +salvage-air-mod-breathable-atmosphere = Breathable atmosphere +salvage-air-mod-dangerous-atmosphere = Dangerous atmosphere +salvage-air-mod-toxic-atmosphere = Toxic atmosphere +salvage-air-mod-volatile-atmosphere = Volatile atmosphere + +salvage-dungeon-mod-lava-brig = Lava Brig +salvage-dungeon-mod-snowy-labs = Snowy labs +salvage-dungeon-mod-experiment = Experiment +salvage-dungeon-mod-haunted = Haunted +salvage-dungeon-mod-mineshaft = Mineshaft diff --git a/Resources/Locale/en-US/procedural/salvage-faction.ftl b/Resources/Locale/en-US/procedural/salvage-faction.ftl new file mode 100644 index 0000000000..d3bed816f6 --- /dev/null +++ b/Resources/Locale/en-US/procedural/salvage-faction.ftl @@ -0,0 +1,2 @@ +salvage-faction-xenos = Xenos +salvage-faction-carps = Carps diff --git a/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl b/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl index 87ebe38e21..07bb47678f 100644 --- a/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl +++ b/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl @@ -7,7 +7,7 @@ reagent-desc-napalm = It's just a little flammable. reagent-name-phlogiston = phlogiston reagent-desc-phlogiston = Catches you on fire and makes you ignite. -reagent-name-chlorine-trifluoride = CLF3 +reagent-name-chlorine-trifluoride = chlorine trifluoride reagent-desc-chlorine-trifluoride = You really, REALLY don't want to get this shit anywhere near you. reagent-name-foaming-agent = foaming agent diff --git a/Resources/Locale/en-US/seeds/seeds.ftl b/Resources/Locale/en-US/seeds/seeds.ftl index 2dc0b88c74..f98118c23e 100644 --- a/Resources/Locale/en-US/seeds/seeds.ftl +++ b/Resources/Locale/en-US/seeds/seeds.ftl @@ -32,6 +32,8 @@ seeds-potato-name = potato seeds-potato-display-name = potatoes seeds-sugarcane-name = sugarcane seeds-sugarcane-display-name = sugarcanes +seeds-papercane-name = papercane +seeds-papercane-display-name = papercanes seeds-towercap-name = tower cap seeds-towercap-display-name = tower caps seeds-steelcap-name = steel cap @@ -48,6 +50,8 @@ seeds-eggplant-name = eggplant seeds-eggplant-display-name = eggplants seeds-apple-name = apple seeds-apple-display-name = apple tree +seeds-goldenapple-name = golden apple +seeds-goldenapple-display-name = golden apple tree seeds-corn-name = corn seeds-corn-display-name = ears of corn seeds-onion-name = onion @@ -88,6 +92,8 @@ seeds-ambrosiadeus-name = ambrosia deus seeds-ambrosiadeus-display-name = ambrosia deus seeds-galaxythistle-name = galaxythistle seeds-galaxythistle-display-name = galaxythistle +seeds-glasstle-name = glasstle +seeds-glasstle-display-name = glasstle seeds-flyamanita-name = fly amanita seeds-flyamanita-display-name = fly amanita seeds-gatfruit-name = gatfruit diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 85a64c71ae..07edd8f007 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -124,10 +124,11 @@ 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-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-nukeops-name = Nuclear Operative Teleporter +uplink-reinforcement-radio-nukeops-desc = Radio in a nuclear operative of extremely questionable quality. No off button, buy this if you're ready to party. They have basic nuclear operative gear. 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. diff --git a/Resources/Locale/en-US/wieldable/wieldable-component.ftl b/Resources/Locale/en-US/wieldable/wieldable-component.ftl index 84b58224a7..585d611016 100644 --- a/Resources/Locale/en-US/wieldable/wieldable-component.ftl +++ b/Resources/Locale/en-US/wieldable/wieldable-component.ftl @@ -18,3 +18,5 @@ wieldable-component-not-in-hands = { CAPITALIZE(THE($item)) } isn't in your hand wieldable-component-requires = { CAPITALIZE(THE($item))} must be wielded! gunwieldbonus-component-examine = This weapon has improved accuracy when wielded. + +gunrequireswield-component-examine = This weapon can only be fired when wielded. diff --git a/Resources/Maps/Shuttles/emergency_accordia.yml b/Resources/Maps/Shuttles/emergency_accordia.yml index 8b5dac4d92..65959a909d 100644 --- a/Resources/Maps/Shuttles/emergency_accordia.yml +++ b/Resources/Maps/Shuttles/emergency_accordia.yml @@ -27,11 +27,11 @@ entities: chunks: 0,0: ind: 0,0 - tiles: PAAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: PAAAAAAAgQAAAAAAPAAAAAAAcwAAAAADcwAAAAAAcwAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: PAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: PAAAAAAAgQAAAAAAPAAAAAAAfQAAAAABfQAAAAABfQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAgQAAAAAAPAAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 @@ -39,11 +39,11 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADPAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAD version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACIAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAPAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACIAAAAAAB version: 6 -1,-2: ind: -1,-2 @@ -81,403 +81,403 @@ entities: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 40: 5,12 - 41: 4,13 - 43: 3,15 + 3: 5,12 + 4: 4,13 + 5: 3,15 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 116: 5,0 + 44: 5,0 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 119: 5,-6 + 47: 5,-6 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 115: 3,0 + 43: 3,0 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 120: 3,-6 + 48: 3,-6 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 117: 5,-4 + 45: 5,-4 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 118: 5,-10 + 46: 5,-10 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 206: -3,-25 + 111: -3,-25 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 46: -2,14 - 47: -1,13 - 48: 0,12 - 89: 3,9 + 6: -2,14 + 7: -1,13 + 8: 0,12 + 28: 3,9 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 114: 3,-4 + 42: 3,-4 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 132: 3,-10 + 60: 3,-10 - node: color: '#334E6DC8' id: BrickTileWhiteEndS decals: - 82: 1,9 + 25: 1,9 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 70: 2,15 - 72: 4,12 - 97: 3,13 - 148: 1,7 + 21: 2,15 + 22: 4,12 + 30: 3,13 + 74: 1,7 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 137: 1,-4 + 65: 1,-4 - node: color: '#D4D4D496' id: BrickTileWhiteInnerNe decals: - 152: -3,7 - 177: 1,-19 + 77: -3,7 + 92: 1,-19 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 145: 1,-9 + 71: 1,-9 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 183: 1,-22 + 98: 1,-22 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 57: -2,15 - 149: 3,7 + 14: -2,15 + 75: 3,7 - node: color: '#D4D4D496' id: BrickTileWhiteInnerNw decals: - 151: -1,7 - 243: -5,-3 + 76: -1,7 + 143: -5,-3 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 184: -1,-23 + 99: -1,-23 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 104: 1,11 + 34: 1,11 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 138: 1,-1 + 66: 1,-1 - node: color: '#D4D4D496' id: BrickTileWhiteInnerSe decals: - 175: 1,-17 - 176: 1,-23 + 90: 1,-17 + 91: 1,-23 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 146: 1,-6 + 72: 1,-6 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 181: 1,-20 + 96: 1,-20 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 58: -2,15 - 79: 0,13 - 92: -1,14 - 102: 1,12 - 103: 3,11 + 15: -2,15 + 24: 0,13 + 29: -1,14 + 32: 1,12 + 33: 3,11 - node: color: '#D4D4D496' id: BrickTileWhiteInnerSw decals: - 242: -5,-7 + 142: -5,-7 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 182: -1,-20 + 97: -1,-20 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 36: 5,10 - 38: 5,11 - 53: 2,16 - 54: 3,14 - 83: 1,10 + 1: 5,10 + 2: 5,11 + 11: 2,16 + 12: 3,14 + 26: 1,10 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 110: 5,-3 - 111: 5,-2 - 112: 5,-1 - 135: 1,-3 - 136: 1,-2 + 38: 5,-3 + 39: 5,-2 + 40: 5,-1 + 63: 1,-3 + 64: 1,-2 - node: color: '#D4D4D496' id: BrickTileWhiteLineE decals: - 173: 1,-24 - 174: 1,-18 + 88: 1,-24 + 89: 1,-18 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 127: 5,-9 - 128: 5,-8 - 129: 5,-7 - 133: 1,-8 - 134: 1,-7 + 55: 5,-9 + 56: 5,-8 + 57: 5,-7 + 61: 1,-8 + 62: 1,-7 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 180: 1,-21 - 190: -3,-17 - 191: -3,-18 - 192: -3,-19 - 193: -3,-20 - 197: -3,-23 - 205: -3,-24 + 95: 1,-21 + 104: -3,-17 + 105: -3,-18 + 106: -3,-19 + 107: -3,-20 + 109: -3,-23 + 110: -3,-24 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 147: 2,7 + 73: 2,7 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 113: 4,0 + 41: 4,0 - node: color: '#D4D4D496' id: BrickTileWhiteLineN decals: - 153: -2,7 + 78: -2,7 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 131: 4,-6 + 59: 4,-6 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 35: 4,9 + 0: 4,9 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 106: 4,-4 + 36: 4,-4 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 130: 4,-10 + 58: 4,-10 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 207: -4,-25 + 112: -4,-25 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 50: 1,10 - 52: -2,16 - 86: 3,10 - 100: 1,11 + 9: 1,10 + 10: -2,16 + 27: 3,10 + 31: 1,11 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 109: 3,-1 - 141: 3,-3 - 142: 3,-2 + 37: 3,-1 + 67: 3,-3 + 68: 3,-2 - node: color: '#D4D4D428' id: BrickTileWhiteLineW decals: - 164: -1,-1 - 165: -1,-2 - 166: -1,-3 - 167: -1,-4 - 168: -1,-5 - 169: -1,-6 - 170: -1,-7 - 171: -1,-8 - 172: -1,-9 + 79: -1,-1 + 80: -1,-2 + 81: -1,-3 + 82: -1,-4 + 83: -1,-5 + 84: -1,-6 + 85: -1,-7 + 86: -1,-8 + 87: -1,-9 - node: color: '#D4D4D496' id: BrickTileWhiteLineW decals: - 236: -5,-8 - 237: -5,-10 - 238: -5,-2 - 239: -5,-1 - 240: -5,0 - 241: -5,-9 + 136: -5,-8 + 137: -5,-10 + 138: -5,-2 + 139: -5,-1 + 140: -5,0 + 141: -5,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 124: 3,-7 - 125: 3,-8 - 126: 3,-9 + 52: 3,-7 + 53: 3,-8 + 54: 3,-9 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 178: -1,-22 - 179: -1,-21 - 186: -5,-17 - 187: -5,-18 + 93: -1,-22 + 94: -1,-21 + 100: -5,-17 + 101: -5,-18 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 55: -3,15 - 62: 2,17 - 63: 1,17 - 64: 0,17 - 65: -1,17 - 66: -2,17 - 74: 2,10 - 245: 2,8 + 13: -3,15 + 16: 2,17 + 17: 1,17 + 18: 0,17 + 19: -1,17 + 20: -2,17 + 23: 2,10 + 144: 2,8 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 143: 2,-3 - 144: 2,-2 + 69: 2,-3 + 70: 2,-2 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 121: 4,-5 - 122: 2,-7 - 123: 2,-8 + 49: 4,-5 + 50: 2,-7 + 51: 2,-8 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 212: -5,-25 - 213: -5,-24 - 217: -2,-22 - 218: -2,-21 + 113: -5,-25 + 114: -5,-24 + 118: -2,-22 + 119: -2,-21 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 188: -5,-17 - 189: -4,-17 - 194: -3,-17 + 102: -5,-17 + 103: -4,-17 + 108: -3,-17 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 105: 2,11 + 35: 2,11 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 214: -4,-25 - 215: -4,-24 + 115: -4,-25 + 116: -4,-24 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 219: -3,-22 - 220: -3,-21 + 120: -3,-22 + 121: -3,-21 - node: color: '#EFB34196' id: MiniTileWhiteInnerSw decals: - 216: -4,-23 + 117: -4,-23 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 221: 5,-24 - 222: 5,-16 + 122: 5,-24 + 123: 5,-16 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 223: 3,-16 - 224: 3,-24 + 124: 3,-16 + 125: 3,-24 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 227: 5,-25 - 228: 5,-18 + 128: 5,-25 + 129: 5,-18 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 225: 3,-25 - 226: 3,-18 + 126: 3,-25 + 127: 3,-18 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 229: 5,-17 + 130: 5,-17 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 233: 4,-16 - 234: 4,-24 + 134: 4,-16 + 135: 4,-24 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 231: 4,-25 - 232: 4,-18 + 132: 4,-25 + 133: 4,-18 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 230: 3,-17 + 131: 3,-17 - type: GridAtmosphere version: 2 data: @@ -634,6 +634,145 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + - type: DeviceList + devices: + - 955 + - 573 + - 521 + - 967 + - 966 + - 965 + - uid: 269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 1 + - type: DeviceList + devices: + - 952 + - 538 + - 533 + - 970 + - 971 + - 968 + - 969 + - uid: 886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + - type: DeviceList + devices: + - 953 + - 572 + - 575 + - 519 + - 520 + - 965 + - 966 + - 963 + - 964 + - uid: 947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + - type: DeviceList + devices: + - 522 + - 574 + - 954 + - 967 + - 963 + - 964 + - uid: 950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 1 + - type: DeviceList + devices: + - 949 + - 537 + - 460 + - 971 + - 970 + - uid: 959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + - type: DeviceList + devices: + - 957 + - 483 + - 487 + - 488 + - 476 + - 961 + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1 + - type: DeviceList + devices: + - 486 + - 958 + - 475 + - 962 + - uid: 972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 961 + - 962 + - 956 + - 490 + - 452 + - 454 + - 489 + - uid: 973 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 1 + - type: DeviceList + devices: + - 951 + - 463 + - 661 + - 969 + - uid: 974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-18.5 + parent: 1 + - type: DeviceList + devices: + - 461 + - 536 + - 948 + - 968 - proto: Airlock entities: - uid: 377 @@ -769,6 +908,98 @@ entities: - type: Transform pos: 4.5,-4.5 parent: 1 +- proto: AirSensor + entities: + - uid: 948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-17.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 974 + - uid: 949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-19.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 950 + - uid: 951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 973 + - uid: 952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 269 + - uid: 953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 + - uid: 954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 947 + - uid: 955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 145 + - uid: 956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 972 + - uid: 957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 959 + - uid: 958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 960 - proto: AltarNanotrasen entities: - uid: 253 @@ -797,61 +1028,60 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,11.5 parent: 1 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - - uid: 269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-12.5 - parent: 1 - uid: 270 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-12.5 + pos: 1.5,3.5 parent: 1 - uid: 271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,3.5 + rot: -1.5707963267948966 rad + pos: -0.5,3.5 parent: 1 - uid: 272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,3.5 + rot: -1.5707963267948966 rad + pos: -5.5,0.5 parent: 1 - uid: 273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,0.5 + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 parent: 1 - uid: 274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 parent: 1 - uid: 275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 + rot: -1.5707963267948966 rad + pos: -5.5,-9.5 parent: 1 - uid: 276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-9.5 + pos: 0.5,-24.5 parent: 1 - - uid: 389 + - uid: 945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 1 + - uid: 946 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-24.5 + pos: 1.5,-12.5 parent: 1 - proto: BaseComputer entities: @@ -956,6 +1186,11 @@ entities: - type: InsideEntityStorage - proto: CableApcExtension entities: + - uid: 389 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 - uid: 534 components: - type: Transform @@ -1414,17 +1649,17 @@ entities: - uid: 746 components: - type: Transform - pos: 0.5,7.5 + pos: -2.5,7.5 parent: 1 - uid: 747 components: - type: Transform - pos: 1.5,7.5 + pos: -1.5,6.5 parent: 1 - uid: 748 components: - type: Transform - pos: 2.5,7.5 + pos: 1.5,6.5 parent: 1 - uid: 749 components: @@ -1459,7 +1694,7 @@ entities: - uid: 755 components: - type: Transform - pos: -0.5,7.5 + pos: 4.5,11.5 parent: 1 - uid: 756 components: @@ -1571,11 +1806,6 @@ entities: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 778 - components: - - type: Transform - pos: 5.5,11.5 - parent: 1 - uid: 779 components: - type: Transform @@ -1591,6 +1821,136 @@ entities: - type: Transform pos: 3.5,10.5 parent: 1 + - uid: 985 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 986 + components: + - type: Transform + pos: -2.5,18.5 + parent: 1 + - uid: 987 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1 + - uid: 988 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 989 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 990 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 991 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 992 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 993 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 994 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1 + - uid: 995 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 + - uid: 996 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 997 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 998 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 999 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 1010 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 - proto: CableHV entities: - uid: 376 @@ -2459,17 +2819,241 @@ entities: parent: 1 - proto: ExtinguisherCabinetFilled entities: - - uid: 886 + - uid: 983 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 1 +- proto: FireAlarm + entities: + - uid: 778 components: - type: Transform pos: -1.5,0.5 parent: 1 - - uid: 887 + - type: DeviceList + devices: + - 963 + - 964 + - 966 + - 965 + - uid: 975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + - type: DeviceList + devices: + - 969 + - 968 + - 971 + - 970 + - uid: 976 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-9.5 + pos: 3.5,-18.5 parent: 1 + - type: DeviceList + devices: + - 968 + - uid: 977 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 1 + - type: DeviceList + devices: + - 969 + - uid: 978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + - type: DeviceList + devices: + - 965 + - 966 + - 967 + - uid: 979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - type: DeviceList + devices: + - 963 + - 964 + - 967 + - uid: 980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + - type: DeviceList + devices: + - 961 + - 962 + - uid: 981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 961 + - uid: 982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + - type: DeviceList + devices: + - 962 +- proto: FirelockGlass + entities: + - uid: 961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 959 + - 972 + - 980 + - 981 + - uid: 962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 972 + - 960 + - 980 + - 982 + - uid: 963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 + - 947 + - 979 + - 778 + - uid: 964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 + - 947 + - 979 + - 778 + - uid: 965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 + - 145 + - 978 + - 778 + - uid: 966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 + - 145 + - 978 + - 778 + - uid: 967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 145 + - 947 + - 979 + - 978 + - uid: 968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 269 + - 974 + - 975 + - 976 + - uid: 969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 269 + - 973 + - 977 + - 975 + - uid: 970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 269 + - 950 + - 975 + - uid: 971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 269 + - 950 + - 975 - proto: FloorDrain entities: - uid: 806 @@ -3688,6 +4272,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 972 - type: AtmosPipeColor color: '#0335FCFF' - uid: 454 @@ -3696,6 +4283,9 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,7.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 972 - type: AtmosPipeColor color: '#0335FCFF' - uid: 460 @@ -3704,6 +4294,9 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-20.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 950 - type: AtmosPipeColor color: '#0335FCFF' - uid: 461 @@ -3711,6 +4304,9 @@ entities: - type: Transform pos: 4.5,-16.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 974 - type: AtmosPipeColor color: '#0335FCFF' - uid: 462 @@ -3727,6 +4323,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-23.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 973 - type: AtmosPipeColor color: '#0335FCFF' - uid: 475 @@ -3734,6 +4333,9 @@ entities: - type: Transform pos: -1.5,10.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 960 - type: AtmosPipeColor color: '#0335FCFF' - uid: 476 @@ -3742,6 +4344,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 959 - type: AtmosPipeColor color: '#0335FCFF' - uid: 483 @@ -3750,6 +4355,9 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,14.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 959 - type: AtmosPipeColor color: '#0335FCFF' - uid: 519 @@ -3758,6 +4366,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 - type: AtmosPipeColor color: '#0335FCFF' - uid: 520 @@ -3766,6 +4377,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 - type: AtmosPipeColor color: '#0335FCFF' - uid: 521 @@ -3774,6 +4388,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-6.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 145 - type: AtmosPipeColor color: '#0335FCFF' - uid: 522 @@ -3782,6 +4399,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 947 - type: AtmosPipeColor color: '#0335FCFF' - uid: 533 @@ -3790,6 +4410,9 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-20.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 269 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -3799,6 +4422,9 @@ entities: - type: Transform pos: -2.5,11.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 960 - type: AtmosPipeColor color: '#FF1212FF' - uid: 487 @@ -3806,6 +4432,9 @@ entities: - type: Transform pos: 0.5,14.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 959 - type: AtmosPipeColor color: '#FF1212FF' - uid: 488 @@ -3814,6 +4443,9 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,12.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 959 - type: AtmosPipeColor color: '#FF1212FF' - uid: 489 @@ -3822,6 +4454,9 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,6.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 972 - type: AtmosPipeColor color: '#FF1212FF' - uid: 490 @@ -3830,6 +4465,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,6.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 972 - type: AtmosPipeColor color: '#FF1212FF' - uid: 535 @@ -3845,6 +4483,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-15.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 974 - type: AtmosPipeColor color: '#FF1212FF' - uid: 537 @@ -3853,6 +4494,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-21.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 950 - type: AtmosPipeColor color: '#FF1212FF' - uid: 538 @@ -3860,6 +4504,9 @@ entities: - type: Transform pos: 1.5,-20.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 269 - type: AtmosPipeColor color: '#FF1212FF' - uid: 572 @@ -3868,6 +4515,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-7.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 - type: AtmosPipeColor color: '#FF1212FF' - uid: 573 @@ -3876,6 +4526,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-7.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 145 - type: AtmosPipeColor color: '#FF1212FF' - uid: 574 @@ -3884,6 +4537,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 947 - type: AtmosPipeColor color: '#FF1212FF' - uid: 575 @@ -3892,6 +4548,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 - type: AtmosPipeColor color: '#FF1212FF' - uid: 661 @@ -3900,6 +4559,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-24.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 973 - type: AtmosPipeColor color: '#FF1212FF' - proto: GeneratorBasic15kW @@ -6172,6 +6834,11 @@ entities: - type: Transform pos: 2.5,-15.5 parent: 1 + - uid: 887 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 1 - proto: WallShuttleDiagonal entities: - uid: 6 @@ -6263,12 +6930,6 @@ entities: parent: 1 - proto: WallShuttleInterior entities: - - uid: 145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-22.5 - parent: 1 - uid: 202 components: - type: Transform diff --git a/Resources/Maps/Shuttles/emergency_courser.yml b/Resources/Maps/Shuttles/emergency_courser.yml index 135c95e247..f9ff40b8fa 100644 --- a/Resources/Maps/Shuttles/emergency_courser.yml +++ b/Resources/Maps/Shuttles/emergency_courser.yml @@ -362,90 +362,86 @@ entities: version: 2 data: tiles: - -2,-1: - 0: 61166 - -1,-1: - 0: 65535 - 0,-1: - 0: 65535 -2,-3: - 0: 60620 + 0: 8192 + 1: 34944 -2,-2: - 0: 61102 - 1: 64 + 1: 52936 + -2,-1: + 1: 52430 -2,-4: - 0: 51328 + 0: 16512 + -2,0: + 1: 52940 -1,-4: - 0: 57343 - 1: 8192 + 1: 65260 -1,-3: - 0: 65535 + 1: 65372 -1,-2: - 0: 49151 - 1: 16384 + 1: 57297 + -1,-1: + 1: 65489 + -1,-5: + 0: 4096 + -1,0: + 1: 8191 0,-4: - 0: 65535 + 1: 63347 0,-3: - 0: 65535 + 1: 65443 0,-2: - 0: 65535 + 1: 49080 + 0,-1: + 1: 65464 + 0,0: + 1: 36863 + 0,-5: + 0: 32768 1,-4: - 0: 12560 + 0: 8208 1,-3: - 0: 29491 + 1: 4368 + 0: 16384 1,-2: - 0: 30551 - 1: 32 + 1: 14129 1,-1: - 0: 30583 - -2,0: - 0: 61166 + 1: 13111 + 1,0: + 1: 14131 -2,1: - 0: 61102 - 1: 64 + 1: 35022 + 0: 8192 -2,2: - 0: 52300 - 1: 128 - -2,3: - 0: 136 - -1,0: - 0: 65535 + 1: 136 + 0: 16384 -1,1: - 0: 49151 - 1: 16384 + 1: 56829 -1,2: - 0: 65535 + 1: 62705 + -2,3: + 0: 128 -1,3: - 0: 61439 - 0,0: - 0: 65535 + 1: 3310 0,1: - 0: 57343 - 1: 8192 + 1: 48123 0,2: - 0: 65535 + 1: 62200 0,3: - 0: 32767 - 1,0: - 0: 30583 + 1: 887 1,1: - 0: 30551 - 1: 32 + 1: 4407 + 0: 16384 1,2: - 0: 13091 - 1: 16 + 1: 17 + 0: 8192 1,3: - 0: 17 - -1,-5: - 0: 61440 - 0,-5: - 0: 61440 + 0: 16 uniqueMixes: - volume: 2500 - temperature: 293.15 + immutable: True moles: - - 21.824879 - - 82.10312 + - 0 + - 0 - 0 - 0 - 0 @@ -459,8 +455,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 19.481253 - - 73.28662 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -485,8 +481,6 @@ entities: - type: Transform pos: 0.5,-12.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: AirlockCommandGlassLocked entities: - uid: 601 @@ -2023,6 +2017,14 @@ entities: - type: Transform pos: 0.5,14.5 parent: 656 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 656 - proto: ExtinguisherCabinetFilled entities: - uid: 517 @@ -2176,8 +2178,6 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: GasPassiveVent entities: - uid: 521 @@ -2186,8 +2186,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-11.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: GasPipeBend entities: - uid: 523 @@ -2536,8 +2534,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-12.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: GasVentPump entities: - uid: 524 @@ -2546,72 +2542,54 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-12.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 550 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-10.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 551 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-10.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 552 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-0.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 553 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 573 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,11.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 574 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,11.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 580 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 589 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,8.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: GeneratorBasic15kW entities: - uid: 66 @@ -3424,7 +3402,7 @@ entities: - type: Transform pos: 1.5,-15.5 parent: 656 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 166 components: diff --git a/Resources/Maps/atlas.yml b/Resources/Maps/atlas.yml index e376a1a91e..7bb91cde06 100644 --- a/Resources/Maps/atlas.yml +++ b/Resources/Maps/atlas.yml @@ -2921,6 +2921,9 @@ entities: - type: DeviceList devices: - 5914 + - 1087 + - 6891 + - 6173 - uid: 1948 components: - type: Transform @@ -2930,6 +2933,7 @@ entities: - type: DeviceList devices: - 6719 + - 7056 - uid: 1949 components: - type: Transform @@ -3031,6 +3035,9 @@ entities: devices: - 6799 - 7235 + - 7798 + - 8673 + - 8508 - uid: 6648 components: - type: Transform @@ -3045,6 +3052,7 @@ entities: - 3817 - 3815 - 7599 + - 929 - uid: 7372 components: - type: Transform @@ -3060,6 +3068,11 @@ entities: - 3771 - 2164 - 2131 + - 4537 + - 8468 + - 2085 + - 819 + - 820 - uid: 7532 components: - type: Transform @@ -3342,6 +3355,15 @@ entities: - type: DeviceList devices: - 8623 + - uid: 8680 + components: + - type: Transform + pos: 1.5,8.5 + parent: 30 + - type: DeviceList + devices: + - 8668 + - 8669 - proto: AirCanister entities: - uid: 5877 @@ -4717,6 +4739,11 @@ entities: rot: 3.141592653589793 rad pos: 22.5,34.5 parent: 30 + - uid: 2442 + components: + - type: Transform + pos: -15.5,4.5 + parent: 30 - uid: 6874 components: - type: Transform @@ -4767,13 +4794,6 @@ entities: 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 @@ -24027,12 +24047,18 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-0.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 1947 - uid: 6891 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,0.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 1947 - uid: 7205 components: - type: Transform @@ -34907,6 +34933,9 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,5.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 7372 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1087 @@ -34915,6 +34944,9 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,5.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 1947 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1146 @@ -35236,6 +35268,9 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,17.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 7372 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4548 @@ -35511,6 +35546,9 @@ entities: rot: 3.141592653589793 rad pos: -61.5,-1.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 6101 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8226 @@ -35536,11 +35574,23 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,1.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 6101 - uid: 8669 components: - type: Transform pos: 2.5,6.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 8680 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber @@ -35636,6 +35686,9 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,7.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 7372 - type: AtmosPipeColor color: '#990000FF' - uid: 845 @@ -35650,6 +35703,9 @@ entities: - type: Transform pos: 1.5,10.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 6648 - type: AtmosPipeColor color: '#990000FF' - uid: 1099 @@ -35715,6 +35771,9 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,11.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 7372 - type: AtmosPipeColor color: '#990000FF' - uid: 2127 @@ -36074,6 +36133,9 @@ entities: - type: Transform pos: -36.5,9.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 1948 - type: AtmosPipeColor color: '#990000FF' - uid: 7235 @@ -36197,6 +36259,9 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,18.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 7372 - type: AtmosPipeColor color: '#990000FF' - uid: 8629 @@ -36213,8 +36278,20 @@ entities: rot: 3.141592653589793 rad pos: 2.5,7.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 8680 - type: AtmosPipeColor color: '#990000FF' + - uid: 8673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,2.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 6101 - proto: GasVolumePump entities: - uid: 7730 diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index ed153964bd..c7030f6cf5 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -11876,6 +11876,8 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 7536 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking43669 dockedWith: 7332 @@ -13198,6 +13200,8 @@ entities: lastSignals: DoorStatus: False DockStatus: True + - type: Door + changeAirtight: False - uid: 12584 components: - type: Transform @@ -14327,6 +14331,17 @@ entities: rot: 3.141592653589793 rad pos: 46.5,31.5 parent: 60 + - uid: 898 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 60 + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-25.5 + parent: 60 - uid: 3189 components: - type: Transform @@ -14339,6 +14354,18 @@ entities: rot: 1.5707963267948966 rad pos: 59.5,14.5 parent: 60 + - uid: 6129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,29.5 + parent: 60 + - uid: 6130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 7536 - uid: 6768 components: - type: Transform @@ -14363,6 +14390,17 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-70.5 parent: 60 + - uid: 9110 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 7536 + - uid: 9214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 7536 - uid: 12269 components: - type: Transform @@ -14410,38 +14448,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-70.5 parent: 60 -- proto: AtmosDeviceFanTiny - entities: - - uid: 6129 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 7536 - - uid: 6130 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 7536 - - uid: 9110 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 7536 - - uid: 9214 - components: - - type: Transform - pos: 23.5,-29.5 - parent: 60 - - uid: 13825 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 60 - - uid: 19808 - components: - - type: Transform - pos: 20.5,28.5 - parent: 60 - proto: AtmosFixBlockerMarker entities: - uid: 6252 @@ -74858,18 +74864,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 898 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -10.5,-22.5 - parent: 60 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 899 components: - type: Transform @@ -74894,18 +74888,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 902 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 60 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 903 components: - type: Transform @@ -122248,6 +122230,21 @@ entities: parent: 60 - proto: SignAi entities: + - uid: 16533 + components: + - type: Transform + pos: -101.5,16.5 + parent: 60 + - uid: 19800 + components: + - type: Transform + pos: -112.5,20.5 + parent: 60 + - uid: 19808 + components: + - type: Transform + pos: -107.5,16.5 + parent: 60 - uid: 21237 components: - type: Transform @@ -122258,6 +122255,18 @@ entities: - type: Transform pos: -60.5,16.5 parent: 60 +- proto: SignAiUpload + entities: + - uid: 21130 + components: + - type: Transform + pos: -110.5,6.5 + parent: 60 + - uid: 23380 + components: + - type: Transform + pos: -112.5,14.5 + parent: 60 - proto: SignalButton entities: - uid: 3803 @@ -123144,11 +123153,12 @@ entities: - type: Transform pos: 2.5,-1.5 parent: 60 -- proto: SignCanisters +- proto: SignCans entities: - - uid: 15171 + - uid: 13825 components: - type: Transform + rot: 3.141592653589793 rad pos: -28.5,37.5 parent: 60 - proto: SignCargo @@ -123205,6 +123215,13 @@ entities: - type: Transform pos: 42.5,-25.5 parent: 60 +- proto: SignCryo + entities: + - uid: 15171 + components: + - type: Transform + pos: -29.5,22.5 + parent: 60 - proto: SignCryogenicsMed entities: - uid: 4111 @@ -123335,11 +123352,11 @@ entities: rot: 1.5707963267948966 rad pos: 42.49971,-21.305145 parent: 60 - - uid: 16533 + - uid: 23381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,22.5 + rot: 3.141592653589793 rad + pos: -32.5,18.5 parent: 60 - proto: SignDirectionalDorms entities: @@ -124078,6 +124095,14 @@ entities: - type: Transform pos: -109.5,20.5 parent: 60 +- proto: SignKitchen + entities: + - uid: 23382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-25.5 + parent: 60 - proto: SignLaserMed entities: - uid: 14624 @@ -124116,6 +124141,12 @@ entities: - type: Transform pos: 3.5,-46.5 parent: 60 + - uid: 23969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,17.5 + parent: 60 - proto: SignMedical entities: - uid: 2632 @@ -124301,6 +124332,14 @@ entities: - type: Transform pos: -19.5,-11.5 parent: 60 +- proto: SignRestroom + entities: + - uid: 23970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 60 - proto: SignRND entities: - uid: 7085 @@ -124559,6 +124598,14 @@ entities: - type: Transform pos: 22.5,6.5 parent: 60 +- proto: SignTheater + entities: + - uid: 24271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-20.5 + parent: 60 - proto: SignToolStorage entities: - uid: 6315 @@ -124566,6 +124613,14 @@ entities: - type: Transform pos: 14.5,10.5 parent: 60 +- proto: SignVault + entities: + - uid: 24268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 60 - proto: SignVirology entities: - uid: 2969 diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index ea4dd61dd9..2ba6b203e5 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -28,6 +28,7 @@ tilemap: 62: FloorLino 64: FloorMetalDiamond 65: FloorMime + 2: FloorMono 77: FloorReinforced 78: FloorReinforcedHardened 79: FloorRockVault @@ -382,7 +383,7 @@ entities: version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAaAAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-6: ind: -1,-6 @@ -390,7 +391,7 @@ entities: version: 6 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAABeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAABTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAABeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA version: 6 2,-6: ind: 2,-6 @@ -512,17 +513,17 @@ entities: decals: 1116: -24,-18 1117: -24,-16 - 2954: 2,-67 - 2955: 2,-66 - 3031: 66,-52 - 3032: 66,-51 - 3263: -23,-25 - 3264: -25,-25 - 3468: 2,-64 - 3469: 2,-63 - 3470: 2,-62 - 3471: 2,-61 - 3472: 2,-60 + 2941: 2,-67 + 2942: 2,-66 + 3018: 66,-52 + 3019: 66,-51 + 3246: -23,-25 + 3247: -25,-25 + 3451: 2,-64 + 3452: 2,-63 + 3453: 2,-62 + 3454: 2,-61 + 3455: 2,-60 - node: color: '#FFFFFFFF' id: Arrows @@ -532,54 +533,42 @@ entities: 2556: 6,-49 2557: 7,-49 2595: 3,-45 - 2631: -6,-76 - 2696: 4,-76 - 3027: 80,-54 - 3028: 79,-54 - 3029: 74,-54 - 3030: 72,-54 + 2625: -6,-76 + 2690: 4,-76 + 3014: 80,-54 + 3015: 79,-54 + 3016: 74,-54 + 3017: 72,-54 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 2620: 9,-75 - 3265: -25,-27 - 3266: -23,-27 - 3473: 8,-64 - 3474: 8,-63 + 2614: 9,-75 + 3248: -25,-27 + 3249: -23,-27 + 3456: 8,-64 + 3457: 8,-63 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 3660: 60,-52 + 3643: 60,-52 - node: color: '#FFFFFFFF' id: ArrowsGreyscale decals: 386: -25,-66 - - node: - color: '#529CFF93' - id: Bot - decals: - 2598: 16,-79 - 2599: 16,-79 - - node: - color: '#DE3A3A96' - id: Bot - decals: - 2596: 13,-79 - 2597: 14,-79 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 2956: 1,-72 - 2957: 9,-68 - 2958: 9,-67 - 2959: 5,-66 + 2943: 1,-72 + 2944: 9,-68 + 2945: 9,-67 + 2946: 5,-66 - node: color: '#FFFFFFFF' id: Bot @@ -656,75 +645,66 @@ entities: 2459: 14,-43 2593: 6,-41 2594: 7,-41 - 2617: 5,-73 - 2618: 6,-73 - 2619: 7,-73 - 2864: -1,-63 - 2865: -1,-64 - 2952: 1,-67 - 2953: 1,-66 - 3021: 65,-52 - 3022: 65,-51 - 3023: 72,-55 - 3024: 74,-55 - 3025: 79,-55 - 3026: 80,-55 - 3034: 74,-44 - 3035: 73,-44 - 3089: 34,-47 - 3090: 34,-46 - 3091: 34,-50 - 3092: 34,-49 - 3093: 37,-50 - 3094: 37,-49 - 3095: 18,-84 - 3096: 14,-85 - 3097: 14,-86 - 3098: 14,-87 - 3146: 34,-44 - 3147: 35,-44 - 3148: 34,-39 - 3230: -35,-19 - 3231: -36,-19 - 3232: -37,-19 - 3233: -38,-19 - 3234: -37,-27 - 3235: -38,-27 - 3236: -39,-27 - 3237: -37,-25 - 3238: -38,-25 - 3239: -39,-25 - 3240: -37,-23 - 3241: -38,-23 - 3242: -39,-23 - 3252: -26,-32 - 3253: -27,-32 - 3254: -27,-34 - 3255: -27,-33 - 3256: -26,-33 - 3257: -26,-34 - 3258: -26,-35 - 3259: -27,-35 - 3460: 3,-55 - 3461: 1,-64 - 3462: 1,-63 - 3463: 1,-62 - 3464: 1,-61 - 3465: 1,-60 - 3466: 9,-64 - 3467: 9,-63 - 3536: -10,31 - 3537: -7,31 - 3564: -10,29 - 3656: 60,-51 - 3657: 59,-51 - 3659: 57,-51 - - node: - color: '#529CFF93' - id: BotGreyscale - decals: - 2600: 16,-79 - 2601: 17,-79 + 2611: 5,-73 + 2612: 6,-73 + 2613: 7,-73 + 2851: -1,-63 + 2852: -1,-64 + 2939: 1,-67 + 2940: 1,-66 + 3008: 65,-52 + 3009: 65,-51 + 3010: 72,-55 + 3011: 74,-55 + 3012: 79,-55 + 3013: 80,-55 + 3021: 74,-44 + 3022: 73,-44 + 3076: 34,-47 + 3077: 34,-46 + 3078: 34,-50 + 3079: 34,-49 + 3080: 37,-50 + 3081: 37,-49 + 3082: 18,-84 + 3129: 34,-44 + 3130: 35,-44 + 3131: 34,-39 + 3213: -35,-19 + 3214: -36,-19 + 3215: -37,-19 + 3216: -38,-19 + 3217: -37,-27 + 3218: -38,-27 + 3219: -39,-27 + 3220: -37,-25 + 3221: -38,-25 + 3222: -39,-25 + 3223: -37,-23 + 3224: -38,-23 + 3225: -39,-23 + 3235: -26,-32 + 3236: -27,-32 + 3237: -27,-34 + 3238: -27,-33 + 3239: -26,-33 + 3240: -26,-34 + 3241: -26,-35 + 3242: -27,-35 + 3443: 3,-55 + 3444: 1,-64 + 3445: 1,-63 + 3446: 1,-62 + 3447: 1,-61 + 3448: 1,-60 + 3449: 9,-64 + 3450: 9,-63 + 3519: -10,31 + 3520: -7,31 + 3547: -10,29 + 3639: 60,-51 + 3640: 59,-51 + 3642: 57,-51 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -738,27 +718,27 @@ entities: 1063: 0,-21 1079: -2,-14 1080: 0,-14 - 3587: -16,36 - 3588: -15,36 - 3589: -14,36 - 3590: -13,36 - 3591: -12,36 + 3570: -16,36 + 3571: -15,36 + 3572: -14,36 + 3573: -13,36 + 3574: -12,36 - node: color: '#FFFFFFFF' id: BotLeft decals: 1688: 55,-32 - 3111: 18,-71 - 3112: 17,-71 - 3113: 16,-71 - 3114: 15,-71 - 3249: -40,-28 - 3250: -39,-28 - 3251: -38,-28 - 3606: -1,37 - 3607: 0,37 - 3608: 1,37 - 3609: 2,37 + 3095: 18,-71 + 3096: 17,-71 + 3097: 16,-71 + 3098: 15,-71 + 3232: -40,-28 + 3233: -39,-28 + 3234: -38,-28 + 3589: -1,37 + 3590: 0,37 + 3591: 1,37 + 3592: 2,37 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -790,14 +770,13 @@ entities: color: '#FFFFFFFF' id: Box decals: - 3563: -7,32 + 3546: -7,32 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: 2460: 14,-42 2461: 14,-41 - 3115: 15,-81 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -809,80 +788,80 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 2976: 11,-35 + 2963: 11,-35 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 3604: -2,36 + 3587: -2,36 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 3605: 3,36 + 3588: 3,36 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 3603: -2,38 + 3586: -2,38 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 3602: 3,38 + 3585: 3,38 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 2977: 11,-34 - 3593: -2,37 + 2964: 11,-34 + 3576: -2,37 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 2941: -6,-66 - 2942: -7,-66 - 2943: -8,-66 - 2969: 13,-36 - 2970: 11,-36 - 2973: 12,-36 - 2974: 10,-36 - 2975: 9,-36 - 3598: -1,36 - 3599: 0,36 - 3600: 1,36 - 3601: 2,36 + 2928: -6,-66 + 2929: -7,-66 + 2930: -8,-66 + 2956: 13,-36 + 2957: 11,-36 + 2960: 12,-36 + 2961: 10,-36 + 2962: 9,-36 + 3581: -1,36 + 3582: 0,36 + 3583: 1,36 + 3584: 2,36 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2944: -8,-62 - 2945: -7,-62 - 2946: -6,-62 - 2947: -4,-62 - 2948: -3,-62 - 2949: -2,-62 - 2950: -1,-62 - 2967: 10,-35 - 2968: 9,-35 - 3594: -1,38 - 3595: 0,38 - 3596: 1,38 - 3597: 2,38 + 2931: -8,-62 + 2932: -7,-62 + 2933: -6,-62 + 2934: -4,-62 + 2935: -3,-62 + 2936: -2,-62 + 2937: -1,-62 + 2954: 10,-35 + 2955: 9,-35 + 3577: -1,38 + 3578: 0,38 + 3579: 1,38 + 3580: 2,38 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 3555: -6,29 - 3556: -6,30 - 3557: -6,31 - 3558: -6,32 - 3592: 3,37 + 3538: -6,29 + 3539: -6,30 + 3540: -6,31 + 3541: -6,32 + 3575: 3,37 - node: color: '#9FED584D' id: BrickTileSteelCornerNe decals: - 3063: 35,-46 + 3050: 35,-46 - node: color: '#D381C996' id: BrickTileSteelCornerNe @@ -892,12 +871,12 @@ entities: color: '#EFB34196' id: BrickTileSteelCornerNe decals: - 3069: 35,-49 + 3056: 35,-49 - node: color: '#9FED584D' id: BrickTileSteelCornerNw decals: - 3064: 34,-46 + 3051: 34,-46 - node: color: '#D381C996' id: BrickTileSteelCornerNw @@ -908,37 +887,37 @@ entities: color: '#EFB34196' id: BrickTileSteelCornerNw decals: - 3070: 34,-49 + 3057: 34,-49 - node: color: '#52B4E996' id: BrickTileSteelCornerSe decals: - 2981: 19,-34 + 2968: 19,-34 - node: color: '#9FED584D' id: BrickTileSteelCornerSe decals: - 3065: 35,-47 + 3052: 35,-47 - node: color: '#EFB34196' id: BrickTileSteelCornerSe decals: - 3068: 35,-50 + 3055: 35,-50 - node: color: '#52B4E996' id: BrickTileSteelCornerSw decals: - 2980: 21,-34 + 2967: 21,-34 - node: color: '#9FED584D' id: BrickTileSteelCornerSw decals: - 3066: 34,-47 + 3053: 34,-47 - node: color: '#EFB34196' id: BrickTileSteelCornerSw decals: - 3067: 34,-50 + 3054: 34,-50 - node: color: '#D381C996' id: BrickTileSteelInnerNe @@ -968,11 +947,11 @@ entities: color: '#52B4E996' id: BrickTileSteelLineE decals: - 2983: 19,-33 - 3071: 37,-50 - 3072: 37,-49 - 3073: 37,-47 - 3074: 37,-46 + 2970: 19,-33 + 3058: 37,-50 + 3059: 37,-49 + 3060: 37,-47 + 3061: 37,-46 - node: color: '#D381C996' id: BrickTileSteelLineE @@ -1029,8 +1008,8 @@ entities: color: '#52B4E996' id: BrickTileSteelLineS decals: - 2978: 22,-34 - 2979: 18,-34 + 2965: 22,-34 + 2966: 18,-34 - node: color: '#D381C996' id: BrickTileSteelLineS @@ -1074,7 +1053,7 @@ entities: color: '#52B4E996' id: BrickTileSteelLineW decals: - 2982: 21,-33 + 2969: 21,-33 - node: color: '#D381C996' id: BrickTileSteelLineW @@ -1088,8 +1067,8 @@ entities: decals: 2430: 34,-35 2438: 46,-54 - 3393: 45,-1 - 3394: 45,0 + 3376: 45,-1 + 3377: 45,0 - node: color: '#D4D4D428' id: BrickTileWhiteBox @@ -1107,7 +1086,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerNe decals: - 3053: 37,-40 + 3040: 37,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe @@ -1141,8 +1120,8 @@ entities: 1498: -4,9 2252: -12,-50 2573: 7,-41 - 2641: -10,-73 - 2866: 9,-66 + 2635: -10,-73 + 2853: 9,-66 - node: color: '#FFEBAE96' id: BrickTileWhiteCornerNe @@ -1159,7 +1138,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerNw decals: - 3054: 34,-40 + 3041: 34,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw @@ -1181,7 +1160,7 @@ entities: id: BrickTileWhiteCornerNw decals: 2255: -16,-57 - 3545: -15,27 + 3528: -15,27 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw @@ -1189,10 +1168,10 @@ entities: 1497: -7,9 2251: -13,-50 2572: 3,-41 - 2642: -18,-73 - 2872: 1,-66 - 2877: -4,-67 - 2878: -8,-68 + 2636: -18,-73 + 2859: 1,-66 + 2864: -4,-67 + 2865: -8,-68 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe @@ -1204,7 +1183,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerSe decals: - 3056: 37,-43 + 3043: 37,-43 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe @@ -1226,8 +1205,8 @@ entities: decals: 2267: -6,-58 2580: 7,-45 - 2623: -5,-76 - 2656: -10,-77 + 2617: -5,-76 + 2650: -10,-77 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw @@ -1239,7 +1218,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerSw decals: - 3055: 34,-43 + 3042: 34,-43 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw @@ -1259,7 +1238,7 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 3546: -15,26 + 3529: -15,26 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw @@ -1267,8 +1246,8 @@ entities: 1500: -7,6 2265: -8,-58 2569: 3,-45 - 2622: -8,-76 - 2655: -18,-77 + 2616: -8,-76 + 2649: -18,-77 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe @@ -1283,12 +1262,12 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 3553: -6,27 + 3536: -6,27 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 2901: -4,-68 + 2888: -4,-68 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe @@ -1320,8 +1299,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineE decals: - 3059: 37,-42 - 3060: 37,-41 + 3046: 37,-42 + 3047: 37,-41 - node: color: '#52B4E996' id: BrickTileWhiteLineE @@ -1356,10 +1335,10 @@ entities: id: BrickTileWhiteLineE decals: 1533: -11,4 - 3549: -5,30 - 3550: -5,31 - 3551: -5,32 - 3552: -5,29 + 3532: -5,30 + 3533: -5,31 + 3534: -5,32 + 3535: -5,29 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1372,14 +1351,14 @@ entities: 2577: 7,-42 2578: 7,-43 2579: 7,-44 - 2624: -5,-73 - 2628: -5,-72 - 2650: -10,-74 - 2651: -10,-76 - 2889: 9,-70 - 2890: 9,-69 - 2891: 9,-68 - 2892: 9,-67 + 2618: -5,-73 + 2622: -5,-72 + 2644: -10,-74 + 2645: -10,-76 + 2876: 9,-70 + 2877: 9,-69 + 2878: 9,-68 + 2879: 9,-67 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -1401,8 +1380,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineN decals: - 3051: 36,-40 - 3052: 35,-40 + 3038: 36,-40 + 3039: 35,-40 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -1451,16 +1430,16 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 3540: -7,27 - 3541: -10,27 - 3542: -11,27 - 3543: -13,27 - 3544: -14,27 - 3574: -12,36 - 3575: -13,36 - 3576: -14,36 - 3577: -15,36 - 3578: -16,36 + 3523: -7,27 + 3524: -10,27 + 3525: -11,27 + 3526: -13,27 + 3527: -14,27 + 3557: -12,36 + 3558: -13,36 + 3559: -14,36 + 3560: -15,36 + 3561: -16,36 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -1470,29 +1449,29 @@ entities: 2574: 6,-41 2575: 5,-41 2576: 4,-41 - 2611: 7,-73 - 2612: 6,-73 - 2613: 5,-73 - 2637: -20,-69 - 2638: -21,-69 - 2643: -17,-73 - 2644: -16,-73 - 2645: -15,-73 - 2646: -14,-73 - 2647: -13,-73 - 2648: -12,-73 - 2649: -11,-73 - 2867: 7,-66 - 2868: 6,-66 - 2869: 5,-66 - 2870: 4,-66 - 2871: 2,-66 - 2873: 0,-67 - 2874: -1,-67 - 2875: -2,-67 - 2876: -3,-67 - 2899: -6,-68 - 2900: -5,-68 + 2605: 7,-73 + 2606: 6,-73 + 2607: 5,-73 + 2631: -20,-69 + 2632: -21,-69 + 2637: -17,-73 + 2638: -16,-73 + 2639: -15,-73 + 2640: -14,-73 + 2641: -13,-73 + 2642: -12,-73 + 2643: -11,-73 + 2854: 7,-66 + 2855: 6,-66 + 2856: 5,-66 + 2857: 4,-66 + 2858: 2,-66 + 2860: 0,-67 + 2861: -1,-67 + 2862: -2,-67 + 2863: -3,-67 + 2886: -6,-68 + 2887: -5,-68 - node: color: '#FFEBAE96' id: BrickTileWhiteLineN @@ -1515,8 +1494,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineS decals: - 3057: 36,-43 - 3058: 35,-43 + 3044: 36,-43 + 3045: 35,-43 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -1566,10 +1545,10 @@ entities: 2089: 10,26 2090: 8,26 2091: 7,26 - 3579: -12,34 - 3580: -13,34 - 3581: -14,34 - 3582: -16,34 + 3562: -12,34 + 3563: -13,34 + 3564: -14,34 + 3565: -16,34 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -1582,30 +1561,30 @@ entities: 2581: 6,-45 2582: 5,-45 2583: 4,-45 - 2614: 8,-76 - 2615: 6,-76 - 2616: 7,-76 - 2629: -6,-76 - 2630: -7,-76 - 2639: -20,-71 - 2640: -21,-71 - 2657: -11,-77 - 2658: -12,-77 - 2659: -13,-77 - 2660: -14,-77 - 2661: -15,-77 - 2662: -16,-77 - 2663: -17,-77 - 2879: -4,-71 - 2880: -3,-71 - 2881: -2,-71 - 2882: -1,-71 - 2883: 0,-71 - 2884: 1,-71 - 2885: 2,-71 - 2886: 5,-71 - 2887: 6,-71 - 2888: 7,-71 + 2608: 8,-76 + 2609: 6,-76 + 2610: 7,-76 + 2623: -6,-76 + 2624: -7,-76 + 2633: -20,-71 + 2634: -21,-71 + 2651: -11,-77 + 2652: -12,-77 + 2653: -13,-77 + 2654: -14,-77 + 2655: -15,-77 + 2656: -16,-77 + 2657: -17,-77 + 2866: -4,-71 + 2867: -3,-71 + 2868: -2,-71 + 2869: -1,-71 + 2870: 0,-71 + 2871: 1,-71 + 2872: 2,-71 + 2873: 5,-71 + 2874: 6,-71 + 2875: 7,-71 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -1631,8 +1610,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineW decals: - 3061: 34,-42 - 3062: 34,-41 + 3048: 34,-42 + 3049: 34,-41 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -1657,11 +1636,11 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 3554: -6,28 - 3559: -6,29 - 3560: -6,30 - 3561: -6,31 - 3562: -6,32 + 3537: -6,28 + 3542: -6,29 + 3543: -6,30 + 3544: -6,31 + 3545: -6,32 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -1672,12 +1651,12 @@ entities: 2264: -8,-57 2570: 3,-44 2571: 3,-42 - 2625: -8,-74 - 2626: -8,-73 - 2627: -8,-72 - 2652: -18,-74 - 2653: -18,-75 - 2654: -18,-76 + 2619: -8,-74 + 2620: -8,-73 + 2621: -8,-72 + 2646: -18,-74 + 2647: -18,-75 + 2648: -18,-76 - node: color: '#FFFFFFFF' id: Bushb1 @@ -1741,7 +1720,7 @@ entities: decals: 1680: 66,-22 2436: 31,-34 - 2621: 9,-74 + 2615: 9,-74 - node: color: '#3B393B85' id: CheckerNESW @@ -1776,14 +1755,14 @@ entities: 1584: 44,-45 1585: 43,-45 1586: 42,-46 - 3138: 34,-44 - 3139: 35,-44 - 3140: 36,-44 - 3141: 37,-44 - 3142: 37,-39 - 3143: 36,-39 - 3144: 35,-39 - 3145: 34,-39 + 3121: 34,-44 + 3122: 35,-44 + 3123: 36,-44 + 3124: 37,-44 + 3125: 37,-39 + 3126: 36,-39 + 3127: 35,-39 + 3128: 34,-39 - node: color: '#92929B96' id: CheckerNESW @@ -1818,18 +1797,18 @@ entities: color: '#9FED5896' id: CheckerNESW decals: - 3381: 45,-1 - 3382: 45,0 - 3383: 46,-1 - 3384: 46,0 - 3385: 47,-1 - 3386: 47,0 - 3387: 48,-1 - 3388: 48,0 - 3389: 48,1 - 3390: 49,1 - 3391: 49,0 - 3392: 49,-1 + 3364: 45,-1 + 3365: 45,0 + 3366: 46,-1 + 3367: 46,0 + 3368: 47,-1 + 3369: 47,0 + 3370: 48,-1 + 3371: 48,0 + 3372: 48,1 + 3373: 49,1 + 3374: 49,0 + 3375: 49,-1 - node: color: '#D381C996' id: CheckerNESW @@ -1869,30 +1848,30 @@ entities: color: '#EFCC4163' id: CheckerNESW decals: - 2840: -1,-65 - 2841: -2,-65 - 2842: -2,-64 - 2843: -1,-64 - 2844: -1,-63 - 2845: -2,-63 - 2846: -4,-63 - 2847: -3,-63 - 2848: -3,-64 - 2849: -4,-64 - 2850: -5,-64 - 2851: -5,-63 - 2852: -3,-65 - 2853: -4,-65 - 2854: -5,-65 - 2855: -6,-65 - 2856: -8,-65 - 2857: -7,-65 - 2858: -6,-64 - 2859: -7,-64 - 2860: -8,-64 - 2861: -8,-63 - 2862: -7,-63 - 2863: -6,-63 + 2827: -1,-65 + 2828: -2,-65 + 2829: -2,-64 + 2830: -1,-64 + 2831: -1,-63 + 2832: -2,-63 + 2833: -4,-63 + 2834: -3,-63 + 2835: -3,-64 + 2836: -4,-64 + 2837: -5,-64 + 2838: -5,-63 + 2839: -3,-65 + 2840: -4,-65 + 2841: -5,-65 + 2842: -6,-65 + 2843: -8,-65 + 2844: -7,-65 + 2845: -6,-64 + 2846: -7,-64 + 2847: -8,-64 + 2848: -8,-63 + 2849: -7,-63 + 2850: -6,-63 - node: color: '#FFEBAE96' id: CheckerNESW @@ -1917,18 +1896,18 @@ entities: color: '#FFFFFFFF' id: CheckerNESW decals: - 3369: 45,-1 - 3370: 45,0 - 3371: 46,0 - 3372: 46,-1 - 3373: 47,-1 - 3374: 47,0 - 3375: 48,-1 - 3376: 48,0 - 3377: 49,-1 - 3378: 49,0 - 3379: 49,1 - 3380: 48,1 + 3352: 45,-1 + 3353: 45,0 + 3354: 46,0 + 3355: 46,-1 + 3356: 47,-1 + 3357: 47,0 + 3358: 48,-1 + 3359: 48,0 + 3360: 49,-1 + 3361: 49,0 + 3362: 49,1 + 3363: 48,1 - node: color: '#334E6DC8' id: CheckerNWSE @@ -1991,32 +1970,32 @@ entities: 1647: 49,-36 1648: 49,-35 1649: 49,-34 - 2988: 38,-30 - 2989: 38,-29 - 2990: 38,-28 - 2991: 38,-27 - 2992: 39,-27 - 2993: 40,-27 - 2994: 41,-27 - 2995: 41,-28 - 2996: 40,-28 - 2997: 39,-28 - 2998: 39,-29 - 2999: 39,-30 - 3000: 40,-30 - 3001: 40,-29 - 3002: 41,-29 - 3003: 41,-30 - 3079: 40,-49 - 3080: 40,-48 - 3081: 40,-47 - 3082: 40,-46 - 3083: 40,-45 - 3084: 40,-44 - 3085: 40,-43 - 3086: 40,-42 - 3087: 40,-41 - 3088: 40,-40 + 2975: 38,-30 + 2976: 38,-29 + 2977: 38,-28 + 2978: 38,-27 + 2979: 39,-27 + 2980: 40,-27 + 2981: 41,-27 + 2982: 41,-28 + 2983: 40,-28 + 2984: 39,-28 + 2985: 39,-29 + 2986: 39,-30 + 2987: 40,-30 + 2988: 40,-29 + 2989: 41,-29 + 2990: 41,-30 + 3066: 40,-49 + 3067: 40,-48 + 3068: 40,-47 + 3069: 40,-46 + 3070: 40,-45 + 3071: 40,-44 + 3072: 40,-43 + 3073: 40,-42 + 3074: 40,-41 + 3075: 40,-40 - node: color: '#9FED5896' id: CheckerNWSE @@ -2033,22 +2012,22 @@ entities: 744: 47,-59 745: 47,-60 746: 47,-61 - 3172: 3,-36 - 3173: 3,-35 - 3174: 4,-35 - 3175: 4,-36 - 3176: 5,-36 - 3177: 5,-35 - 3178: 6,-35 - 3179: 6,-36 + 3155: 3,-36 + 3156: 3,-35 + 3157: 4,-35 + 3158: 4,-36 + 3159: 5,-36 + 3160: 5,-35 + 3161: 6,-35 + 3162: 6,-36 - node: color: '#A4610696' id: CheckerNWSE decals: - 3190: -33,-31 - 3191: -33,-30 - 3192: -32,-30 - 3193: -32,-31 + 3173: -33,-31 + 3174: -33,-30 + 3175: -32,-30 + 3176: -32,-31 - node: color: '#D381C996' id: CheckerNWSE @@ -2170,57 +2149,57 @@ entities: 2562: 3,-46 2563: 4,-49 2564: 4,-48 - 2602: -9,-71 - 2603: -9,-70 - 2604: -9,-69 - 2605: -19,-70 - 2632: -9,-75 - 2633: -8,-72 - 2634: -7,-72 - 2635: -6,-72 - 2636: -5,-72 - 2684: 8,-72 - 2685: 9,-72 - 2686: 4,-72 - 2687: 3,-72 - 2951: -1,-62 - 3033: 67,-54 - 3036: 70,-44 - 3037: 78,-42 - 3038: 78,-40 - 3226: -38,-20 - 3227: -37,-20 - 3228: -36,-20 - 3229: -35,-20 - 3243: -40,-27 - 3244: -40,-25 - 3245: -40,-23 - 3246: -38,-31 - 3247: -39,-31 - 3248: -40,-31 - 3260: -26,-39 - 3261: -27,-39 - 3262: -28,-39 - 3395: 87,-6 - 3396: 87,-4 - 3397: 87,-12 - 3398: 87,-14 - 3399: 83,-14 - 3400: 83,-12 - 3401: 83,-6 - 3402: 83,-4 - 3406: 9,-32 - 3407: 9,-31 - 3408: 9,-30 - 3475: 3,-65 - 3476: 8,-65 - 3477: 8,-59 - 3478: 4,-59 - 3651: 57,-44 - 3652: 58,-44 - 3653: 59,-44 - 3654: 60,-44 - 3658: 58,-51 + 2596: -9,-71 + 2597: -9,-70 + 2598: -9,-69 + 2599: -19,-70 + 2626: -9,-75 + 2627: -8,-72 + 2628: -7,-72 + 2629: -6,-72 + 2630: -5,-72 + 2678: 8,-72 + 2679: 9,-72 + 2680: 4,-72 + 2681: 3,-72 + 2938: -1,-62 + 3020: 67,-54 + 3023: 70,-44 + 3024: 78,-42 + 3025: 78,-40 + 3209: -38,-20 + 3210: -37,-20 + 3211: -36,-20 + 3212: -35,-20 + 3226: -40,-27 + 3227: -40,-25 + 3228: -40,-23 + 3229: -38,-31 + 3230: -39,-31 + 3231: -40,-31 + 3243: -26,-39 + 3244: -27,-39 + 3245: -28,-39 + 3378: 87,-6 + 3379: 87,-4 + 3380: 87,-12 + 3381: 87,-14 + 3382: 83,-14 + 3383: 83,-12 + 3384: 83,-6 + 3385: 83,-4 + 3389: 9,-32 + 3390: 9,-31 + 3391: 9,-30 + 3458: 3,-65 + 3459: 8,-65 + 3460: 8,-59 + 3461: 4,-59 + 3634: 57,-44 + 3635: 58,-44 + 3636: 59,-44 + 3637: 60,-44 + 3641: 58,-51 - node: cleanable: True color: '#474F52FF' @@ -2292,41 +2271,41 @@ entities: color: '#FFFFFFFF' id: Dirt decals: - 3479: 3,-63 - 3480: 3,-62 - 3481: 4,-61 - 3482: 7,-61 - 3483: 8,-61 - 3484: 8,-60 - 3485: 8,-56 - 3486: 8,-55 - 3487: 6,-54 - 3488: 4,-53 - 3624: 55,-53 - 3625: 53,-55 - 3626: 60,-55 - 3627: 61,-56 - 3628: 65,-56 - 3629: 51,-56 - 3630: 50,-55 - 3631: 44,-50 - 3632: 43,-50 - 3633: 51,-49 - 3634: 50,-48 - 3635: 47,-42 - 3636: 48,-43 - 3637: 44,-43 - 3638: 51,-46 - 3639: 57,-51 - 3640: 57,-52 - 3641: 61,-53 - 3642: 63,-52 - 3643: 60,-51 - 3646: 60,-48 - 3647: 53,-50 - 3648: 55,-49 - 3649: 57,-45 - 3650: 58,-46 + 3462: 3,-63 + 3463: 3,-62 + 3464: 4,-61 + 3465: 7,-61 + 3466: 8,-61 + 3467: 8,-60 + 3468: 8,-56 + 3469: 8,-55 + 3470: 6,-54 + 3471: 4,-53 + 3607: 55,-53 + 3608: 53,-55 + 3609: 60,-55 + 3610: 61,-56 + 3611: 65,-56 + 3612: 51,-56 + 3613: 50,-55 + 3614: 44,-50 + 3615: 43,-50 + 3616: 51,-49 + 3617: 50,-48 + 3618: 47,-42 + 3619: 48,-43 + 3620: 44,-43 + 3621: 51,-46 + 3622: 57,-51 + 3623: 57,-52 + 3624: 61,-53 + 3625: 63,-52 + 3626: 60,-51 + 3629: 60,-48 + 3630: 53,-50 + 3631: 55,-49 + 3632: 57,-45 + 3633: 58,-46 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -2338,42 +2317,42 @@ entities: id: DirtHeavy decals: 2529: -1,-55 - 2755: 5,-69 - 2756: 6,-69 - 2757: 0,-70 - 2914: -7,-71 - 2915: -8,-71 - 2916: -7,-72 - 2917: -7,-73 - 2918: -6,-73 - 2919: -1,-72 - 2920: 0,-72 - 3283: -32,-22 - 3284: -36,-22 - 3285: -38,-24 - 3286: -36,-26 - 3287: -36,-29 - 3318: -27,-38 - 3319: -28,-36 - 3320: -28,-35 - 3321: -28,-34 - 3322: -25,-33 - 3489: 3,-61 - 3490: 8,-62 - 3491: 8,-57 - 3616: 63,-56 - 3617: 58,-56 + 2749: 5,-69 + 2750: 6,-69 + 2751: 0,-70 + 2901: -7,-71 + 2902: -8,-71 + 2903: -7,-72 + 2904: -7,-73 + 2905: -6,-73 + 2906: -1,-72 + 2907: 0,-72 + 3266: -32,-22 + 3267: -36,-22 + 3268: -38,-24 + 3269: -36,-26 + 3270: -36,-29 + 3301: -27,-38 + 3302: -28,-36 + 3303: -28,-35 + 3304: -28,-34 + 3305: -25,-33 + 3472: 3,-61 + 3473: 8,-62 + 3474: 8,-57 + 3599: 63,-56 + 3600: 58,-56 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2921: 1,-72 - 2922: 1,-71 - 2923: 4,-71 - 2924: 3,-66 - 3611: 51,-56 - 3612: 51,-48 + 2908: 1,-72 + 2909: 1,-71 + 2910: 4,-71 + 2911: 3,-66 + 3594: 51,-56 + 3595: 51,-48 - node: cleanable: True color: '#474F52FF' @@ -2520,129 +2499,129 @@ entities: 2523: 0,-56 2524: 1,-57 2525: 2,-57 - 2725: 4,-68 - 2726: 8,-68 - 2727: 8,-73 - 2728: 8,-75 - 2729: 9,-73 - 2730: 11,-74 - 2731: 11,-73 - 2732: 4,-74 - 2733: 3,-73 - 2734: 1,-74 - 2735: 0,-74 - 2736: -1,-73 - 2737: -3,-75 - 2738: -4,-74 - 2739: -4,-75 - 2740: -5,-74 - 2741: -6,-73 - 2742: -5,-69 - 2743: -4,-68 - 2744: -10,-70 - 2745: -11,-69 - 2746: -13,-70 - 2747: -15,-70 - 2748: -17,-69 - 2749: -10,-75 - 2750: -11,-76 - 2751: -13,-77 - 2752: 0,-70 - 2753: 1,-69 - 2754: 7,-68 - 2765: 7,-70 - 2766: 0,-69 - 2767: -1,-69 - 2768: -2,-70 - 2769: -7,-69 - 2770: -6,-68 - 2771: -5,-68 - 2772: -4,-69 - 2773: -4,-70 - 2925: 2,-67 - 2926: 3,-67 - 2927: 2,-66 - 2928: 5,-67 - 2929: 5,-67 - 2930: 4,-67 - 2931: 9,-70 - 2932: 9,-71 - 2933: 8,-71 - 2934: -4,-71 - 2935: -6,-71 - 2936: -8,-70 - 2937: -8,-69 - 2938: -7,-70 - 2939: -10,-71 - 2940: -12,-71 - 3267: -40,-30 - 3268: -41,-31 - 3269: -38,-30 - 3270: -38,-31 - 3271: -36,-31 - 3272: -38,-28 - 3273: -41,-27 - 3274: -38,-25 - 3275: -36,-26 - 3276: -39,-24 - 3277: -37,-22 - 3278: -35,-21 - 3279: -33,-21 - 3280: -33,-21 - 3281: -31,-22 - 3282: -29,-23 - 3328: -26,-35 - 3329: -26,-35 - 3330: -25,-35 - 3331: -27,-35 - 3332: -26,-33 - 3333: -27,-33 - 3334: -27,-31 - 3335: -28,-31 - 3336: -28,-32 - 3337: -29,-32 - 3338: -31,-31 - 3339: -30,-31 - 3340: -35,-31 - 3341: -26,-29 - 3342: -25,-30 - 3343: -25,-28 - 3344: -26,-28 - 3345: -28,-28 - 3346: -28,-27 - 3347: -28,-26 - 3348: -26,-25 - 3349: -25,-27 - 3350: -25,-27 - 3351: -23,-27 - 3352: -22,-27 - 3353: -21,-25 - 3492: 8,-58 - 3493: 7,-57 - 3494: 8,-54 - 3495: 7,-54 - 3496: 4,-54 - 3497: 5,-53 - 3498: 3,-53 - 3499: 3,-64 - 3500: 2,-63 - 3501: 5,-61 - 3502: 6,-61 - 3503: 4,-60 - 3504: 8,-64 - 3505: 6,-57 - 3506: 5,-57 - 3507: 5,-57 - 3508: 3,-57 - 3509: 4,-58 - 3510: 4,-56 - 3610: 53,-55 - 3618: 62,-56 - 3619: 58,-55 - 3620: 57,-56 - 3621: 59,-56 - 3622: 60,-56 - 3623: 54,-55 + 2719: 4,-68 + 2720: 8,-68 + 2721: 8,-73 + 2722: 8,-75 + 2723: 9,-73 + 2724: 11,-74 + 2725: 11,-73 + 2726: 4,-74 + 2727: 3,-73 + 2728: 1,-74 + 2729: 0,-74 + 2730: -1,-73 + 2731: -3,-75 + 2732: -4,-74 + 2733: -4,-75 + 2734: -5,-74 + 2735: -6,-73 + 2736: -5,-69 + 2737: -4,-68 + 2738: -10,-70 + 2739: -11,-69 + 2740: -13,-70 + 2741: -15,-70 + 2742: -17,-69 + 2743: -10,-75 + 2744: -11,-76 + 2745: -13,-77 + 2746: 0,-70 + 2747: 1,-69 + 2748: 7,-68 + 2759: 7,-70 + 2760: 0,-69 + 2761: -1,-69 + 2762: -2,-70 + 2763: -7,-69 + 2764: -6,-68 + 2765: -5,-68 + 2766: -4,-69 + 2767: -4,-70 + 2912: 2,-67 + 2913: 3,-67 + 2914: 2,-66 + 2915: 5,-67 + 2916: 5,-67 + 2917: 4,-67 + 2918: 9,-70 + 2919: 9,-71 + 2920: 8,-71 + 2921: -4,-71 + 2922: -6,-71 + 2923: -8,-70 + 2924: -8,-69 + 2925: -7,-70 + 2926: -10,-71 + 2927: -12,-71 + 3250: -40,-30 + 3251: -41,-31 + 3252: -38,-30 + 3253: -38,-31 + 3254: -36,-31 + 3255: -38,-28 + 3256: -41,-27 + 3257: -38,-25 + 3258: -36,-26 + 3259: -39,-24 + 3260: -37,-22 + 3261: -35,-21 + 3262: -33,-21 + 3263: -33,-21 + 3264: -31,-22 + 3265: -29,-23 + 3311: -26,-35 + 3312: -26,-35 + 3313: -25,-35 + 3314: -27,-35 + 3315: -26,-33 + 3316: -27,-33 + 3317: -27,-31 + 3318: -28,-31 + 3319: -28,-32 + 3320: -29,-32 + 3321: -31,-31 + 3322: -30,-31 + 3323: -35,-31 + 3324: -26,-29 + 3325: -25,-30 + 3326: -25,-28 + 3327: -26,-28 + 3328: -28,-28 + 3329: -28,-27 + 3330: -28,-26 + 3331: -26,-25 + 3332: -25,-27 + 3333: -25,-27 + 3334: -23,-27 + 3335: -22,-27 + 3336: -21,-25 + 3475: 8,-58 + 3476: 7,-57 + 3477: 8,-54 + 3478: 7,-54 + 3479: 4,-54 + 3480: 5,-53 + 3481: 3,-53 + 3482: 3,-64 + 3483: 2,-63 + 3484: 5,-61 + 3485: 6,-61 + 3486: 4,-60 + 3487: 8,-64 + 3488: 6,-57 + 3489: 5,-57 + 3490: 5,-57 + 3491: 3,-57 + 3492: 4,-58 + 3493: 4,-56 + 3593: 53,-55 + 3601: 62,-56 + 3602: 58,-55 + 3603: 57,-56 + 3604: 59,-56 + 3605: 60,-56 + 3606: 54,-55 - node: cleanable: True zIndex: 1 @@ -2674,51 +2653,51 @@ entities: 2526: 0,-58 2527: -1,-58 2528: -1,-56 - 2758: -5,-70 - 2759: -6,-69 - 2760: -7,-68 - 2761: -1,-70 - 2762: 6,-70 - 2763: 6,-68 - 2764: 7,-69 - 3288: -37,-29 - 3289: -36,-28 - 3290: -36,-30 - 3291: -36,-27 - 3292: -37,-26 - 3293: -36,-25 - 3294: -36,-24 - 3295: -37,-24 - 3296: -36,-23 - 3297: -39,-22 - 3298: -41,-24 - 3299: -40,-24 - 3300: -41,-25 - 3301: -41,-26 - 3302: -32,-20 - 3303: -32,-19 - 3304: -34,-20 - 3305: -33,-20 - 3306: -28,-21 - 3307: -27,-23 - 3308: -26,-24 - 3309: -26,-26 - 3310: -27,-26 - 3311: -27,-27 - 3312: -27,-28 - 3313: -29,-37 - 3314: -29,-38 - 3315: -28,-38 - 3316: -26,-38 - 3317: -25,-36 - 3323: -28,-33 - 3324: -26,-36 - 3325: -27,-36 - 3326: -27,-33 - 3327: -28,-32 - 3613: 55,-53 - 3614: 64,-56 - 3615: 62,-55 + 2752: -5,-70 + 2753: -6,-69 + 2754: -7,-68 + 2755: -1,-70 + 2756: 6,-70 + 2757: 6,-68 + 2758: 7,-69 + 3271: -37,-29 + 3272: -36,-28 + 3273: -36,-30 + 3274: -36,-27 + 3275: -37,-26 + 3276: -36,-25 + 3277: -36,-24 + 3278: -37,-24 + 3279: -36,-23 + 3280: -39,-22 + 3281: -41,-24 + 3282: -40,-24 + 3283: -41,-25 + 3284: -41,-26 + 3285: -32,-20 + 3286: -32,-19 + 3287: -34,-20 + 3288: -33,-20 + 3289: -28,-21 + 3290: -27,-23 + 3291: -26,-24 + 3292: -26,-26 + 3293: -27,-26 + 3294: -27,-27 + 3295: -27,-28 + 3296: -29,-37 + 3297: -29,-38 + 3298: -28,-38 + 3299: -26,-38 + 3300: -25,-36 + 3306: -28,-33 + 3307: -26,-36 + 3308: -27,-36 + 3309: -27,-33 + 3310: -28,-32 + 3596: 55,-53 + 3597: 64,-56 + 3598: 62,-55 - node: color: '#FFFFFFFF' id: Flowersbr3 @@ -2760,22 +2739,22 @@ entities: color: '#52B4E937' id: FullTileOverlayGreyscale decals: - 3004: 42,-29 - 3005: 42,-28 - 3006: 43,-29 - 3007: 43,-28 - 3008: 44,-29 - 3009: 44,-28 - 3010: 45,-29 - 3011: 45,-28 - 3012: 46,-29 - 3013: 46,-28 - 3014: 45,-27 - 3015: 45,-26 - 3016: 45,-25 - 3017: 45,-24 - 3018: 44,-24 - 3019: 46,-24 + 2991: 42,-29 + 2992: 42,-28 + 2993: 43,-29 + 2994: 43,-28 + 2995: 44,-29 + 2996: 44,-28 + 2997: 45,-29 + 2998: 45,-28 + 2999: 46,-29 + 3000: 46,-28 + 3001: 45,-27 + 3002: 45,-26 + 3003: 45,-25 + 3004: 45,-24 + 3005: 44,-24 + 3006: 46,-24 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -2825,7 +2804,7 @@ entities: 1727: 57,-41 1728: 55,-41 1729: 53,-41 - 3171: 5,-33 + 3154: 5,-33 - node: color: '#DE3A3A2B' id: FullTileOverlayGreyscale @@ -2850,11 +2829,11 @@ entities: id: FullTileOverlayGreyscale decals: 2068: -2,25 - 2893: 1,-72 - 2894: 0,-72 - 2895: -1,-72 - 2896: -2,-72 - 2897: -3,-72 + 2880: 1,-72 + 2881: 0,-72 + 2882: -1,-72 + 2883: -2,-72 + 2884: -3,-72 - node: color: '#EFCF412B' id: FullTileOverlayGreyscale @@ -2907,20 +2886,20 @@ entities: id: Grassd1 decals: 1138: 46.57632,-52.483627 - 3361: 42,0 + 3344: 42,0 - node: color: '#FFFFFFFF' id: Grassd2 decals: 1137: 44.04507,-52.733627 - 3360: 44,0 + 3343: 44,0 - node: color: '#FFFFFFFF' id: Grassd3 decals: 491: -14.979541,-25.083757 1438: 2,48 - 3362: 43,0 + 3345: 43,0 - node: color: '#FFFFFFFF' id: Grasse1 @@ -2930,7 +2909,7 @@ entities: 1136: 43.29507,-52.358627 1437: 2,47 1439: -3,48 - 3358: 43,-1 + 3341: 43,-1 - node: color: '#FFFFFFFF' id: Grasse2 @@ -2942,7 +2921,7 @@ entities: 1434: 4,47 1435: -1,48 1451: -1,47 - 3359: 42,-1 + 3342: 42,-1 - node: color: '#FFFFFFFF' id: Grasse3 @@ -2952,7 +2931,7 @@ entities: 1338: 6.3967857,-23.96697 1433: 4,48 1436: -3,47 - 3357: 44,-1 + 3340: 44,-1 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -2981,10 +2960,10 @@ entities: 1564: 40,-23 2065: -4,28 2428: 34,-35 - 2984: 22,-35 - 2985: 21,-35 - 2986: 18,-35 - 2987: 19,-35 + 2971: 22,-35 + 2972: 21,-35 + 2973: 18,-35 + 2974: 19,-35 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale @@ -3015,8 +2994,8 @@ entities: 2318: 5,28 2319: 28,-24 2320: 69,-18 - 3186: -32,-29 - 3187: -33,-29 + 3169: -32,-29 + 3170: -33,-29 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -3035,10 +3014,10 @@ entities: 1710: 53,-40 1711: 52,-40 1712: 51,-40 - 3157: 6,-34 - 3158: 5,-34 - 3159: 4,-34 - 3160: 3,-34 + 3140: 6,-34 + 3141: 5,-34 + 3142: 4,-34 + 3143: 3,-34 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -3075,11 +3054,11 @@ entities: 1103: 61,-18 1104: 62,-18 2096: 14,32 - 3565: -5,36 - 3566: -7,36 - 3567: -8,36 - 3568: -9,36 - 3569: -10,36 + 3548: -5,36 + 3549: -7,36 + 3550: -8,36 + 3551: -9,36 + 3552: -10,36 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale @@ -3161,8 +3140,8 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 3188: -33,-32 - 3189: -32,-32 + 3171: -33,-32 + 3172: -32,-32 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -3188,13 +3167,13 @@ entities: 1721: 62,-42 1722: 63,-42 1723: 61,-42 - 3149: 5,-32 - 3163: 3,-37 - 3164: 4,-37 - 3165: 6,-37 - 3166: 5,-37 - 3644: 56,-42 - 3645: 58,-42 + 3132: 5,-32 + 3146: 3,-37 + 3147: 4,-37 + 3148: 6,-37 + 3149: 5,-37 + 3627: 56,-42 + 3628: 58,-42 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -3224,16 +3203,16 @@ entities: 1000: 81,-4 2094: 14,34 2099: 14,31 - 3572: -10,34 + 3555: -10,34 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: 347: -2,23 - 2700: -2,-68 - 2701: -2,-69 - 2712: 2,-68 - 2713: 2,-70 + 2694: -2,-68 + 2695: -2,-69 + 2706: 2,-68 + 2707: 2,-70 - node: color: '#334E6D5A' id: HalfTileOverlayGreyscale270 @@ -3278,9 +3257,9 @@ entities: 2425: 35,-32 2426: 35,-33 2427: 35,-34 - 3076: 39,-49 - 3077: 39,-47 - 3078: 39,-46 + 3063: 39,-49 + 3064: 39,-47 + 3065: 39,-46 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -3310,7 +3289,7 @@ entities: 443: -42,-25 444: -42,-26 445: -42,-27 - 3180: -34,-30 + 3163: -34,-30 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -3319,8 +3298,8 @@ entities: 264: 65,-19 265: 65,-20 1731: 63,-41 - 3161: 2,-35 - 3162: 2,-36 + 3144: 2,-35 + 3145: 2,-36 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -3337,7 +3316,7 @@ entities: 1400: -12,39 1401: -12,40 1402: -12,41 - 3573: -11,35 + 3556: -11,35 - node: color: '#EFB34131' id: HalfTileOverlayGreyscale270 @@ -3414,15 +3393,15 @@ entities: 1112: -20,-18 1113: -20,-19 1114: -20,-20 - 3181: -31,-30 - 3208: -36,-32 - 3209: -36,-30 - 3210: -36,-29 - 3211: -36,-28 - 3212: -36,-27 - 3213: -36,-26 - 3214: -36,-25 - 3215: -36,-24 + 3164: -31,-30 + 3191: -36,-32 + 3192: -36,-30 + 3193: -36,-29 + 3194: -36,-28 + 3195: -36,-27 + 3196: -36,-26 + 3197: -36,-25 + 3198: -36,-24 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 @@ -3434,8 +3413,8 @@ entities: 268: 63,-21 269: 63,-22 1730: 51,-41 - 3155: 7,-36 - 3156: 7,-35 + 3138: 7,-36 + 3139: 7,-35 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -3467,17 +3446,17 @@ entities: 1068: 0,-27 2584: 4,-43 2585: 4,-42 - 2697: -3,-70 - 2698: -3,-69 - 2702: -1,-69 - 2703: -1,-70 - 2704: 0,-70 - 2705: 0,-69 - 2709: 1,-70 - 2710: 1,-69 - 2714: 3,-70 - 2715: 3,-69 - 2724: 5,-69 + 2691: -3,-70 + 2692: -3,-69 + 2696: -1,-69 + 2697: -1,-70 + 2698: 0,-70 + 2699: 0,-69 + 2703: 1,-70 + 2704: 1,-69 + 2708: 3,-70 + 2709: 3,-69 + 2718: 5,-69 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -3490,7 +3469,7 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 3655: 57,-52 + 3638: 57,-52 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -3523,8 +3502,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale decals: - 3043: 36,-43 - 3044: 37,-42 + 3030: 36,-43 + 3031: 37,-42 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -3693,37 +3672,37 @@ entities: 2183: -18,-6 2184: -18,-5 2185: -18,-4 - 2774: 19,12 - 2775: 19,13 - 2776: 19,14 - 2777: 19,15 - 2778: 20,15 - 2779: 21,15 - 2780: 22,15 - 2781: 23,15 - 2808: 8,17 - 2809: 8,16 - 2810: 8,15 - 2811: 8,14 - 2812: 8,13 - 2813: 8,12 - 2814: 8,10 - 2815: 8,11 - 2816: 8,9 - 2817: 8,8 - 2818: 8,7 - 2819: 8,6 - 2820: 8,5 - 2821: 8,4 - 2822: 8,3 - 3116: -47,-9 - 3117: -47,-8 - 3118: -47,-7 - 3119: -47,-6 - 3120: -46,-6 - 3121: -45,-6 - 3122: -44,-6 - 3123: -43,-6 + 2768: 19,12 + 2769: 19,13 + 2770: 19,14 + 2771: 19,15 + 2772: 20,15 + 2773: 21,15 + 2774: 22,15 + 2775: 23,15 + 2802: 8,17 + 2803: 8,16 + 2804: 8,15 + 2805: 8,14 + 2806: 8,13 + 2807: 8,12 + 2808: 8,10 + 2809: 8,11 + 2810: 8,9 + 2811: 8,8 + 2812: 8,7 + 2813: 8,6 + 2814: 8,5 + 2815: 8,4 + 2816: 8,3 + 3099: -47,-9 + 3100: -47,-8 + 3101: -47,-7 + 3102: -47,-6 + 3103: -46,-6 + 3104: -45,-6 + 3105: -44,-6 + 3106: -43,-6 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale @@ -3811,27 +3790,27 @@ entities: 2590: 6,-44 2591: 6,-42 2592: 6,-43 - 2666: -18,-69 - 2667: -17,-69 - 2668: -16,-69 - 2669: -15,-69 - 2670: -14,-69 - 2671: -13,-69 - 2672: -12,-69 - 2673: -11,-69 - 2674: -10,-69 - 3431: 1,-64 - 3432: 1,-63 - 3433: 1,-62 - 3434: 1,-61 - 3435: 1,-60 - 3436: 2,-60 - 3437: 3,-60 - 3455: 2,-52 - 3456: 2,-53 - 3457: 2,-54 - 3458: 3,-56 - 3459: 3,-55 + 2660: -18,-69 + 2661: -17,-69 + 2662: -16,-69 + 2663: -15,-69 + 2664: -14,-69 + 2665: -13,-69 + 2666: -12,-69 + 2667: -11,-69 + 2668: -10,-69 + 3414: 1,-64 + 3415: 1,-63 + 3416: 1,-62 + 3417: 1,-61 + 3418: 1,-60 + 3419: 2,-60 + 3420: 3,-60 + 3438: 2,-52 + 3439: 2,-53 + 3440: 2,-54 + 3441: 3,-56 + 3442: 3,-55 - node: color: '#F5DB9E96' id: QuarterTileOverlayGreyscale @@ -3888,8 +3867,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale180 decals: - 3045: 34,-41 - 3046: 35,-40 + 3032: 34,-41 + 3033: 35,-40 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -3913,7 +3892,7 @@ entities: 919: 41,-15 1555: 36,-25 1637: 39,-15 - 2960: 38,-15 + 2947: 38,-15 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale180 @@ -3953,20 +3932,20 @@ entities: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 3153: 3,-32 - 3154: 2,-32 + 3136: 3,-32 + 3137: 2,-32 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: 188: -31,-17 428: -27,-28 - 3216: -36,-23 - 3217: -35,-23 - 3218: -34,-23 - 3219: -32,-23 - 3220: -31,-23 - 3221: -33,-23 + 3199: -36,-23 + 3200: -35,-23 + 3201: -34,-23 + 3202: -32,-23 + 3203: -31,-23 + 3204: -33,-23 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 @@ -3984,7 +3963,7 @@ entities: 2381: -27,-39 2382: -28,-39 2383: -29,-39 - 3150: 4,-32 + 3133: 4,-32 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 @@ -4017,8 +3996,8 @@ entities: 2176: 0,-32 2177: 1,-32 2179: 7,-32 - 2786: 27,8 - 2787: 27,9 + 2780: 27,8 + 2781: 27,9 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 @@ -4074,29 +4053,29 @@ entities: 933: 0,-40 2504: 0,-58 2505: 1,-58 - 2675: -10,-71 - 2676: -11,-71 - 2677: -12,-71 - 2678: -13,-71 - 2679: -14,-71 - 2680: -15,-71 - 2681: -16,-71 - 2682: -17,-71 - 2683: -18,-71 - 2699: -3,-68 - 2706: -1,-68 - 2707: 0,-68 - 2711: 1,-68 - 2716: 3,-68 - 2720: 4,-70 - 2721: 4,-68 - 2722: 5,-70 - 2723: 5,-68 - 3438: 9,-64 - 3439: 9,-63 - 3440: 9,-62 - 3441: 9,-61 - 3442: 9,-60 + 2669: -10,-71 + 2670: -11,-71 + 2671: -12,-71 + 2672: -13,-71 + 2673: -14,-71 + 2674: -15,-71 + 2675: -16,-71 + 2676: -17,-71 + 2677: -18,-71 + 2693: -3,-68 + 2700: -1,-68 + 2701: 0,-68 + 2705: 1,-68 + 2710: 3,-68 + 2714: 4,-70 + 2715: 4,-68 + 2716: 5,-70 + 2717: 5,-68 + 3421: 9,-64 + 3422: 9,-63 + 3423: 9,-62 + 3424: 9,-61 + 3425: 9,-60 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 @@ -4129,8 +4108,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale270 decals: - 3047: 36,-40 - 3048: 37,-41 + 3034: 36,-40 + 3035: 37,-41 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -4166,9 +4145,9 @@ entities: 1853: -66,-6 2278: -78,-6 2279: -79,-6 - 3354: 12,-32 - 3355: 11,-32 - 3356: 10,-32 + 3337: 12,-32 + 3338: 11,-32 + 3339: 10,-32 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 @@ -4217,8 +4196,8 @@ entities: 732: 38,-59 733: 38,-58 734: 38,-57 - 3152: 7,-32 - 3410: 8,-32 + 3135: 7,-32 + 3393: 8,-32 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 @@ -4260,7 +4239,7 @@ entities: 1550: 50,-27 1671: 56,-15 1674: 59,-15 - 3151: 6,-32 + 3134: 6,-32 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 @@ -4318,15 +4297,15 @@ entities: 2339: 51,-10 2340: 51,-9 2344: 46,-12 - 2788: 23,8 - 2789: 22,8 - 2790: 21,8 - 2791: 20,8 - 2792: 20,9 - 2793: 19,9 - 3403: 14,-27 - 3404: 14,-26 - 3405: 14,-25 + 2782: 23,8 + 2783: 22,8 + 2784: 21,8 + 2785: 20,8 + 2786: 20,9 + 2787: 19,9 + 3386: 14,-27 + 3387: 14,-26 + 3388: 14,-25 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 @@ -4399,8 +4378,8 @@ entities: 2501: -4,-58 2502: -3,-58 2503: -2,-58 - 2708: 0,-70 - 2717: 4,-69 + 2702: 0,-70 + 2711: 4,-69 - node: color: '#F5DB9E96' id: QuarterTileOverlayGreyscale270 @@ -4428,8 +4407,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale90 decals: - 3049: 35,-43 - 3050: 34,-42 + 3036: 35,-43 + 3037: 34,-42 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -4466,10 +4445,10 @@ entities: 2369: -24,-37 2370: -24,-38 2371: -24,-39 - 3222: -31,-19 - 3223: -32,-19 - 3224: -33,-19 - 3225: -34,-19 + 3205: -31,-19 + 3206: -32,-19 + 3207: -33,-19 + 3208: -34,-19 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 @@ -4580,39 +4559,39 @@ entities: 2346: 44,-13 2347: 43,-13 2348: 42,-13 - 2782: 25,15 - 2783: 26,15 - 2784: 27,15 - 2785: 27,14 - 2794: 17,12 - 2795: 16,12 - 2796: 15,12 - 2797: 14,12 - 2798: 13,12 - 2799: 12,12 - 2800: 11,12 - 2801: 10,12 - 2802: 9,12 - 2803: 9,13 - 2804: 9,14 - 2805: 9,15 - 2806: 9,16 - 2807: 9,17 - 3124: -42,-6 - 3125: -41,-6 - 3126: -40,-6 - 3127: -40,-6 - 3128: -39,-6 - 3129: -38,-6 - 3130: -38,-7 - 3131: -38,-8 - 3132: -38,-9 - 3133: -38,-10 - 3134: -38,-11 - 3135: -38,-12 - 3136: -38,-13 - 3137: -38,-14 - 3409: 8,-30 + 2776: 25,15 + 2777: 26,15 + 2778: 27,15 + 2779: 27,14 + 2788: 17,12 + 2789: 16,12 + 2790: 15,12 + 2791: 14,12 + 2792: 13,12 + 2793: 12,12 + 2794: 11,12 + 2795: 10,12 + 2796: 9,12 + 2797: 9,13 + 2798: 9,14 + 2799: 9,15 + 2800: 9,16 + 2801: 9,17 + 3107: -42,-6 + 3108: -41,-6 + 3109: -40,-6 + 3110: -40,-6 + 3111: -39,-6 + 3112: -38,-6 + 3113: -38,-7 + 3114: -38,-8 + 3115: -38,-9 + 3116: -38,-10 + 3117: -38,-11 + 3118: -38,-12 + 3119: -38,-13 + 3120: -38,-14 + 3392: 8,-30 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 @@ -4704,20 +4683,20 @@ entities: 2510: 0,-53 2511: 0,-52 2589: 4,-44 - 2718: 4,-69 - 2719: 4,-70 - 3443: 9,-58 - 3444: 9,-57 - 3445: 9,-56 - 3446: 9,-55 - 3447: 9,-54 - 3448: 9,-53 - 3449: 9,-52 - 3450: 8,-52 - 3451: 7,-52 - 3452: 6,-52 - 3453: 5,-52 - 3454: 4,-52 + 2712: 4,-69 + 2713: 4,-70 + 3426: 9,-58 + 3427: 9,-57 + 3428: 9,-56 + 3429: 9,-55 + 3430: 9,-54 + 3431: 9,-53 + 3432: 9,-52 + 3433: 8,-52 + 3434: 7,-52 + 3435: 6,-52 + 3436: 5,-52 + 3437: 4,-52 - node: color: '#F9FFFEFF' id: Remains @@ -4773,7 +4752,7 @@ entities: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale decals: - 3042: 36,-42 + 3029: 36,-42 - node: color: '#52B4E931' id: ThreeQuarterTileOverlayGreyscale @@ -4799,7 +4778,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 430: -30,-36 - 3183: -34,-29 + 3166: -34,-29 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale @@ -4809,7 +4788,7 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 3170: 2,-34 + 3153: 2,-34 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale @@ -4822,7 +4801,7 @@ entities: 396: -62,5 985: 76,-2 1096: 57,-17 - 3570: -11,36 + 3553: -11,36 - node: color: '#EFB34131' id: ThreeQuarterTileOverlayGreyscale @@ -4838,7 +4817,7 @@ entities: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3041: 35,-41 + 3028: 35,-41 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -4861,7 +4840,7 @@ entities: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3185: -31,-32 + 3168: -31,-32 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale180 @@ -4872,7 +4851,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 883: 71,-16 - 3169: 7,-37 + 3152: 7,-37 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale180 @@ -4890,12 +4869,12 @@ entities: decals: 343: -1,23 1065: 0,-28 - 3429: 1,-26 + 3412: 1,-26 - node: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3039: 36,-41 + 3026: 36,-41 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 @@ -4903,7 +4882,7 @@ entities: 335: -11,23 1543: 48,-29 2411: 28,-37 - 3075: 39,-50 + 3062: 39,-50 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 @@ -4915,7 +4894,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 429: -30,-39 - 3184: -34,-32 + 3167: -34,-32 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale270 @@ -4926,7 +4905,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 882: 61,-16 - 3168: 2,-37 + 3151: 2,-37 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale270 @@ -4938,14 +4917,14 @@ entities: decals: 393: -62,3 988: 76,-4 - 3571: -11,34 + 3554: -11,34 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: 344: -3,23 1066: -2,-28 - 3430: -3,-26 + 3413: -3,-26 - node: color: '#334E6D5A' id: ThreeQuarterTileOverlayGreyscale90 @@ -4956,7 +4935,7 @@ entities: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3040: 35,-42 + 3027: 35,-42 - node: color: '#52B4E931' id: ThreeQuarterTileOverlayGreyscale90 @@ -4984,7 +4963,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 1110: -20,-16 - 3182: -31,-29 + 3165: -31,-29 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale90 @@ -4994,7 +4973,7 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3167: 7,-34 + 3150: 7,-34 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale90 @@ -5060,46 +5039,46 @@ entities: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 2964: 42,-18 + 2951: 42,-18 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 2907: 9,-71 + 2894: 9,-71 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 2908: -8,-71 + 2895: -8,-71 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 3532: 23,19 + 3515: 23,19 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 3533: 25,19 + 3516: 25,19 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: 1608: 19,-19 - 3530: 23,17 + 3513: 23,17 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: 1615: 21,-21 - 3534: 25,17 + 3517: 25,17 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE decals: 1282: 44,-21 1283: 46,-21 - 2966: 42,-21 + 2953: 42,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW @@ -5113,8 +5092,8 @@ entities: 1073: -3,-30 1665: 51,-21 2314: -73,-4 - 3109: 13,-77 - 3529: -13,-63 + 3093: 13,-77 + 3512: -13,-63 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -5127,8 +5106,8 @@ entities: 2291: -79,-6 2312: -69,-4 2313: -76,-4 - 3108: 17,-77 - 3528: -11,-63 + 3092: 17,-77 + 3511: -11,-63 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -5138,7 +5117,7 @@ entities: 1663: 51,-17 2041: 22,-90 2317: -73,8 - 3107: 13,-75 + 3091: 13,-75 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -5154,12 +5133,12 @@ entities: 2290: -79,-4 2315: -69,8 2316: -76,8 - 3110: 17,-75 + 3094: 17,-75 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleN decals: - 3363: 46,-17 + 3346: 46,-17 - node: color: '#DE3A3A96' id: WarnFullGreyscale @@ -5204,9 +5183,9 @@ entities: 2040: 22,-91 2476: 8,-49 2477: 8,-48 - 3105: 13,-76 - 3527: -13,-62 - 3531: 23,18 + 3089: 13,-76 + 3510: -13,-62 + 3514: 23,18 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5217,7 +5196,7 @@ entities: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 3020: 42,-24 + 3007: 42,-24 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE @@ -5229,9 +5208,9 @@ entities: 1275: 44,-19 1276: 44,-18 1277: 44,-17 - 2665: -10,-75 - 2962: 42,-20 - 2963: 42,-19 + 2659: -10,-75 + 2949: 42,-20 + 2950: 42,-19 - node: color: '#334E6DC8' id: WarnLineGreyscaleN @@ -5242,7 +5221,7 @@ entities: id: WarnLineGreyscaleN decals: 1563: 41,-23 - 2961: 38,-22 + 2948: 38,-22 - node: color: '#A4610696' id: WarnLineGreyscaleN @@ -5266,12 +5245,12 @@ entities: 1398: -24,45 2243: -8,27 2244: -9,27 - 3548: -12,27 + 3531: -12,27 - node: color: '#EFB34196' id: WarnLineGreyscaleN decals: - 2898: -7,-68 + 2885: -7,-68 - node: color: '#F5DB9E96' id: WarnLineGreyscaleN @@ -5290,15 +5269,15 @@ entities: 2487: -2,-35 2512: 0,-52 2513: -2,-52 - 2692: 9,-73 - 2693: 8,-73 - 2694: 3,-73 - 2695: 4,-73 - 2823: 8,16 - 2824: 9,16 - 2902: 3,-66 - 2903: 8,-66 - 2965: 41,-18 + 2686: 9,-73 + 2687: 8,-73 + 2688: 3,-73 + 2689: 4,-73 + 2817: 8,16 + 2818: 9,16 + 2889: 3,-66 + 2890: 8,-66 + 2952: 41,-18 - node: color: '#334E6DC8' id: WarnLineGreyscaleS @@ -5338,10 +5317,10 @@ entities: 1393: -6,43 2092: 6,26 2093: 4,26 - 3538: -9,34 - 3539: -8,34 - 3547: -14,26 - 3583: -15,34 + 3521: -9,34 + 3522: -8,34 + 3530: -14,26 + 3566: -15,34 - node: color: '#EFB34196' id: WarnLineGreyscaleS @@ -5358,21 +5337,21 @@ entities: 2488: 0,-33 2489: -1,-33 2490: -2,-33 - 2688: 9,-76 - 2689: 5,-76 - 2690: 4,-76 - 2691: 3,-76 - 2904: 3,-71 - 2905: 4,-71 - 2906: 8,-71 - 2911: -7,-71 - 2912: -6,-71 - 2913: -5,-71 - 3364: 46,-21 - 3365: 45,-21 - 3366: 44,-21 - 3367: 43,-21 - 3368: 42,-21 + 2682: 9,-76 + 2683: 5,-76 + 2684: 4,-76 + 2685: 3,-76 + 2891: 3,-71 + 2892: 4,-71 + 2893: 8,-71 + 2898: -7,-71 + 2899: -6,-71 + 2900: -5,-71 + 3347: 46,-21 + 3348: 45,-21 + 3349: 44,-21 + 3350: 43,-21 + 3351: 42,-21 - node: color: '#EFB34196' id: WarnLineGreyscaleW @@ -5392,9 +5371,9 @@ entities: 2395: 75,-15 2396: 75,-14 2397: 75,-13 - 2664: -8,-75 - 2909: -8,-69 - 2910: -8,-70 + 2658: -8,-75 + 2896: -8,-69 + 2897: -8,-70 - node: color: '#FFFFFFFF' id: WarnLineN @@ -5462,21 +5441,14 @@ entities: 2465: 11,-46 2466: 10,-46 2467: 9,-46 - 2606: 1,-79 - 2607: 0,-79 - 2608: -1,-79 - 2609: -2,-79 - 2610: -3,-79 - 2825: 18,-87 - 2826: 17,-87 - 2827: 16,-87 - 2828: 15,-87 - 2829: 14,-87 - 2830: 13,-87 - 2831: 12,-87 - 3102: 14,-75 - 3103: 15,-75 - 3104: 16,-75 + 2600: 1,-79 + 2601: 0,-79 + 2602: -1,-79 + 2603: -2,-79 + 2604: -3,-79 + 3086: 14,-75 + 3087: 15,-75 + 3088: 16,-75 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5537,12 +5509,12 @@ entities: 2393: -30,-39 2474: 8,-49 2475: 8,-48 - 3106: 17,-76 - 3526: -11,-62 - 3535: 25,18 - 3584: -11,34 - 3585: -11,35 - 3586: -11,36 + 3090: 17,-76 + 3509: -11,-62 + 3518: 25,18 + 3567: -11,34 + 3568: -11,35 + 3569: -11,36 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5618,70 +5590,70 @@ entities: 2471: 11,-46 2472: 10,-46 2473: 9,-46 - 2832: 13,-84 - 2833: 14,-84 - 2834: 15,-84 - 2835: 16,-84 - 2836: 17,-84 - 2837: 18,-84 - 3099: 14,-77 - 3100: 15,-77 - 3101: 16,-77 - 3525: -12,-63 + 2819: 13,-84 + 2820: 14,-84 + 2821: 15,-84 + 2822: 16,-84 + 2823: 17,-84 + 2824: 18,-84 + 3083: 14,-77 + 3084: 15,-77 + 3085: 16,-77 + 3508: -12,-63 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 3201: -31,-25 - 3415: 12,-26 + 3184: -31,-25 + 3398: 12,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 3204: -34,-25 - 3422: 6,-26 + 3187: -34,-25 + 3405: 6,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 2443: 12,-37 - 3416: 12,-27 + 3399: 12,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 2444: 10,-37 - 3421: 6,-27 + 3404: 6,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 3412: 9,-25 + 3395: 9,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS decals: - 3411: 9,-28 + 3394: 9,-28 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 3428: 9,-26 + 3411: 9,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 3427: 9,-26 + 3410: 9,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 3426: 9,-27 + 3409: 9,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 3425: 9,-27 + 3408: 9,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -5694,17 +5666,17 @@ entities: 1233: 11,-15 1234: 11,-14 1235: 11,-13 - 2971: 12,-36 - 3198: -31,-28 - 3199: -31,-27 - 3200: -31,-26 - 3518: -12,-28 - 3519: -12,-27 - 3520: -12,-26 - 3521: -12,-25 - 3522: -12,-24 - 3523: -12,-23 - 3524: -12,-22 + 2958: 12,-36 + 3181: -31,-28 + 3182: -31,-27 + 3183: -31,-26 + 3501: -12,-28 + 3502: -12,-27 + 3503: -12,-26 + 3504: -12,-25 + 3505: -12,-24 + 3506: -12,-23 + 3507: -12,-22 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -5728,16 +5700,16 @@ entities: 1642: 55,-38 1643: 56,-38 1644: 57,-38 - 3194: -34,-29 - 3195: -33,-29 - 3196: -32,-29 - 3197: -31,-29 - 3202: -32,-25 - 3203: -33,-25 - 3413: 10,-26 - 3414: 11,-26 - 3423: 7,-26 - 3424: 8,-26 + 3177: -34,-29 + 3178: -33,-29 + 3179: -32,-29 + 3180: -31,-29 + 3185: -32,-25 + 3186: -33,-25 + 3396: 10,-26 + 3397: 11,-26 + 3406: 7,-26 + 3407: 8,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -5752,27 +5724,27 @@ entities: 1351: -15,53 1352: -16,53 2445: 11,-37 - 3417: 11,-27 - 3418: 10,-27 - 3419: 8,-27 - 3420: 7,-27 + 3400: 11,-27 + 3401: 10,-27 + 3402: 8,-27 + 3403: 7,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 2838: 32,-1 - 2839: 32,0 - 2972: 10,-36 - 3205: -34,-28 - 3206: -34,-27 - 3207: -34,-26 - 3511: -8,-28 - 3512: -8,-27 - 3513: -8,-26 - 3514: -8,-25 - 3515: -8,-24 - 3516: -8,-23 - 3517: -8,-22 + 2825: 32,-1 + 2826: 32,0 + 2959: 10,-36 + 3188: -34,-28 + 3189: -34,-27 + 3190: -34,-26 + 3494: -8,-28 + 3495: -8,-27 + 3496: -8,-26 + 3497: -8,-25 + 3498: -8,-24 + 3499: -8,-23 + 3500: -8,-22 - node: color: '#FFFFFFFF' id: bushsnowa2 @@ -5797,9 +5769,9 @@ entities: color: '#FFFFFFFF' id: thinline decals: - 3661: 32.88275,8.297449 - 3662: 32.88275,9.188074 - 3663: 32.88275,10.078699 + 3644: 32.88275,8.297449 + 3645: 32.88275,9.188074 + 3646: 32.88275,10.078699 - type: GridAtmosphere version: 2 data: @@ -6453,7 +6425,8 @@ entities: 0,8: 0: 65535 0,9: - 0: 65535 + 0: 32767 + 3: 32768 0,10: 0: 65535 0,11: @@ -6461,7 +6434,8 @@ entities: 1,8: 0: 65535 1,9: - 0: 65535 + 0: 61439 + 3: 4096 1,10: 0: 65535 1,11: @@ -6540,7 +6514,7 @@ entities: 0: 52462 8,0: 0: 65527 - 3: 8 + 4: 8 8,1: 0: 65295 8,2: @@ -6548,7 +6522,7 @@ entities: 8,3: 0: 65535 9,0: - 3: 15 + 4: 15 0: 65520 9,1: 0: 65487 @@ -6557,7 +6531,7 @@ entities: 9,3: 0: 32767 10,0: - 3: 1 + 4: 1 0: 65534 10,1: 0: 65535 @@ -6901,7 +6875,7 @@ entities: 0: 65535 8,-1: 0: 30591 - 3: 34944 + 4: 34944 9,-4: 0: 65535 9,-3: @@ -6910,7 +6884,7 @@ entities: 0: 65535 9,-1: 0: 15 - 3: 65520 + 4: 65520 10,-4: 0: 65535 10,-3: @@ -6919,7 +6893,7 @@ entities: 0: 65535 10,-1: 0: 61167 - 3: 4368 + 4: 4368 11,-4: 0: 65535 11,-3: @@ -7746,7 +7720,7 @@ entities: 0: 65535 4,-17: 0: 34959 - 4: 30576 + 5: 30576 5,-20: 0: 62813 5,-19: @@ -7946,14 +7920,15 @@ entities: 2,-17: 0: 65535 3,-20: - 0: 65535 + 0: 64511 + 6: 1024 3,-19: 0: 65535 3,-18: 0: 65535 3,-17: 0: 34959 - 5: 30576 + 7: 30576 0,-24: 0: 65416 0,-23: @@ -7981,7 +7956,8 @@ entities: 3,-23: 0: 61440 3,-22: - 0: 65535 + 0: 63487 + 8: 2048 -4,-24: 0: 310 -4,-23: @@ -8309,7 +8285,8 @@ entities: -10,-9: 0: 63624 4,-20: - 0: 65535 + 0: 65279 + 6: 256 5,-18: 0: 4607 -16,5: @@ -8425,11 +8402,14 @@ entities: 2,-24: 0: 12544 3,-21: - 0: 65535 + 0: 64511 + 9: 1024 4,-22: 0: 65535 4,-21: - 0: 65535 + 6: 1 + 0: 65278 + 9: 256 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -8476,6 +8456,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -8506,6 +8501,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14987 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -8521,6 +8531,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14993 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: Joint joints: @@ -11408,7 +11448,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -1003.90155 + secondsUntilStateChange: -3331.5208 state: Opening - type: DeviceLinkSource lastSignals: @@ -14671,6 +14711,17 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,-3.5 parent: 8364 + - uid: 7209 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 8364 + - uid: 9934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 8364 - uid: 12475 components: - type: Transform @@ -14689,6 +14740,12 @@ entities: rot: 3.141592653589793 rad pos: -70.5,-2.5 parent: 8364 + - uid: 13399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,1.5 + parent: 8364 - uid: 13779 components: - type: Transform @@ -14740,23 +14797,6 @@ entities: - type: Transform pos: -0.5,-0.5 parent: 11906 -- proto: AtmosDeviceFanTiny - entities: - - uid: 7209 - components: - - type: Transform - pos: 36.5,-3.5 - parent: 8364 - - uid: 9934 - components: - - type: Transform - pos: 36.5,1.5 - parent: 8364 - - uid: 13399 - components: - - type: Transform - pos: 41.5,-0.5 - parent: 8364 - proto: AtmosFixBlockerMarker entities: - uid: 110 @@ -17003,6 +17043,11 @@ entities: - type: Transform pos: 9.5,-77.5 parent: 8364 + - uid: 144 + components: + - type: Transform + pos: 14.5,-77.5 + parent: 8364 - uid: 346 components: - type: Transform @@ -17608,6 +17653,11 @@ entities: - type: Transform pos: 34.5,-64.5 parent: 8364 + - uid: 3681 + components: + - type: Transform + pos: 11.5,-74.5 + parent: 8364 - uid: 3699 components: - type: Transform @@ -17666,12 +17716,12 @@ entities: - uid: 3735 components: - type: Transform - pos: 18.5,-84.5 + pos: 11.5,-72.5 parent: 8364 - uid: 3736 components: - type: Transform - pos: 18.5,-85.5 + pos: 11.5,-71.5 parent: 8364 - uid: 3745 components: @@ -17698,16 +17748,46 @@ entities: - type: Transform pos: 4.5,-70.5 parent: 8364 + - uid: 3820 + components: + - type: Transform + pos: 11.5,-79.5 + parent: 8364 + - uid: 3822 + components: + - type: Transform + pos: 11.5,-73.5 + parent: 8364 + - uid: 3823 + components: + - type: Transform + pos: 11.5,-77.5 + parent: 8364 + - uid: 3826 + components: + - type: Transform + pos: 12.5,-77.5 + parent: 8364 - uid: 3827 components: - type: Transform pos: 5.5,-70.5 parent: 8364 + - uid: 3828 + components: + - type: Transform + pos: 12.5,-71.5 + parent: 8364 - uid: 3839 components: - type: Transform pos: -13.5,-68.5 parent: 8364 + - uid: 3864 + components: + - type: Transform + pos: 11.5,-80.5 + parent: 8364 - uid: 3879 components: - type: Transform @@ -17778,20 +17858,35 @@ entities: - type: Transform pos: 2.5,-63.5 parent: 8364 + - uid: 4005 + components: + - type: Transform + pos: 13.5,-77.5 + parent: 8364 - uid: 4031 components: - type: Transform pos: -19.5,-72.5 parent: 8364 + - uid: 4032 + components: + - type: Transform + pos: 11.5,-78.5 + parent: 8364 - uid: 4040 components: - type: Transform pos: 26.5,-71.5 parent: 8364 + - uid: 4042 + components: + - type: Transform + pos: 11.5,-76.5 + parent: 8364 - uid: 4048 components: - type: Transform - pos: 12.5,-81.5 + pos: 11.5,-75.5 parent: 8364 - uid: 4058 components: @@ -17836,7 +17931,7 @@ entities: - uid: 4699 components: - type: Transform - pos: 12.5,-79.5 + pos: 18.5,-77.5 parent: 8364 - uid: 4710 components: @@ -27578,11 +27673,6 @@ entities: - type: Transform pos: -2.5,11.5 parent: 8364 - - uid: 13665 - components: - - type: Transform - pos: 12.5,-80.5 - parent: 8364 - uid: 13693 components: - type: Transform @@ -32238,11 +32328,6 @@ entities: - type: Transform pos: 13.5,-71.5 parent: 8364 - - uid: 16825 - components: - - type: Transform - pos: 18.5,-86.5 - parent: 8364 - uid: 16833 components: - type: Transform @@ -32313,16 +32398,6 @@ entities: - type: Transform pos: 6.5,-53.5 parent: 8364 - - uid: 16914 - components: - - type: Transform - pos: 19.5,-78.5 - parent: 8364 - - uid: 16915 - components: - - type: Transform - pos: 19.5,-75.5 - parent: 8364 - uid: 16917 components: - type: Transform @@ -32398,11 +32473,6 @@ entities: - type: Transform pos: 10.5,-46.5 parent: 8364 - - uid: 17002 - components: - - type: Transform - pos: 19.5,-79.5 - parent: 8364 - uid: 17016 components: - type: Transform @@ -32448,11 +32518,6 @@ entities: - type: Transform pos: 7.5,-45.5 parent: 8364 - - uid: 17088 - components: - - type: Transform - pos: 18.5,-81.5 - parent: 8364 - uid: 17096 components: - type: Transform @@ -32703,11 +32768,6 @@ entities: - type: Transform pos: 7.5,-50.5 parent: 8364 - - uid: 17383 - components: - - type: Transform - pos: 12.5,-74.5 - parent: 8364 - uid: 17392 components: - type: Transform @@ -33003,16 +33063,6 @@ entities: - type: Transform pos: 5.5,-49.5 parent: 8364 - - uid: 17570 - components: - - type: Transform - pos: 19.5,-81.5 - parent: 8364 - - uid: 17571 - components: - - type: Transform - pos: 19.5,-80.5 - parent: 8364 - uid: 17596 components: - type: Transform @@ -33038,11 +33088,6 @@ entities: - type: Transform pos: -16.5,-71.5 parent: 8364 - - uid: 17781 - components: - - type: Transform - pos: 19.5,-74.5 - parent: 8364 - uid: 17782 components: - type: Transform @@ -35158,11 +35203,6 @@ entities: - type: Transform pos: 41.5,-24.5 parent: 8364 - - uid: 18758 - components: - - type: Transform - pos: 12.5,-72.5 - parent: 8364 - uid: 18760 components: - type: Transform @@ -36493,11 +36533,6 @@ entities: - type: Transform pos: 77.5,-57.5 parent: 8364 - - uid: 20006 - components: - - type: Transform - pos: 18.5,-82.5 - parent: 8364 - uid: 20014 components: - type: Transform @@ -38328,21 +38363,6 @@ entities: - type: Transform pos: 17.5,31.5 parent: 8364 - - uid: 22758 - components: - - type: Transform - pos: 12.5,-77.5 - parent: 8364 - - uid: 22764 - components: - - type: Transform - pos: 12.5,-76.5 - parent: 8364 - - uid: 22770 - components: - - type: Transform - pos: 12.5,-75.5 - parent: 8364 - uid: 22818 components: - type: Transform @@ -38368,11 +38388,6 @@ entities: - type: Transform pos: 25.5,-71.5 parent: 8364 - - uid: 22858 - components: - - type: Transform - pos: 18.5,-77.5 - parent: 8364 - uid: 22931 components: - type: Transform @@ -38398,21 +38413,6 @@ entities: - type: Transform pos: 18.5,-71.5 parent: 8364 - - uid: 22975 - components: - - type: Transform - pos: 12.5,-78.5 - parent: 8364 - - uid: 22976 - components: - - type: Transform - pos: 12.5,-73.5 - parent: 8364 - - uid: 22977 - components: - - type: Transform - pos: 12.5,-71.5 - parent: 8364 - uid: 22986 components: - type: Transform @@ -38643,16 +38643,6 @@ entities: - type: Transform pos: -11.5,-77.5 parent: 8364 - - uid: 26627 - components: - - type: Transform - pos: 19.5,-77.5 - parent: 8364 - - uid: 26628 - components: - - type: Transform - pos: 19.5,-76.5 - parent: 8364 - uid: 26629 components: - type: Transform @@ -68529,6 +68519,22 @@ entities: - type: Transform pos: 66.509186,-76.72045 parent: 8364 +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 20856 + components: + - type: Transform + parent: 11965 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20857 + components: + - type: Transform + parent: 17151 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterHoodieGrey entities: - uid: 21633 @@ -85301,14 +85307,6 @@ entities: - type: Transform pos: 15.5,-52.5 parent: 8364 - - uid: 3823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-85.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 12676 components: - type: Transform @@ -85327,6 +85325,14 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-64.5 parent: 8364 + - uid: 16540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-84.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 16760 components: - type: Transform @@ -85351,6 +85357,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 17031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-84.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17222 components: - type: Transform @@ -85383,22 +85397,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#B3A234FF' - - uid: 17673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-84.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-86.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 20140 components: - type: Transform @@ -85464,22 +85462,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 3822 + - uid: 4140 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-73.5 + pos: 10.5,-47.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4140 + color: '#0335FCFF' + - uid: 4508 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-47.5 + pos: 16.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#947507FF' - uid: 4512 components: - type: Transform @@ -85534,14 +85532,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-86.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4561 components: - type: Transform @@ -85558,6 +85548,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 4563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 4572 components: - type: Transform @@ -85565,6 +85563,36 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 4610 + components: + - type: Transform + pos: 14.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 4678 + components: + - type: Transform + pos: 14.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5202 components: - type: Transform @@ -85939,30 +85967,38 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15876 + - uid: 15880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-72.5 + rot: 3.141592653589793 rad + pos: 14.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15877 + color: '#947507FF' + - uid: 15881 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-76.5 + rot: 1.5707963267948966 rad + pos: 16.5,-72.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 15879 + - uid: 15890 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-76.5 + pos: 18.5,-78.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' + - uid: 15892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-78.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15898 components: - type: Transform @@ -86010,14 +86046,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 16880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-86.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 16882 components: - type: Transform @@ -86033,14 +86061,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 16936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 16988 components: - type: Transform @@ -86072,28 +86092,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 17029 - components: - - type: Transform - pos: 14.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17057 - components: - - type: Transform - pos: 17.5,-84.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 17095 components: - type: Transform @@ -86154,13 +86152,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17156 - components: - - type: Transform - pos: 17.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 17203 components: - type: Transform @@ -86238,37 +86229,38 @@ entities: rot: 3.141592653589793 rad pos: -44.5,15.5 parent: 8364 - - uid: 17365 + - uid: 17384 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-77.5 + pos: 21.5,-40.5 parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17384 + - uid: 17565 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-40.5 + pos: 17.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17564 + color: '#03FCD3FF' + - uid: 17675 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-82.5 + pos: 14.5,-85.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17607 + color: '#947507FF' + - uid: 17704 components: - type: Transform - pos: 15.5,-82.5 + rot: -1.5707963267948966 rad + pos: 16.5,-85.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 18600 components: - type: Transform @@ -86285,14 +86277,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 19073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 19247 components: - type: Transform @@ -86307,22 +86291,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 20124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-86.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 20136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-83.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 20202 components: - type: Transform @@ -86356,14 +86324,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-33.5 parent: 8364 - - uid: 22736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 22744 components: - type: Transform @@ -87209,13 +87169,6 @@ entities: parent: 8364 - proto: GasPipeFourway entities: - - uid: 5240 - components: - - type: Transform - pos: 14.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 5316 components: - type: Transform @@ -87574,14 +87527,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-79.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 750 components: - type: Transform @@ -87634,14 +87579,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 3681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-78.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 3682 components: - type: Transform @@ -87714,30 +87651,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 3820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 3837 components: - type: Transform @@ -87754,6 +87667,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 3865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 3878 components: - type: Transform @@ -87911,6 +87832,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 4136 + components: + - type: Transform + pos: 17.5,-83.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 4147 components: - type: Transform @@ -87982,6 +87910,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 4228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 4498 components: - type: Transform @@ -87995,14 +87931,14 @@ entities: pos: 17.5,-82.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - uid: 4502 components: - type: Transform pos: 13.5,-82.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4509 components: - type: Transform @@ -88080,11 +88016,10 @@ entities: - uid: 4538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-73.5 + pos: 15.5,-83.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#947507FF' - uid: 4539 components: - type: Transform @@ -88099,19 +88034,32 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4541 + - uid: 4559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-74.5 + rot: 3.141592653589793 rad + pos: 19.5,-72.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4559 + color: '#947507FF' + - uid: 4560 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-72.5 + pos: 16.5,-84.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 4564 + components: + - type: Transform + pos: 15.5,-82.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 4565 + components: + - type: Transform + pos: 14.5,-82.5 parent: 8364 - type: AtmosPipeColor color: '#947507FF' @@ -88139,6 +88087,28 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 4612 + components: + - type: Transform + pos: 17.5,-79.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 4648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 4650 + components: + - type: Transform + pos: 16.5,-83.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - uid: 4680 components: - type: Transform @@ -88150,10 +88120,11 @@ entities: - uid: 4684 components: - type: Transform - pos: 14.5,-74.5 + rot: -1.5707963267948966 rad + pos: 26.5,-72.5 parent: 8364 - type: AtmosPipeColor - color: '#EB2828FF' + color: '#03FCD3FF' - uid: 5068 components: - type: Transform @@ -89381,11 +89352,26 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 13665 + components: + - type: Transform + pos: 13.5,-83.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 14087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-76.5 + rot: -1.5707963267948966 rad + pos: 19.5,-72.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' @@ -89437,60 +89423,77 @@ entities: - uid: 15543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-75.5 + rot: -1.5707963267948966 rad + pos: 18.5,-72.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 15544 components: - type: Transform - pos: 13.5,-73.5 + rot: 3.141592653589793 rad + pos: 14.5,-76.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15546 + color: '#03FCD3FF' + - uid: 15876 + components: + - type: Transform + pos: 14.5,-84.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15877 + components: + - type: Transform + pos: 14.5,-74.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15878 components: - type: Transform pos: 13.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15881 + color: '#990000FF' + - uid: 15879 components: - type: Transform - pos: 17.5,-75.5 + pos: 13.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 15882 components: - type: Transform - pos: 17.5,-74.5 + pos: 16.5,-74.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 15883 components: - type: Transform - pos: 17.5,-73.5 + pos: 13.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15890 + color: '#990000FF' + - uid: 15889 components: - type: Transform - pos: 12.5,-79.5 + rot: -1.5707963267948966 rad + pos: 22.5,-72.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - uid: 15891 components: - type: Transform - pos: 12.5,-78.5 + rot: -1.5707963267948966 rad + pos: 21.5,-72.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - uid: 16511 components: - type: Transform @@ -89607,6 +89610,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#3AB334FF' + - uid: 16825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 16888 components: - type: Transform @@ -89639,6 +89658,29 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 16914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-76.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16936 + components: + - type: Transform + pos: 17.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 16984 components: - type: Transform @@ -89663,6 +89705,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 17002 + components: + - type: Transform + pos: 13.5,-76.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17003 components: - type: Transform @@ -89718,13 +89767,28 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 17028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 17029 + components: + - type: Transform + pos: 17.5,-76.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 17030 components: - type: Transform - pos: 16.5,-74.5 + pos: 13.5,-77.5 parent: 8364 - type: AtmosPipeColor - color: '#28EBD7FF' + color: '#990000FF' - uid: 17047 components: - type: Transform @@ -89764,6 +89828,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 17057 + components: + - type: Transform + pos: 14.5,-83.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - uid: 17083 components: - type: Transform @@ -90017,6 +90088,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 17212 + components: + - type: Transform + pos: 16.5,-82.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - uid: 17213 components: - type: Transform @@ -90304,6 +90382,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 17383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-74.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 17466 components: - type: Transform @@ -90344,14 +90430,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17565 + - uid: 17564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-81.5 + pos: 15.5,-80.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 17569 components: - type: Transform @@ -90423,37 +90508,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 17704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 17707 - components: - - type: Transform - pos: 15.5,-83.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 17766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 17794 components: - type: Transform @@ -90594,13 +90648,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 19953 - components: - - type: Transform - pos: 13.5,-75.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 19957 components: - type: Transform @@ -90609,22 +90656,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 20068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-83.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 20069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-83.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 20125 components: - type: Transform @@ -90641,14 +90672,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 20135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-83.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 20153 components: - type: Transform @@ -90739,14 +90762,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 22747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 22749 components: - type: Transform @@ -90755,14 +90770,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 22750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 22760 components: - type: Transform @@ -91138,14 +91145,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 22921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 22922 components: - type: Transform @@ -106072,22 +106071,6 @@ entities: - type: Transform pos: 22.5,-92.5 parent: 8364 - - uid: 27425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-84.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 27426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-86.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 27548 components: - type: Transform @@ -106178,42 +106161,26 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-83.5 + pos: 13.5,-80.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4565 + color: '#990000FF' + - uid: 4541 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-77.5 + pos: 17.5,-78.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4577 + - uid: 5240 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-77.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-85.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4657 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-84.5 + pos: 13.5,-78.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5261 components: - type: Transform @@ -106373,45 +106340,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 15549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-47.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15878 + - uid: 15546 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-76.5 + pos: 17.5,-80.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 15880 + - uid: 15549 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-76.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15889 - components: - - type: Transform - pos: 13.5,-80.5 + pos: -1.5,-47.5 parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-77.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 16338 components: - type: Transform @@ -106428,14 +106372,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 16540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-74.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 16604 components: - type: Transform @@ -106501,11 +106437,10 @@ entities: - uid: 17063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-84.5 + pos: 15.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 17064 components: - type: Transform @@ -106552,6 +106487,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 17221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-75.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 17261 components: - type: Transform @@ -106597,6 +106540,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' + - uid: 17570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-75.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17590 components: - type: Transform @@ -106611,13 +106562,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 17775 + - uid: 17673 components: - type: Transform - pos: 17.5,-80.5 + rot: 3.141592653589793 rad + pos: 15.5,-85.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#947507FF' - uid: 17870 components: - type: Transform @@ -106649,22 +106601,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 20066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-85.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 20070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 20185 components: - type: Transform @@ -108735,14 +108671,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 27418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-85.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - proto: GasPort entities: - uid: 409 @@ -108779,22 +108707,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-47.5 parent: 8364 - - uid: 4563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-78.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4564 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-78.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 5596 components: - type: Transform @@ -108872,15 +108784,11 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 17207 - components: - - type: Transform - pos: 14.5,-78.5 - parent: 8364 - - uid: 17208 + - uid: 17571 components: - type: Transform - pos: 16.5,-78.5 + rot: 1.5707963267948966 rad + pos: 21.5,-73.5 parent: 8364 - uid: 18298 components: @@ -108911,6 +108819,38 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,-48.5 parent: 8364 + - uid: 20069 + components: + - type: Transform + pos: 18.5,-76.5 + parent: 8364 + - uid: 20070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-75.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-75.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20135 + components: + - type: Transform + pos: 12.5,-76.5 + parent: 8364 + - uid: 20136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-73.5 + parent: 8364 - uid: 20802 components: - type: Transform @@ -108988,24 +108928,12 @@ entities: - type: Transform pos: 22.5,-91.5 parent: 8364 - - uid: 27550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-72.5 - parent: 8364 - uid: 27551 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-72.5 parent: 8364 - - uid: 27552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-72.5 - parent: 8364 - uid: 27553 components: - type: Transform @@ -109119,13 +109047,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 17212 - components: - - type: Transform - pos: 14.5,-79.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 17218 components: - type: MetaData @@ -109156,13 +109077,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 17221 - components: - - type: Transform - pos: 16.5,-79.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 17568 components: - type: Transform @@ -109177,6 +109091,20 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 20066 + components: + - type: Transform + pos: 12.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20068 + components: + - type: Transform + pos: 18.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 22840 components: - type: Transform @@ -109237,6 +109165,12 @@ entities: - type: Transform pos: 38.5,0.5 parent: 8364 + - uid: 20859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-73.5 + parent: 8364 - uid: 21274 components: - type: Transform @@ -109257,12 +109191,6 @@ entities: - type: Transform pos: 18.5,-50.5 parent: 8364 - - uid: 27380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-72.5 - parent: 8364 - proto: GasThermoMachineHeater entities: - uid: 3803 @@ -109281,63 +109209,97 @@ entities: - type: Transform pos: 12.5,-51.5 parent: 8364 + - uid: 20858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-73.5 + parent: 8364 - uid: 21405 components: - type: Transform pos: 74.5,-47.5 parent: 8364 - - uid: 27549 +- proto: GasValve + entities: + - uid: 17062 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-72.5 + pos: 20.5,-71.5 parent: 8364 -- proto: GasValve - entities: - - uid: 4136 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#947507FF' + - uid: 17339 components: - type: Transform - pos: 13.5,-81.5 + rot: 3.141592653589793 rad + pos: 15.5,-56.5 + parent: 8364 + - type: GasValve + open: False + - uid: 17707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-78.5 parent: 8364 - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4228 + color: '#947507FF' + - uid: 17719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-78.5 + parent: 8364 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#947507FF' + - uid: 17766 components: - type: Transform + rot: 3.141592653589793 rad pos: 17.5,-81.5 parent: 8364 - type: GasValve open: False - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 14079 + - uid: 17775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-80.5 + rot: 3.141592653589793 rad + pos: 16.5,-81.5 parent: 8364 - type: GasValve open: False - - uid: 17062 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 17781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-71.5 + rot: 3.141592653589793 rad + pos: 14.5,-81.5 parent: 8364 - type: GasValve open: False - type: AtmosPipeColor - color: '#947507FF' - - uid: 17339 + color: '#990000FF' + - uid: 18758 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-56.5 + pos: 13.5,-81.5 parent: 8364 - type: GasValve open: False + - type: AtmosPipeColor + color: '#990000FF' - uid: 22843 components: - type: MetaData @@ -112182,21 +112144,37 @@ entities: color: '#FF1212FF' - proto: GasVolumePump entities: - - uid: 17031 + - uid: 4577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-74.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 19073 components: - type: Transform pos: 16.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 17159 + - uid: 19953 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 20006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-81.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - proto: GeigerCounter entities: - uid: 26819 @@ -115238,11 +115216,6 @@ entities: - type: Transform pos: 26.5,-80.5 parent: 8364 - - uid: 4508 - components: - - type: Transform - pos: 15.5,-82.5 - parent: 8364 - uid: 4511 components: - type: Transform @@ -115388,16 +115361,6 @@ entities: - type: Transform pos: -11.5,-88.5 parent: 8364 - - uid: 4610 - components: - - type: Transform - pos: 16.5,-82.5 - parent: 8364 - - uid: 4612 - components: - - type: Transform - pos: 17.5,-82.5 - parent: 8364 - uid: 4613 components: - type: Transform @@ -115523,21 +115486,6 @@ entities: - type: Transform pos: -20.5,-76.5 parent: 8364 - - uid: 4648 - components: - - type: Transform - pos: 14.5,-82.5 - parent: 8364 - - uid: 4650 - components: - - type: Transform - pos: 18.5,-82.5 - parent: 8364 - - uid: 4678 - components: - - type: Transform - pos: 13.5,-82.5 - parent: 8364 - uid: 4685 components: - type: Transform @@ -120145,14 +120093,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 27427 + - uid: 17607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-85.5 + pos: 15.5,-84.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - proto: Hemostat entities: - uid: 13776 @@ -130389,6 +130336,7 @@ entities: - uid: 26104 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 18.5,-86.5 parent: 8364 @@ -132753,36 +132701,6 @@ entities: - type: Transform pos: 44.5,-54.5 parent: 8364 - - uid: 3864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-82.5 - parent: 8364 - - uid: 3865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-82.5 - parent: 8364 - - uid: 4005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-82.5 - parent: 8364 - - uid: 4032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-82.5 - parent: 8364 - - uid: 4042 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-82.5 - parent: 8364 - uid: 5799 components: - type: Transform @@ -132833,11 +132751,6 @@ entities: - type: Transform pos: 17.5,-50.5 parent: 8364 - - uid: 22737 - components: - - type: Transform - pos: 13.5,-82.5 - parent: 8364 - uid: 22830 components: - type: Transform @@ -137038,6 +136951,11 @@ entities: - type: Transform pos: 2.5,-41.5 parent: 8364 + - uid: 17088 + components: + - type: Transform + pos: 14.5,-82.5 + parent: 8364 - uid: 17093 components: - type: Transform @@ -137048,6 +136966,16 @@ entities: - type: Transform pos: 7.5,-45.5 parent: 8364 + - uid: 17156 + components: + - type: Transform + pos: 15.5,-82.5 + parent: 8364 + - uid: 17159 + components: + - type: Transform + pos: 16.5,-82.5 + parent: 8364 - uid: 17205 components: - type: Transform @@ -137060,6 +136988,21 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-43.5 parent: 8364 + - uid: 17207 + components: + - type: Transform + pos: 13.5,-82.5 + parent: 8364 + - uid: 17208 + components: + - type: Transform + pos: 17.5,-82.5 + parent: 8364 + - uid: 17365 + components: + - type: Transform + pos: 18.5,-82.5 + parent: 8364 - uid: 17455 components: - type: Transform @@ -143864,6 +143807,31 @@ entities: - type: Transform pos: 3.5,39.5 parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 20856 - uid: 16531 components: - type: Transform @@ -143874,6 +143842,31 @@ entities: - type: Transform pos: 4.5,39.5 parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 20857 - proto: SuitStorageWarden entities: - uid: 11999 diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index a8c3becaf3..32f860cae6 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -7605,6 +7605,18 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,3.5 parent: 1 + - uid: 3147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 3148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 - uid: 4816 components: - type: Transform @@ -7647,18 +7659,6 @@ entities: rot: 3.141592653589793 rad 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: - uid: 7260 diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 58ff9247b8..80bce4b922 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -18042,6 +18042,12 @@ entities: - type: Transform pos: 91.5,71.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 31366: + - DoorStatus: Close - uid: 16663 components: - type: Transform @@ -18492,12 +18498,24 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-55.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12402: + - DoorStatus: DoorBolt - uid: 12402 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-55.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12401: + - DoorStatus: DoorBolt - uid: 23029 components: - type: Transform @@ -18512,6 +18530,12 @@ entities: - type: Transform pos: 99.5,0.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23457: + - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: - uid: 2870 @@ -18586,11 +18610,23 @@ entities: - type: Transform pos: 25.5,-59.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15609: + - DoorStatus: Close - uid: 15612 components: - type: Transform pos: 27.5,-59.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15610: + - DoorStatus: Close - uid: 33581 components: - type: Transform @@ -18618,11 +18654,23 @@ entities: - type: Transform pos: 16.5,-36.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10120: + - DoorStatus: DoorBolt - uid: 10120 components: - type: Transform pos: 16.5,-33.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10119: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 3715 @@ -18649,36 +18697,72 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-59.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12421: + - DoorStatus: DoorBolt - uid: 12404 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-47.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12395: + - DoorStatus: Close - uid: 12420 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-62.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12400: + - DoorStatus: Close - uid: 12421 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-62.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12403: + - DoorStatus: DoorBolt - uid: 12503 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-59.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12397: + - DoorStatus: Close - uid: 12504 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-62.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12399: + - DoorStatus: Close - uid: 20640 components: - type: Transform @@ -18713,6 +18797,12 @@ entities: - type: Transform pos: 96.5,0.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23458: + - DoorStatus: DoorBolt - uid: 24737 components: - type: Transform @@ -18792,6 +18882,8 @@ entities: - type: Transform pos: -41.5,-1.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 3000: @@ -18837,21 +18929,53 @@ entities: - type: Transform pos: 22.5,-50.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 19166: + - DoorStatus: DoorBolt + 19165: + - DoorStatus: DoorBolt - uid: 19164 components: - type: Transform pos: 22.5,-49.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 19166: + - DoorStatus: DoorBolt + 19165: + - DoorStatus: DoorBolt - uid: 19165 components: - type: Transform pos: 20.5,-50.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 19164: + - DoorStatus: DoorBolt + 19163: + - DoorStatus: DoorBolt - uid: 19166 components: - type: Transform pos: 20.5,-49.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 19164: + - DoorStatus: DoorBolt + 19163: + - DoorStatus: DoorBolt - uid: 26786 components: - type: Transform @@ -18938,6 +19062,8 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,32.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalGlassShuttleEscape entities: - uid: 6767 @@ -19008,38 +19134,80 @@ entities: - type: Transform pos: -29.5,-48.5 parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 12404: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 12397 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-58.5 parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 12503: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 12399 components: - type: Transform pos: -32.5,-64.5 parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 12504: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 12400 components: - type: Transform pos: -37.5,-64.5 parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 12420: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 15609 components: - type: Transform pos: 25.5,-61.5 parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 15611: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 15610 components: - type: Transform pos: 27.5,-61.5 parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 15612: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 31366 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,74.5 parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 16079: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalLocked entities: - uid: 3833 @@ -19047,6 +19215,8 @@ entities: - type: Transform pos: -38.5,16.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 3834: @@ -27381,17 +27551,18 @@ entities: - type: Transform pos: 63.5,-57.5 parent: 13329 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 1203 components: - type: Transform - pos: -6.5,25.5 + rot: -1.5707963267948966 rad + pos: -7.5,28.5 parent: 13329 - uid: 1204 components: - type: Transform - pos: -7.5,28.5 + pos: -6.5,25.5 parent: 13329 - uid: 3030 components: @@ -27401,52 +27572,62 @@ entities: - uid: 3758 components: - type: Transform + rot: -1.5707963267948966 rad pos: -41.5,32.5 parent: 13329 - uid: 3759 components: - type: Transform + rot: -1.5707963267948966 rad pos: -41.5,34.5 parent: 13329 - uid: 3760 components: - type: Transform + rot: -1.5707963267948966 rad pos: -41.5,40.5 parent: 13329 - uid: 3761 components: - type: Transform + rot: -1.5707963267948966 rad pos: -41.5,42.5 parent: 13329 - uid: 6764 components: - type: Transform + rot: 3.141592653589793 rad pos: -4.5,76.5 parent: 13329 - uid: 10112 components: - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-37.5 parent: 13329 - uid: 10113 components: - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-35.5 parent: 13329 - uid: 12422 components: - type: Transform + rot: -1.5707963267948966 rad pos: -43.5,-32.5 parent: 13329 - uid: 12423 components: - type: Transform + rot: -1.5707963267948966 rad pos: -43.5,-39.5 parent: 13329 - uid: 13166 components: - type: Transform - pos: -30.5,-20.5 + rot: 3.141592653589793 rad + pos: -37.5,-20.5 parent: 13329 - uid: 13167 components: @@ -27456,27 +27637,30 @@ entities: - uid: 13252 components: - type: Transform - pos: -37.5,-20.5 + rot: 3.141592653589793 rad + pos: -30.5,-20.5 parent: 13329 - uid: 13282 components: - type: Transform - pos: -28.5,-30.5 + pos: -33.5,-30.5 parent: 13329 - uid: 13283 components: - type: Transform - pos: -33.5,-30.5 + rot: 1.5707963267948966 rad + pos: 95.5,61.5 parent: 13329 - uid: 13284 components: - type: Transform - pos: 95.5,61.5 + rot: 1.5707963267948966 rad + pos: 95.5,66.5 parent: 13329 - uid: 13285 components: - type: Transform - pos: 95.5,66.5 + pos: -28.5,-30.5 parent: 13329 - proto: AtmosFixBlockerMarker entities: @@ -164811,6 +164995,11 @@ entities: - type: Transform pos: 106.5,-45.5 parent: 13329 + - uid: 34593 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 13329 - uid: 35403 components: - type: Transform @@ -165044,6 +165233,11 @@ entities: - type: Transform pos: 36.5,56.5 parent: 13329 + - uid: 34228 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 13329 - uid: 34456 components: - type: Transform @@ -182222,13 +182416,6 @@ entities: pos: 22.5,15.5 parent: 13329 - proto: SignAtmos - entities: - - uid: 26471 - components: - - type: Transform - pos: 78.5,-21.5 - parent: 13329 -- proto: SignAtmosMinsky entities: - uid: 26468 components: @@ -182245,6 +182432,11 @@ entities: - type: Transform pos: 90.5,-19.5 parent: 13329 + - uid: 26471 + components: + - type: Transform + pos: 78.5,-21.5 + parent: 13329 - proto: SignBar entities: - uid: 1188 @@ -182333,8 +182525,6 @@ entities: - type: Transform pos: 16.5,39.5 parent: 13329 -- proto: SignChemistry1 - entities: - uid: 18455 components: - type: Transform @@ -182775,13 +182965,6 @@ entities: - type: Transform pos: 70.5,42.5 parent: 13329 -- proto: SignDrones - entities: - - uid: 26692 - components: - - type: Transform - pos: 82.5,-21.5 - parent: 13329 - proto: SignElectricalMed entities: - uid: 4728 @@ -182976,20 +183159,16 @@ entities: parent: 13329 - proto: SignHydro1 entities: - - uid: 20091 + - uid: 20090 components: - type: Transform - pos: -11.5,33.5 + pos: -2.5,37.5 parent: 13329 -- proto: SignHydro2 - entities: - - uid: 20090 + - uid: 20091 components: - type: Transform - pos: -2.5,37.5 + pos: -11.5,33.5 parent: 13329 -- proto: SignHydro3 - entities: - uid: 20092 components: - type: Transform @@ -183068,6 +183247,13 @@ entities: - type: Transform pos: 14.5,-14.5 parent: 13329 +- proto: SignMaterials + entities: + - uid: 26692 + components: + - type: Transform + pos: 82.5,-21.5 + parent: 13329 - proto: SignMedical entities: - uid: 10600 @@ -183303,21 +183489,17 @@ entities: - type: Transform pos: 39.5,-12.5 parent: 13329 -- proto: SignScience1 - entities: - - uid: 20084 - components: - - type: Transform - pos: 26.5,-48.5 - parent: 13329 -- proto: SignScience2 - entities: - uid: 19938 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-40.5 parent: 13329 + - uid: 20084 + components: + - type: Transform + pos: 26.5,-48.5 + parent: 13329 - proto: SignSecurearea entities: - uid: 15808 diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 0a5da0bd31..2d0f821d20 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -47,6 +47,7 @@ tilemap: 101: FloorSteelHerringbone 102: FloorSteelLime 103: FloorSteelMini + 1: FloorSteelMono 106: FloorSteelPavement 107: FloorSteelPavementVertical 108: FloorTechMaint @@ -76,7 +77,7 @@ entities: version: 6 0,0: ind: 0,0 - tiles: XQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACXQAAAAAAHwAAAAABXQAAAAAAHwAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACHwAAAAADXQAAAAACHwAAAAABXQAAAAACHwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAADHwAAAAABXQAAAAADHwAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAACfgAAAAAAXQAAAAABHwAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAADXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAegAAAAACfgAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAD + tiles: XQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACXQAAAAAAHwAAAAABXQAAAAAAHwAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACHwAAAAADXQAAAAACHwAAAAABXQAAAAACHwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAADHwAAAAABXQAAAAADHwAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAACfgAAAAAAXQAAAAABHwAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAAAHwAAAAADXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAeQAAAAAAeQAAAAAAHwAAAAADHwAAAAAAegAAAAACfgAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAD version: 6 -1,-1: ind: -1,-1 @@ -88,7 +89,7 @@ entities: version: 6 -2,0: ind: -2,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAYAAAAAAAYAAAAAABHwAAAAABHwAAAAADfgAAAAAATQAAAAAATQAAAAADTQAAAAABTQAAAAAATQAAAAABTQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABYAAAAAAAYAAAAAADJAAAAAABHwAAAAADfgAAAAAAPAAAAAAATQAAAAACagAAAAABagAAAAAAagAAAAADTQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAYAAAAAADYAAAAAADJAAAAAACHwAAAAABfgAAAAAAPAAAAAAATQAAAAAAagAAAAADagAAAAABagAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAACYAAAAAADJAAAAAABHwAAAAABfgAAAAAAPAAAAAAATQAAAAADagAAAAADagAAAAAAagAAAAADTQAAAAACTQAAAAABXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAYAAAAAADYAAAAAABHwAAAAACHwAAAAABfgAAAAAAPAAAAAAATQAAAAACagAAAAADagAAAAADagAAAAAATQAAAAABTQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACYAAAAAACYAAAAAABHwAAAAACfgAAAAAAfgAAAAAAPAAAAAAATQAAAAABagAAAAAAagAAAAABagAAAAAATQAAAAAATQAAAAABXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAYAAAAAACYAAAAAACHwAAAAABHwAAAAAAfgAAAAAATQAAAAADTQAAAAABTQAAAAAATQAAAAADTQAAAAABTQAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAATQAAAAADPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAJgAAAAABPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAYAAAAAAAYAAAAAABHwAAAAABHwAAAAADfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABYAAAAAAAYAAAAAADJAAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAYAAAAAADYAAAAAADJAAAAAACHwAAAAABfgAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAACYAAAAAADJAAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAYAAAAAADYAAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACYAAAAAACYAAAAAABHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAYAAAAAACYAAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 0,1: ind: 0,1 @@ -100,7 +101,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: fgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAABPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADTQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADTQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAADegAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAAAfgAAAAAA + tiles: fgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADTQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADTQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAADegAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAAAfgAAAAAA version: 6 -3,0: ind: -3,0 @@ -140,7 +141,7 @@ entities: version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAegAAAAADegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAD + tiles: AAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAegAAAAADegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAD version: 6 -4,3: ind: -4,3 @@ -148,7 +149,7 @@ entities: version: 6 -3,3: ind: -3,3 - tiles: XQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: XQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -2,3: ind: -2,3 @@ -156,7 +157,7 @@ entities: version: 6 -3,4: ind: -3,4 - tiles: XQAAAAABXQAAAAABXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAABXQAAAAABXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAABPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,4: ind: -4,4 @@ -176,7 +177,7 @@ entities: version: 6 1,1: ind: 1,1 - tiles: fgAAAAAAeQAAAAABeQAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAeQAAAAABeQAAAAABeQAAAAACeQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAeQAAAAACeQAAAAACeQAAAAAAeQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADcAAAAAACJAAAAAABJAAAAAADJAAAAAAATQAAAAAATQAAAAADHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAJAAAAAABJAAAAAABJAAAAAACTQAAAAADTQAAAAAAHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAADTQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABcAAAAAACLgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: HwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAeQAAAAABeQAAAAABeQAAAAACeQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAeQAAAAACeQAAAAACeQAAAAAAeQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADcAAAAAACJAAAAAABJAAAAAADJAAAAAAATQAAAAAATQAAAAADHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAJAAAAAABJAAAAAABJAAAAAACTQAAAAADTQAAAAAAHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAADTQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABcAAAAAACLgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,2: ind: 1,2 @@ -192,7 +193,7 @@ entities: version: 6 1,0: ind: 1,0 - tiles: XQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAHwAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADcAAAAAABcAAAAAADXQAAAAADXQAAAAACXQAAAAACcAAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAABcAAAAAAAcAAAAAAAXQAAAAACXQAAAAABXQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAAAegAAAAADfgAAAAAAEQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAEQAAAAAA + tiles: XQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAHwAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADcAAAAAABcAAAAAADXQAAAAADXQAAAAACXQAAAAACcAAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAABcAAAAAAAcAAAAAAAXQAAAAACXQAAAAABXQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACegAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAAAegAAAAADfgAAAAAAEQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAEQAAAAAA version: 6 1,-1: ind: 1,-1 @@ -200,11 +201,11 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: HwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAADHwAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA + tiles: HwAAAAAAfgAAAAAAXQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADcAAAAAACeQAAAAACcAAAAAADDAAAAAADcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAcAAAAAAAeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAAADAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADeQAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAeQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAABcAAAAAACDAAAAAABcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACDAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAABeQAAAAAAcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACcAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABcAAAAAAAeQAAAAADcAAAAAACfgAAAAAAeQAAAAABeQAAAAADeQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADcAAAAAACeQAAAAACcAAAAAADDAAAAAADcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAcAAAAAAAeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAAADAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADeQAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAeQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAABcAAAAAACDAAAAAABcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACDAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAABeQAAAAAAcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACcAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABcAAAAAAAeQAAAAADcAAAAAACfgAAAAAAeQAAAAABeQAAAAADeQAAAAAA version: 6 -3,-2: ind: -3,-2 @@ -212,11 +213,11 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: fgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAACfgAAAAAA + tiles: fgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAACfgAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 @@ -224,7 +225,7 @@ entities: version: 6 0,-3: ind: 0,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,-3: ind: 1,-3 @@ -232,39 +233,35 @@ entities: version: 6 -1,-3: ind: -1,-3 - tiles: fgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADTgAAAAAATgAAAAAATgAAAAACTgAAAAAATgAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABTQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAXQAAAAACTQAAAAABXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAA + tiles: XQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAABTQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAACTQAAAAABXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABZgAAAAADZgAAAAACZgAAAAABZgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABZgAAAAADZgAAAAABZgAAAAAAZgAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACZgAAAAADZgAAAAACZgAAAAACZgAAAAACZgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAZgAAAAACZgAAAAABZgAAAAABZgAAAAABZgAAAAACZgAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAZgAAAAACZgAAAAACZgAAAAACZgAAAAABZgAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAADegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAB + tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAHwAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADfgAAAAAAHwAAAAAAHwAAAAAAZgAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAZgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAADegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: XQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAHwAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA + tiles: AAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAHwAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 - tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,-5: - ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 @@ -308,15 +305,15 @@ entities: version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA version: 6 -5,3: ind: -5,3 - tiles: AAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,2: ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA version: 6 -6,3: ind: -6,3 @@ -324,11 +321,11 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: BwAAAAAHCwAAAAAACwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAIfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADXQAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAATgAAAAADTgAAAAAATgAAAAABTgAAAAABTgAAAAABTgAAAAACTgAAAAABXQAAAAABHwAAAAADHwAAAAADXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACXQAAAAADXQAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAATgAAAAAATgAAAAAATgAAAAACTgAAAAADTgAAAAAATgAAAAACTgAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA + tiles: BwAAAAAHCwAAAAAACwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAIfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADXQAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAATgAAAAADTgAAAAAATgAAAAABTgAAAAABTgAAAAABTgAAAAACTgAAAAABXQAAAAABHwAAAAADHwAAAAADXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACXQAAAAADXQAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAATgAAAAAATgAAAAAATgAAAAACTgAAAAADTgAAAAAATgAAAAACTgAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-3: ind: -5,-3 @@ -340,15 +337,15 @@ entities: version: 6 -4,-4: ind: -4,-4 - tiles: bAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAJgAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAADJgAAAAABJgAAAAABJgAAAAABIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAEBwAAAAAAagAAAAADagAAAAACagAAAAAAagAAAAACagAAAAACagAAAAABagAAAAACZQAAAAABJwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAAATAAAAAABTAAAAAACTAAAAAABTAAAAAACTAAAAAAAfgAAAAAAawAAAAAAJwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAACKgAAAAABTAAAAAACTAAAAAACTAAAAAAATAAAAAACfgAAAAAAawAAAAACJwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAADKgAAAAACTAAAAAADTAAAAAABTAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAKgAAAAACKgAAAAACKgAAAAADKgAAAAABKgAAAAABKgAAAAABHwAAAAACawAAAAADJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAACTAAAAAABKgAAAAADTAAAAAAATAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAADTAAAAAAATAAAAAADTAAAAAAATAAAAAACTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAAATAAAAAABTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAAAagAAAAABagAAAAAAagAAAAABagAAAAADagAAAAAAagAAAAABZQAAAAABJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAACJgAAAAACIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGCwAAAAAABwAAAAAAfgAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAJgAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAADJgAAAAABJgAAAAABJgAAAAABIgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAEBwAAAAAAagAAAAADagAAAAACagAAAAAAagAAAAACagAAAAACagAAAAABagAAAAACZQAAAAABJwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAAATAAAAAABTAAAAAACTAAAAAABTAAAAAACTAAAAAAAfgAAAAAAawAAAAAAJwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAACKgAAAAABTAAAAAACTAAAAAACTAAAAAAATAAAAAACfgAAAAAAawAAAAACJwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAADKgAAAAACTAAAAAADTAAAAAABTAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAKgAAAAACKgAAAAACKgAAAAADKgAAAAABKgAAAAABKgAAAAABHwAAAAACawAAAAADJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAACTAAAAAABKgAAAAADTAAAAAAATAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAADTAAAAAAATAAAAAADTAAAAAAATAAAAAACTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAAATAAAAAABTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAAAagAAAAABagAAAAAAagAAAAABagAAAAADagAAAAAAagAAAAABZQAAAAABJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAACJgAAAAACIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGCwAAAAAABwAAAAAAfgAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAAD + tiles: fQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAAD version: 6 -5,-4: ind: -5,-4 - tiles: fgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAIgAAAAADJgAAAAACJgAAAAABJgAAAAABJgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABfgAAAAAAHwAAAAADfgAAAAAAJwAAAAADZQAAAAABagAAAAAAagAAAAADagAAAAACHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAACJwAAAAACawAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAACawAAAAABfgAAAAAATAAAAAACTAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAADfgAAAAAAJwAAAAADawAAAAACfgAAAAAATAAAAAACTAAAAAAAPgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAADfgAAAAAAJwAAAAAAawAAAAAAfgAAAAAATAAAAAABTAAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAADHwAAAAABJwAAAAAAawAAAAADHwAAAAACKgAAAAAAKgAAAAAAPAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAADfgAAAAAAJwAAAAACawAAAAAAfgAAAAAATAAAAAADTAAAAAACPAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAACfgAAAAAAJwAAAAABawAAAAACfgAAAAAATAAAAAABTAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABfgAAAAAAJwAAAAABawAAAAAAfgAAAAAATAAAAAAATAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAABawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJwAAAAACZQAAAAAAagAAAAABagAAAAABagAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAIgAAAAACJgAAAAABJgAAAAADJgAAAAADJgAAAAAC + tiles: fgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAACJwAAAAAAJwAAAAAAIgAAAAADJgAAAAACJgAAAAABJgAAAAABJgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAAAJwAAAAAAJwAAAAAAJwAAAAADZQAAAAABagAAAAAAagAAAAADagAAAAACHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAJwAAAAAAJwAAAAAAJwAAAAACawAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAACawAAAAABfgAAAAAATAAAAAACTAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAADfgAAAAAAJwAAAAADawAAAAACfgAAAAAATAAAAAACTAAAAAAAPgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAADfgAAAAAAJwAAAAAAawAAAAAAfgAAAAAATAAAAAABTAAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAADHwAAAAABJwAAAAAAawAAAAADHwAAAAACKgAAAAAAKgAAAAAAPAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAADfgAAAAAAJwAAAAACawAAAAAAfgAAAAAATAAAAAADTAAAAAACPAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAACfgAAAAAAJwAAAAABawAAAAACfgAAAAAATAAAAAABTAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABfgAAAAAAJwAAAAABawAAAAAAfgAAAAAATAAAAAAATAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAABawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJwAAAAACZQAAAAAAagAAAAABagAAAAABagAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAIgAAAAACJgAAAAABJgAAAAADJgAAAAADJgAAAAAC version: 6 -6,-4: ind: -6,-4 @@ -360,11 +357,11 @@ entities: version: 6 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAACfgAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAA version: 6 -6,-5: ind: -6,-5 @@ -372,7 +369,7 @@ entities: version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAABEQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAHwAAAAACEQAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABEQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACEQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACEQAAAAAAEQAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACEQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACEQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADEQAAAAAAHwAAAAABEQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAABEQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA version: 6 0,4: ind: 0,4 @@ -452,51 +449,44 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 657: -8,-44 - 1390: 23,23 - 1391: 21,23 - 2506: -35,40 - 2507: -37,40 + 1258: 23,23 + 1259: 21,23 + 2210: -35,40 + 2211: -37,40 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 2208: 5,-30 - 2737: -3,-55 - 2771: 20,-24 - 2772: 20,-26 - 2773: 20,-28 - 2774: 20,-30 - 2775: 20,-32 - 2776: 20,-34 - 2777: 20,-36 + 2065: 5,-30 + 2370: 20,-24 + 2371: 20,-26 + 2372: 20,-28 + 2373: 20,-30 + 2374: 20,-32 + 2375: 20,-34 + 2376: 20,-36 - node: color: '#FFFFFFFF' id: Arrows decals: - 1388: 23,25 - 1389: 21,25 - 1873: 31,21 - 3064: -31,-10 + 1256: 23,25 + 1257: 21,25 + 1730: 31,21 + 2648: -31,-10 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 1236: 33,-3 - 2764: 21,-35 - 2765: 21,-33 - 2766: 21,-31 - 2767: 21,-29 - 2768: 21,-27 - 2769: 21,-25 - 2770: 21,-23 - - node: - color: '#FFFFFFFF' - id: ArrowsGreyscale - decals: - 2789: -19,-67 + 1136: 33,-3 + 2363: 21,-35 + 2364: 21,-33 + 2365: 21,-31 + 2366: 21,-29 + 2367: 21,-27 + 2368: 21,-25 + 2369: 21,-23 - node: color: '#FFFFFFFF' id: Bot @@ -520,1187 +510,1043 @@ entities: 482: -8,-9 552: -12,-1 587: 6,-1 - 658: -11,-44 - 659: -12,-44 - 660: -13,-44 - 661: -14,-44 - 740: 19,0 - 751: 12,14 - 807: -30,37 - 1031: 5,43 - 1032: 3,41 - 1033: 7,41 - 1141: -41,59 - 1143: 14,-2 - 1144: 15,-2 - 1192: 23,-6 - 1193: 23,-5 - 1194: 23,-4 - 1195: 25,-6 - 1196: 25,-5 - 1197: 25,-4 - 1198: 27,-6 - 1199: 27,-5 - 1200: 27,-4 - 1201: 29,-6 - 1202: 29,-5 - 1203: 29,-4 - 1241: 21,-20 - 1242: 18,-20 - 1243: 18,-18 - 1244: 18,-17 - 1245: 19,-17 - 1246: 19,-18 - 1247: 20,-18 - 1248: 20,-17 - 1249: 20,-15 - 1250: 20,-14 - 1251: 21,-14 - 1252: 21,-15 - 1253: 22,-15 - 1254: 22,-14 - 1303: 36,7 - 1304: 35,7 - 1311: 22,20 - 1312: 22,21 - 1313: 23,21 - 1314: 23,20 - 1319: 27,9 - 1320: 27,10 - 1420: 12,12 - 1421: 20,23 - 1588: -1,29 - 1789: 5,-26 - 1790: 5,-25 - 1791: 7,-30 - 1864: 33,17 - 1865: 32,17 - 1866: 31,17 - 2185: -40,54 - 2237: 3,-41 - 2241: -4,-38 - 2242: -2,-38 - 2258: -22,-45 - 2297: -26,-47 - 2298: -26,-48 - 2400: 1,-7 - 2401: -1,-7 - 2521: -13,38 - 2522: -12,31 - 2533: 12,-30 - 2534: 12,-29 - 2535: 12,-28 - 2536: 11,-23 - 2537: 10,-23 - 2547: 32,21 - 2548: 32,22 - 2549: 32,23 - 2565: 41,12 - 2566: 41,13 - 2567: 41,14 - 2629: 32,39 - 2630: 24,33 - 2761: -15,-49 - 2762: -15,-48 - 2763: -15,-47 - 2790: 15,-22 - 2802: 7,35 - 2835: -4,-29 - 2836: -33,10 - 2837: -26,13 - 2838: -14,5 - 2839: 6,6 - 2840: -6,-9 - 2861: -43,19 - 2862: -41,19 - 3063: -33,-12 - 3082: -28,-14 - 3083: -23,-15 - 3084: -19,-23 - 3157: -20,-5 + 680: 19,0 + 742: -30,37 + 951: 5,43 + 952: 3,41 + 953: 7,41 + 1041: -41,59 + 1043: 14,-2 + 1044: 15,-2 + 1092: 23,-6 + 1093: 23,-5 + 1094: 23,-4 + 1095: 25,-6 + 1096: 25,-5 + 1097: 25,-4 + 1098: 27,-6 + 1099: 27,-5 + 1100: 27,-4 + 1101: 29,-6 + 1102: 29,-5 + 1103: 29,-4 + 1141: 21,-20 + 1142: 18,-20 + 1143: 18,-18 + 1144: 18,-17 + 1145: 19,-17 + 1146: 19,-18 + 1147: 20,-18 + 1148: 20,-17 + 1149: 20,-15 + 1150: 20,-14 + 1151: 21,-14 + 1152: 21,-15 + 1153: 22,-15 + 1154: 22,-14 + 1203: 36,7 + 1204: 35,7 + 1211: 22,20 + 1212: 22,21 + 1213: 23,21 + 1214: 23,20 + 1219: 27,9 + 1220: 27,10 + 1278: 20,23 + 1445: -1,29 + 1646: 5,-26 + 1647: 5,-25 + 1648: 7,-30 + 1721: 33,17 + 1722: 32,17 + 1723: 31,17 + 2042: -40,54 + 2104: 1,-7 + 2105: -1,-7 + 2225: -13,38 + 2226: -12,31 + 2236: 12,-30 + 2237: 12,-29 + 2238: 12,-28 + 2239: 11,-23 + 2240: 10,-23 + 2246: 32,21 + 2247: 32,22 + 2248: 32,23 + 2261: 41,12 + 2262: 41,13 + 2263: 41,14 + 2325: 32,39 + 2326: 24,33 + 2380: 15,-22 + 2392: 7,35 + 2425: -4,-29 + 2426: -33,10 + 2427: -26,13 + 2428: -14,5 + 2429: 6,6 + 2430: -6,-9 + 2445: -43,19 + 2446: -41,19 + 2647: -33,-12 + 2666: -28,-14 + 2667: -23,-15 + 2668: -19,-23 + 2741: -20,-5 + 2840: 18,16 + 2841: 20,16 + 2853: 12,14 + 2856: 14,-18 + 2898: -6,-48 + 2899: -6,-49 + 2900: -6,-50 + 2901: -6,-51 + 2915: -2,-44 + 2916: -3,-44 + 2917: -1,-44 + 2918: 1,-44 + 2919: 2,-44 + 2920: 3,-44 + 2921: 4,-44 + 3045: 4,-51 + 3049: -4,-48 + 3050: -3,-48 - node: - angle: 3.141592653589793 rad color: '#FFFFFFFF' - id: Bot - decals: - 634: 14,-19 - - node: - color: '#52B4E996' id: BotGreyscale decals: - 2733: -4,-52 - 2734: -5,-52 - - node: - color: '#DE3A3A96' - id: BotGreyscale - decals: - 2735: -11,-52 - 2736: -12,-52 - - node: - color: '#FFFFFFFF' - id: BotGreyscale - decals: - 2429: -22,-1 - 2785: -18,-69 - 2786: -18,-68 - 2787: -18,-67 + 2133: -22,-1 - node: color: '#FFFFFFFF' id: BotLeft decals: - 2183: -39,56 - 2184: -41,56 - 2238: 2,-38 - 2239: 0,-38 - 2259: -26,-45 - 2260: -26,-44 - 2261: -26,-43 - 2447: -57,-22 - 2503: -42,42 - 2504: -46,42 - 2505: -49,42 - 2550: 33,20 - 2551: 33,19 - 2568: 40,14 - 2758: -15,-52 - 2759: -15,-51 - 2760: -15,-50 - 2863: -44,19 - 2864: -42,19 - 2865: -40,19 + 2040: -39,56 + 2041: -41,56 + 2151: -57,-22 + 2207: -42,42 + 2208: -46,42 + 2209: -49,42 + 2249: 33,20 + 2250: 33,19 + 2264: 40,14 + 2447: -44,19 + 2448: -42,19 + 2449: -40,19 - node: color: '#FFFFFFFF' id: BotRight decals: - 2240: 3,-40 - 2262: -23,-40 - 2263: -22,-40 - 2500: -45,51 - 2501: -45,52 - 2502: -45,53 + 2204: -45,51 + 2205: -45,52 + 2206: -45,53 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 2729: -24,-5 - 2788: -19,-68 + 2357: -24,-5 - node: color: '#FFFFFFFF' id: Box decals: - 2289: -12,-38 - 2290: -14,-38 - 2569: 39,9 - 2842: -5,-50 - 2843: -12,-56 - 2844: -10,-56 - 2845: -6,-56 - 2846: -4,-56 - - node: - color: '#FFFFFFFF' - id: BoxGreyscale - decals: - 2782: -19,-70 - 2783: -18,-70 - 2784: -17,-70 + 2265: 39,9 + 2896: -14,-38 + 2897: -12,-38 + 3035: -5,-54 + 3036: -4,-54 + 3046: -4,-50 + 3047: 4,-49 + 3048: 4,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1845: -6,40 - 1846: -14,40 - 2113: -46,-13 - 2114: -46,-15 - 2115: -46,-17 - 2116: -46,-19 - 2117: -46,-21 + 1702: -6,40 + 1703: -14,40 + 1970: -46,-13 + 1971: -46,-15 + 1972: -46,-17 + 1973: -46,-19 + 1974: -46,-21 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 1530: -7,36 - 1697: -57,-50 - 1807: -50,24 + 1387: -7,36 + 1554: -57,-50 + 1664: -50,24 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 1529: -13,36 - 1714: -68,-50 + 1386: -13,36 + 1571: -68,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1525: -7,32 - 1705: -57,-60 - 1822: -50,12 + 1382: -7,32 + 1562: -57,-60 + 1679: -50,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 1524: -13,32 - 1715: -68,-60 + 1381: -13,32 + 1572: -68,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 1620: -12,40 - 1731: -66,-50 + 1477: -12,40 + 1588: -66,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 1622: -8,40 - 1729: -64,-50 - 1730: -59,-50 + 1479: -8,40 + 1586: -64,-50 + 1587: -59,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1619: -12,42 - 1706: -57,-59 + 1476: -12,42 + 1563: -57,-59 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 1621: -8,42 - 1699: -59,-60 + 1478: -8,42 + 1556: -59,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 1443: -17,37 - 1526: -7,33 - 1527: -7,34 - 1528: -7,35 - 1618: -12,41 - 1648: -17,39 - 1649: -17,40 - 1707: -57,-58 - 1799: -50,16 - 1800: -50,17 - 1801: -50,18 - 1802: -50,19 - 1803: -50,20 - 1804: -50,21 - 1805: -50,22 - 1806: -50,23 + 1300: -17,37 + 1383: -7,33 + 1384: -7,34 + 1385: -7,35 + 1475: -12,41 + 1505: -17,39 + 1506: -17,40 + 1564: -57,-58 + 1656: -50,16 + 1657: -50,17 + 1658: -50,18 + 1659: -50,19 + 1660: -50,20 + 1661: -50,21 + 1662: -50,22 + 1663: -50,23 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 1531: -8,36 - 1532: -9,36 - 1533: -10,36 - 1534: -11,36 - 1535: -12,36 - 1614: -9,40 - 1615: -10,40 - 1616: -11,40 - 1725: -60,-50 - 1726: -61,-50 - 1727: -65,-50 - 1728: -62,-50 - 1808: -52,24 - 1809: -51,24 - 1810: -53,24 - 1811: -54,24 - 1812: -55,24 - 1813: -57,24 - 1814: -56,24 - 1815: -58,24 + 1388: -8,36 + 1389: -9,36 + 1390: -10,36 + 1391: -11,36 + 1392: -12,36 + 1471: -9,40 + 1472: -10,40 + 1473: -11,40 + 1582: -60,-50 + 1583: -61,-50 + 1584: -65,-50 + 1585: -62,-50 + 1665: -52,24 + 1666: -51,24 + 1667: -53,24 + 1668: -54,24 + 1669: -55,24 + 1670: -57,24 + 1671: -56,24 + 1672: -58,24 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 1466: -23,38 - 1513: -7,32 - 1514: -8,32 - 1515: -9,32 - 1516: -10,32 - 1517: -11,32 - 1518: -12,32 - 1519: -13,32 - 1611: -10,42 - 1612: -9,42 - 1613: -11,42 - 1698: -60,-60 - 1700: -64,-60 - 1701: -66,-60 - 1816: -58,12 - 1817: -57,12 - 1818: -56,12 - 1819: -55,12 - 1820: -54,12 - 1821: -51,12 + 1323: -23,38 + 1370: -7,32 + 1371: -8,32 + 1372: -9,32 + 1373: -10,32 + 1374: -11,32 + 1375: -12,32 + 1376: -13,32 + 1468: -10,42 + 1469: -9,42 + 1470: -11,42 + 1555: -60,-60 + 1557: -64,-60 + 1558: -66,-60 + 1673: -58,12 + 1674: -57,12 + 1675: -56,12 + 1676: -55,12 + 1677: -54,12 + 1678: -51,12 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1520: -13,32 - 1521: -13,33 - 1522: -13,34 - 1523: -13,35 - 1617: -8,41 + 1377: -13,32 + 1378: -13,33 + 1379: -13,34 + 1380: -13,35 + 1474: -8,41 - node: color: '#9FED5896' id: BrickTileSteelBox decals: - 2397: 2,-9 - 2398: 2,-10 - 2399: 2,-11 + 2101: 2,-9 + 2102: 2,-10 + 2103: 2,-11 - node: color: '#9FED5896' id: BrickTileSteelCornerNe decals: - 2388: 1,-7 - 2452: -31,10 - 2463: -31,13 + 2092: 1,-7 + 2156: -31,10 + 2167: -31,13 - node: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 2555: 33,9 + 2251: 33,9 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 2449: -62,-24 - 2643: -25,11 + 2153: -62,-24 - node: color: '#9FED5896' id: BrickTileSteelCornerNw decals: - 2389: -1,-7 - 2453: -33,10 - 2464: -33,13 + 2093: -1,-7 + 2157: -33,10 + 2168: -33,13 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 2556: 31,9 + 2252: 31,9 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2450: -63,-24 - 2642: -27,11 + 2154: -63,-24 - node: color: '#9FED5896' id: BrickTileSteelCornerSe decals: - 2455: -31,6 - 2466: -31,12 + 2159: -31,6 + 2170: -31,12 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 2558: 33,7 + 2254: 33,7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 2451: -62,-25 - 2644: -25,7 + 2155: -62,-25 - node: color: '#9FED5896' id: BrickTileSteelCornerSw decals: - 2392: -1,-10 - 2454: -33,6 - 2465: -33,12 + 2096: -1,-10 + 2158: -33,6 + 2169: -33,12 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 2557: 31,7 + 2253: 31,7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2448: -63,-25 - 2641: -27,7 + 2152: -63,-25 - node: color: '#9FED5896' id: BrickTileSteelEndS decals: - 2396: 1,-12 + 2100: 1,-12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 1723: -69,-52 - 1724: -69,-58 + 1580: -69,-52 + 1581: -69,-58 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 1704: -61,-61 - 1711: -56,-56 + 1561: -61,-61 + 1568: -56,-56 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 1716: -68,-60 - 1721: -69,-53 - 1722: -69,-51 + 1573: -68,-60 + 1578: -69,-53 + 1579: -69,-51 - node: color: '#9FED5896' id: BrickTileSteelInnerSw decals: - 2394: 1,-10 + 2098: 1,-10 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 1712: -56,-55 - 1713: -56,-52 + 1569: -56,-55 + 1570: -56,-52 - node: color: '#9FED5896' id: BrickTileSteelLineE decals: - 2384: 1,-11 - 2385: 1,-10 - 2386: 1,-9 - 2387: 1,-8 - 2457: -31,7 - 2458: -31,8 - 2459: -31,9 + 2088: 1,-11 + 2089: 1,-10 + 2090: 1,-9 + 2091: 1,-8 + 2161: -31,7 + 2162: -31,8 + 2163: -31,9 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 1717: -69,-57 - 1718: -69,-56 - 1720: -69,-54 - 2649: -25,8 - 2650: -25,9 - 2651: -25,10 + 1574: -69,-57 + 1575: -69,-56 + 1577: -69,-54 - node: color: '#334E6DC8' id: BrickTileSteelLineN decals: - 1444: -18,37 - 1445: -19,37 - 1446: -20,37 - 1447: -21,37 - 1448: -22,37 - 1449: -24,37 - 1450: -25,37 - 1451: -26,37 - 1452: -28,37 + 1301: -18,37 + 1302: -19,37 + 1303: -20,37 + 1304: -21,37 + 1305: -22,37 + 1306: -24,37 + 1307: -25,37 + 1308: -26,37 + 1309: -28,37 - node: color: '#9FED5896' id: BrickTileSteelLineN decals: - 2467: -32,13 + 2171: -32,13 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 1668: 26,32 - 1703: -62,-61 - 2652: -26,11 + 1525: 26,32 + 1560: -62,-61 - node: color: '#9FED5896' id: BrickTileSteelLineS decals: - 2393: 0,-10 - 2456: -32,6 + 2097: 0,-10 + 2160: -32,6 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 1666: -27,24 - 1747: 8,-18 - 2648: -26,7 + 1523: -27,24 + 1604: 8,-18 - node: color: '#9FED5896' id: BrickTileSteelLineW decals: - 2390: -1,-8 - 2391: -1,-9 - 2395: 1,-11 - 2460: -33,9 + 2094: -1,-8 + 2095: -1,-9 + 2099: 1,-11 + 2164: -33,9 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 2559: 31,8 + 2255: 31,8 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 1667: 25,26 - 1710: -56,-53 - 2645: -27,8 - 2646: -27,9 - 2647: -27,10 + 1524: 25,26 + 1567: -56,-53 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 2631: -19,40 + 2327: -19,40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 2952: -21,-15 - 2962: -13,-15 - 3018: -13,-19 - 3046: -29,-16 - 3091: -12,-9 + 2536: -21,-15 + 2546: -13,-15 + 2602: -13,-19 + 2630: -29,-16 + 2675: -12,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 2191: -2,-33 + 2048: -2,-33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2247: -22,-41 - 2268: -16,-39 - 2300: -6,-28 - 2849: -40,19 + 2433: -40,19 + 2977: -25,-45 + 2978: -26,-43 + 2979: -20,-45 + 2987: -14,-46 + 2989: -20,-49 + 2996: -21,-57 + 3021: -1,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 2951: -21,-15 - 2997: -13,-19 + 2535: -21,-15 + 2581: -13,-19 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 2632: -21,40 + 2328: -21,40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 2953: -23,-15 - 2961: -15,-15 - 3019: -19,-19 - 3047: -31,-16 - 3090: -16,-9 + 2537: -23,-15 + 2545: -15,-15 + 2603: -19,-19 + 2631: -31,-16 + 2674: -16,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 2192: -4,-33 + 2049: -4,-33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2246: -25,-41 - 2267: -20,-39 - 2301: -14,-28 - 2523: 5,-24 - 2528: 9,-23 - 2853: -44,19 + 2227: 5,-24 + 2232: 9,-23 + 2437: -44,19 + 2976: -23,-45 + 2985: -16,-45 + 2986: -11,-46 + 2991: -16,-49 + 2999: -15,-57 + 3010: -10,-42 + 3019: 3,-40 + 3020: 1,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 2950: -23,-15 - 2990: -19,-19 + 2534: -23,-15 + 2574: -19,-19 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 2949: -21,-24 - 2964: -13,-17 - 3016: -13,-23 - 3055: -29,-24 - 3093: -12,-13 + 2533: -21,-24 + 2548: -13,-17 + 2600: -13,-23 + 2639: -29,-24 + 2677: -12,-13 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 2193: -2,-36 + 2050: -2,-36 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 1785: 7,-30 - 2231: 3,-45 - 2249: -22,-45 - 2269: -16,-45 - 2303: -6,-32 - 2856: -40,17 + 1642: 7,-30 + 2440: -40,17 + 2974: -26,-41 + 2990: -20,-47 + 2992: -19,-51 + 2998: -21,-55 + 3013: -9,-39 + 3014: -5,-39 + 3015: -4,-38 + 3017: 0,-38 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 2946: -21,-24 - 2996: -13,-23 + 2530: -21,-24 + 2580: -13,-23 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 2476: -37,0 - 2948: -23,-24 - 2965: -15,-17 - 3017: -19,-23 - 3054: -31,-24 - 3092: -16,-13 + 2180: -37,0 + 2532: -23,-24 + 2549: -15,-17 + 2601: -19,-23 + 2638: -31,-24 + 2676: -16,-13 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 2194: -4,-36 + 2051: -4,-36 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 1784: 5,-30 - 2232: 0,-45 - 2248: -25,-45 - 2272: -20,-45 - 2302: -14,-32 - 2854: -44,17 + 1641: 5,-30 + 2438: -44,17 + 2988: -16,-47 + 2993: -17,-51 + 2997: -15,-55 + 3011: -11,-39 + 3012: -7,-39 + 3016: -2,-38 + 3018: 3,-38 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 2947: -23,-24 - 2991: -19,-23 + 2531: -23,-24 + 2575: -19,-23 + - node: + color: '#EFB34196' + id: BrickTileWhiteEndS + decals: + 2984: -20,-40 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 1608: -3,32 - 1632: -12,40 + 1465: -3,32 + 1489: -12,40 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 2939: -21,-21 + 2523: -21,-21 - node: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 2663: 12,20 + 2347: 12,20 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 2379: -11,-42 + 2980: -26,-45 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 2911: -21,-21 + 2495: -21,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 1606: -3,32 - 1634: -8,40 + 1463: -3,32 + 1491: -8,40 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 2940: -19,-21 + 2524: -19,-21 - node: color: '#79150096' id: BrickTileWhiteInnerNw decals: - 2411: 7,-9 + 2115: 7,-9 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 2662: 14,20 + 2346: 14,20 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 2378: -5,-42 - 2527: 9,-24 + 2231: 9,-24 + 3033: 3,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 2912: -19,-21 + 2496: -19,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 1609: -3,32 - 1633: -12,42 + 1466: -3,32 + 1490: -12,42 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 2937: -21,-21 + 2521: -21,-21 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 2661: 12,23 + 2345: 12,23 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 1788: 7,-25 - 2377: -11,-40 + 1645: 7,-25 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 2909: -21,-21 + 2493: -21,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 1607: -3,32 - 1631: -8,42 + 1464: -3,32 + 1488: -8,42 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 2938: -19,-21 + 2522: -19,-21 - node: color: '#79150096' id: BrickTileWhiteInnerSw decals: - 2410: 7,-4 - 2412: 7,-11 + 2114: 7,-4 + 2116: 7,-11 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 2660: 14,23 + 2344: 14,23 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 1787: 9,-25 - 2376: -5,-40 + 1644: 9,-25 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSw decals: - 2910: -19,-21 + 2494: -19,-21 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 1542: -4,29 - 1543: -4,30 - 1544: -4,31 - 1545: -4,33 - 1546: -4,35 - 1547: -15,29 - 1548: -15,30 - 1549: -15,31 - 1550: -15,33 - 1551: -15,35 - 1629: -12,41 - 2672: -40,-61 + 1399: -4,29 + 1400: -4,30 + 1401: -4,31 + 1402: -4,33 + 1403: -4,35 + 1404: -15,29 + 1405: -15,30 + 1406: -15,31 + 1407: -15,33 + 1408: -15,35 + 1486: -12,41 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2675: -40,-63 - 2929: -21,-17 - 2930: -21,-18 - 2931: -21,-19 - 2932: -21,-20 - 2933: -21,-22 - 2934: -21,-23 - 2963: -13,-16 - 3005: -13,-22 - 3006: -13,-21 - 3007: -13,-20 - 3041: -29,-22 - 3042: -29,-21 - 3043: -29,-20 - 3044: -29,-19 - 3045: -29,-18 - 3094: -12,-12 - 3095: -12,-10 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineE - decals: - 2684: -37,-60 - 2685: -37,-59 - 2686: -37,-58 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 2671: -40,-59 + 2513: -21,-17 + 2514: -21,-18 + 2515: -21,-19 + 2516: -21,-20 + 2517: -21,-22 + 2518: -21,-23 + 2547: -13,-16 + 2589: -13,-22 + 2590: -13,-21 + 2591: -13,-20 + 2625: -29,-22 + 2626: -29,-21 + 2627: -29,-20 + 2628: -29,-19 + 2629: -29,-18 + 2678: -12,-12 + 2679: -12,-10 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 2655: 12,21 - 2656: 12,22 - 2676: -40,-64 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineE - decals: - 2696: -42,-60 - 2697: -42,-59 - 2698: -42,-58 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineE - decals: - 2693: -42,-64 - 2694: -42,-63 - 2695: -42,-62 + 2339: 12,21 + 2340: 12,22 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 2197: -2,-35 - 2198: -2,-34 - 2681: -37,-64 - 2682: -37,-63 - 2683: -37,-62 + 2054: -2,-35 + 2055: -2,-34 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 1775: 7,-29 - 1776: 7,-28 - 1777: 7,-27 - 1778: 7,-26 - 2201: -4,-35 - 2202: -4,-34 - 2225: 3,-42 - 2226: 3,-41 - 2227: 3,-40 - 2228: 3,-39 - 2229: 3,-43 - 2230: 3,-44 - 2252: -22,-44 - 2275: -16,-44 - 2276: -16,-43 - 2311: -6,-31 - 2312: -6,-30 - 2313: -6,-29 - 2668: -40,-58 - 2858: -40,18 + 1632: 7,-29 + 1633: 7,-28 + 1634: 7,-27 + 1635: 7,-26 + 2058: -4,-35 + 2059: -4,-34 + 2442: -40,18 + 2975: -26,-40 + 2981: -26,-44 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 2903: -21,-23 - 2904: -21,-22 - 2905: -21,-20 - 2906: -21,-19 - 2915: -21,-18 - 2916: -21,-17 - 3002: -13,-22 - 3003: -13,-21 - 3004: -13,-20 + 2487: -21,-23 + 2488: -21,-22 + 2489: -21,-20 + 2490: -21,-19 + 2499: -21,-18 + 2500: -21,-17 + 2586: -13,-22 + 2587: -13,-21 + 2588: -13,-20 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1503: -18,37 - 1504: -19,37 - 1505: -20,37 - 1506: -21,37 - 1507: -22,37 - 1508: -25,37 - 1509: -26,37 - 1510: -28,37 - 1511: -24,37 - 1626: -9,40 - 1627: -10,40 - 1628: -11,40 + 1360: -18,37 + 1361: -19,37 + 1362: -20,37 + 1363: -21,37 + 1364: -22,37 + 1365: -25,37 + 1366: -26,37 + 1367: -28,37 + 1368: -24,37 + 1483: -9,40 + 1484: -10,40 + 1485: -11,40 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 2941: -20,-21 - 3008: -15,-19 - 3009: -16,-19 - 3010: -17,-19 - 3011: -18,-19 - 3096: -13,-9 - 3097: -14,-9 - 3098: -15,-9 + 2525: -20,-21 + 2592: -15,-19 + 2593: -16,-19 + 2594: -17,-19 + 2595: -18,-19 + 2680: -13,-9 + 2681: -14,-9 + 2682: -15,-9 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 2553: 17,16 - 2554: 18,16 - 2653: 13,20 + 2337: 13,20 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 2199: -3,-33 - 2243: -3,-39 + 2056: -3,-33 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 2205: -3,-34 - 2256: -24,-41 - 2257: -23,-41 - 2273: -17,-39 - 2274: -18,-39 - 2314: -7,-28 - 2315: -8,-28 - 2316: -9,-28 - 2317: -10,-28 - 2318: -11,-28 - 2319: -12,-28 - 2320: -13,-28 - 2371: -6,-42 - 2372: -7,-42 - 2373: -8,-42 - 2374: -9,-42 - 2375: -10,-42 - 2524: 8,-24 - 2526: 7,-24 - 2529: 10,-23 - 2530: 11,-23 - 2531: 12,-23 - 2532: 13,-23 - 2850: -41,19 - 2851: -42,19 - 2852: -43,19 + 2062: -3,-34 + 2228: 8,-24 + 2230: 7,-24 + 2233: 10,-23 + 2234: 11,-23 + 2235: 12,-23 + 2434: -41,19 + 2435: -42,19 + 2436: -43,19 + 2982: -22,-45 + 2983: -21,-45 + 3022: -9,-42 + 3023: -8,-42 + 3024: -6,-42 + 3025: -7,-42 + 3026: -5,-42 + 3027: -4,-42 + 3028: -3,-42 + 3029: -2,-42 + 3030: 2,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 1459: -26,39 - 1460: -28,39 - 1461: -27,39 - 2914: -20,-21 - 2998: -15,-19 - 2999: -16,-19 - 3000: -17,-19 - 3001: -18,-19 + 1316: -26,39 + 1317: -28,39 + 1318: -27,39 + 2498: -20,-21 + 2582: -15,-19 + 2583: -16,-19 + 2584: -17,-19 + 2585: -18,-19 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 1623: -9,42 - 1624: -10,42 - 1625: -11,42 + 1480: -9,42 + 1481: -10,42 + 1482: -11,42 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2474: -34,0 - 2475: -36,0 - 2942: -20,-21 - 3012: -17,-23 - 3013: -16,-23 - 3014: -15,-23 - 3015: -14,-23 - 3056: -30,-24 - 3100: -13,-13 - 3101: -15,-13 + 2178: -34,0 + 2179: -36,0 + 2526: -20,-21 + 2596: -17,-23 + 2597: -16,-23 + 2598: -15,-23 + 2599: -14,-23 + 2640: -30,-24 + 2684: -13,-13 + 2685: -15,-13 - node: color: '#79150096' id: BrickTileWhiteLineS decals: - 2407: 6,-4 - 2408: 5,-4 - 2409: 3,-4 + 2111: 6,-4 + 2112: 5,-4 + 2113: 3,-4 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2552: 17,14 - 2654: 13,23 + 2338: 13,23 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 2200: -3,-36 + 2057: -3,-36 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 2206: -3,-35 - 2235: 2,-45 - 2236: 1,-45 - 2250: -23,-45 - 2251: -24,-45 - 2270: -19,-45 - 2271: -17,-45 - 2304: -7,-32 - 2305: -8,-32 - 2306: -9,-32 - 2307: -10,-32 - 2308: -11,-32 - 2309: -12,-32 - 2310: -13,-32 - 2366: -6,-40 - 2367: -7,-40 - 2368: -8,-40 - 2369: -9,-40 - 2370: -10,-40 - 2525: 8,-25 - 2855: -43,17 - 2857: -42,17 + 2063: -3,-35 + 2229: 8,-25 + 2439: -43,17 + 2441: -42,17 + 2994: -20,-51 + 2995: -16,-51 + 3031: -10,-39 + 3032: -6,-39 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 1458: -27,39 - 2913: -20,-21 - 2992: -17,-23 - 2993: -16,-23 - 2994: -15,-23 - 2995: -14,-23 + 1315: -27,39 + 2497: -20,-21 + 2576: -17,-23 + 2577: -16,-23 + 2578: -15,-23 + 2579: -14,-23 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 1536: -16,29 - 1537: -16,30 - 1538: -16,31 - 1539: -16,32 - 1540: -16,33 - 1541: -16,35 - 1552: -5,29 - 1553: -5,30 - 1554: -5,31 - 1555: -5,33 - 1556: -5,35 - 1630: -8,41 - 2673: -37,-61 + 1393: -16,29 + 1394: -16,30 + 1395: -16,31 + 1396: -16,32 + 1397: -16,33 + 1398: -16,35 + 1409: -5,29 + 1410: -5,30 + 1411: -5,31 + 1412: -5,33 + 1413: -5,35 + 1487: -8,41 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 2674: -37,-63 - 2923: -23,-22 - 2924: -23,-21 - 2925: -23,-20 - 2926: -23,-19 - 2927: -23,-18 - 2928: -23,-16 - 2935: -19,-22 - 2936: -19,-20 - 3048: -31,-17 - 3049: -31,-19 - 3050: -31,-20 - 3051: -31,-21 - 3052: -31,-22 - 3053: -31,-23 - 3099: -16,-12 + 2507: -23,-22 + 2508: -23,-21 + 2509: -23,-20 + 2510: -23,-19 + 2511: -23,-18 + 2512: -23,-16 + 2519: -19,-22 + 2520: -19,-20 + 2632: -31,-17 + 2633: -31,-19 + 2634: -31,-20 + 2635: -31,-21 + 2636: -31,-22 + 2637: -31,-23 + 2683: -16,-12 - node: color: '#79150096' id: BrickTileWhiteLineW decals: - 2402: 7,-12 - 2403: 7,-8 - 2404: 7,-7 - 2405: 7,-6 - 2406: 7,-5 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 2687: -35,-60 - 2688: -35,-59 - 2689: -35,-58 - - node: - color: '#A4610696' - id: BrickTileWhiteLineW - decals: - 2670: -37,-59 + 2106: 7,-12 + 2107: 7,-8 + 2108: 7,-7 + 2109: 7,-6 + 2110: 7,-5 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 2658: 14,21 - 2659: 14,22 - 2677: -37,-64 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineW - decals: - 2699: -40,-60 - 2700: -40,-59 - 2701: -40,-58 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineW - decals: - 2690: -40,-64 - 2691: -40,-63 - 2692: -40,-62 + 2342: 14,21 + 2343: 14,22 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 2195: -4,-35 - 2196: -4,-34 - 2678: -35,-64 - 2679: -35,-63 - 2680: -35,-62 + 2052: -4,-35 + 2053: -4,-34 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 1779: 5,-28 - 1780: 5,-27 - 1781: 5,-29 - 1782: 5,-26 - 1783: 5,-25 - 1786: 9,-26 - 2203: -2,-35 - 2204: -2,-34 - 2233: 0,-44 - 2234: 0,-43 - 2253: -25,-44 - 2254: -25,-43 - 2255: -25,-42 - 2264: -20,-44 - 2265: -20,-41 - 2266: -20,-40 - 2321: -14,-31 - 2322: -14,-29 - 2669: -37,-58 + 1636: 5,-28 + 1637: 5,-27 + 1638: 5,-29 + 1639: 5,-26 + 1640: 5,-25 + 1643: 9,-26 + 2060: -2,-35 + 2061: -2,-34 + 3034: 3,-41 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 2907: -19,-22 - 2908: -19,-20 - 2917: -23,-22 - 2918: -23,-21 - 2919: -23,-20 - 2920: -23,-19 - 2921: -23,-18 - 2922: -23,-16 + 2491: -19,-22 + 2492: -19,-20 + 2501: -23,-22 + 2502: -23,-21 + 2503: -23,-20 + 2504: -23,-19 + 2505: -23,-18 + 2506: -23,-16 - node: color: '#FFFFFFFF' id: Busha1 decals: 367: -40.05385,30.256437 - - node: - color: '#FFFFFFFF' - id: Busha2 - decals: - 1104: -25.204376,3.9985995 - node: color: '#FFFFFFFF' id: Busha3 decals: - 1045: -67.012436,-29.136745 + 965: -67.012436,-29.136745 - node: color: '#9FED5896' id: Bushb1 decals: - 1078: 5.955755,-11.904804 + 998: 5.955755,-11.904804 - node: color: '#FFFFFFFF' id: Bushb1 @@ -1710,152 +1556,143 @@ entities: color: '#9FED5896' id: Bushb3 decals: - 1076: 5.424505,-4.9673038 + 996: 5.424505,-4.9673038 - node: color: '#FFFFFFFF' id: Bushb3 decals: 365: -39.256973,28.912687 - 1040: -71.06114,-43.947823 - 1733: -52.14543,-42.415432 + 960: -71.06114,-43.947823 + 1590: -52.14543,-42.415432 - node: color: '#9FED5896' id: Bushc1 decals: - 1075: 6.03388,-7.2173038 + 995: 6.03388,-7.2173038 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 949: -12.158052,22.978218 + 884: -12.158052,22.978218 - node: color: '#9FED5896' id: Bushc2 decals: - 1074: 6,-8 - 1077: 2.9401298,-4.9985538 + 994: 6,-8 + 997: 2.9401298,-4.9985538 - node: color: '#FFFFFFFF' id: Bushc2 decals: 366: -39.1476,33.037685 - 948: -9.158052,23.040718 + 883: -9.158052,23.040718 - node: color: '#FFFFFFFF' id: Bushc3 decals: 368: -39.11635,29.006437 - 1066: -65.91299,-37.046043 + 986: -65.91299,-37.046043 - node: color: '#FFFFFFFF' id: Bushd3 decals: - 1058: -67.06147,-29.881145 - - node: - color: '#FFFFFFFF' - id: Bushd4 - decals: - 1112: -27.485626,3.9673495 + 978: -67.06147,-29.881145 - node: color: '#FFFFFFFF' id: Bushe1 decals: - 1052: -65.58819,-29.014542 - 1111: -28.454376,3.9517245 + 972: -65.58819,-29.014542 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 1043: -71.81257,-43.137188 - 1053: -65.66631,-32.030167 - 1054: -59.71319,-35.530167 + 963: -71.81257,-43.137188 + 973: -65.66631,-32.030167 + 974: -59.71319,-35.530167 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 1055: -65.26006,-35.280167 - 1056: -59.36944,-31.748917 - 1115: -24.141876,3.9673495 + 975: -65.26006,-35.280167 + 976: -59.36944,-31.748917 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 1284: -59.021492,-29.650486 + 1184: -59.021492,-29.650486 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 1047: -65.58819,-32.131794 - 1048: -59.291313,-31.866169 + 967: -65.58819,-32.131794 + 968: -59.291313,-31.866169 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 1049: -59.74444,-35.631794 - 1050: -65.52569,-29.053669 - 1283: -59.068367,-29.628086 + 969: -59.74444,-35.631794 + 970: -65.52569,-29.053669 + 1183: -59.068367,-29.628086 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 1051: -65.27569,-35.350544 + 971: -65.27569,-35.350544 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 1059: -50.04093,-42.20576 + 979: -50.04093,-42.20576 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 1057: -66.616165,-27.440277 - 1060: -53.009384,-36.94919 + 977: -66.616165,-27.440277 + 980: -53.009384,-36.94919 - node: color: '#FFFFFFFF' id: Bushi1 decals: 375: -38.850723,30.881437 - 940: -10.897953,23.01216 - 941: -7.147953,23.059034 - 943: -12.769052,22.88716 - 3188: -20,-22 + 875: -10.897953,23.01216 + 876: -7.147953,23.059034 + 878: -12.769052,22.88716 + 2772: -20,-22 - node: color: '#FFFFFFFF' id: Bushi2 decals: 374: -40.131973,32.52206 - 1079: 5.9999943,-7.451386 + 999: 5.9999943,-7.451386 - node: color: '#FFFFFFFF' id: Bushi3 decals: 372: -38.850723,29.881437 373: -40.05385,31.053312 - 1114: -28.032501,3.9673495 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 942: -9.757328,22.85591 - 1080: 5.4999943,-5.029511 - 1113: -25.548126,3.9829745 + 877: -9.757328,22.85591 + 1000: 5.4999943,-5.029511 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 1044: -73.48444,-43.855938 - 1061: -68.11463,-38.9754 - 1067: -69.40792,-34.063843 + 964: -73.48444,-43.855938 + 981: -68.11463,-38.9754 + 987: -69.40792,-34.063843 - node: color: '#FFFFFFFF' id: Bushj2 decals: - 1062: -57.046288,-37.982056 + 982: -57.046288,-37.982056 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 1063: -49.987144,-48.963146 + 983: -49.987144,-48.963146 - node: color: '#FFFFFFFF' id: Bushk1 @@ -1871,123 +1708,120 @@ entities: color: '#FFFFFFFF' id: Bushl1 decals: - 889: -59.13713,-56.211792 - 1081: 3.0098214,-4.939097 - 1599: -9.9612665,40.993107 + 824: -59.13713,-56.211792 + 1001: 3.0098214,-4.939097 + 1456: -9.9612665,40.993107 - node: color: '#FFFFFFFF' id: Bushl2 decals: - 890: -59.79338,-57.039917 - 1082: 6.009821,-11.977411 + 825: -59.79338,-57.039917 + 1002: 6.009821,-11.977411 - node: color: '#FFFFFFFF' id: Bushm2 decals: - 891: -59.16838,-57.789917 + 826: -59.16838,-57.789917 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 892: -65.91838,-51.868042 + 827: -65.91838,-51.868042 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 950: -10.126802,23.012297 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 662: -8,-45 + 885: -10.126802,23.012297 - node: color: '#52B4E996' id: CheckerNESW decals: 520: -11,-2 - 2966: -19,-17 - 2967: -19,-16 - 2968: -19,-15 - 2969: -18,-15 - 2970: -17,-15 - 2971: -17,-16 - 2972: -18,-16 - 2973: -18,-17 - 2974: -17,-17 - 2975: -18,-22 - 2976: -18,-21 - 2977: -18,-20 - 2978: -17,-20 - 2979: -17,-21 - 2980: -17,-22 - 2981: -16,-22 - 2982: -16,-21 - 2983: -16,-20 - 2984: -15,-20 - 2985: -15,-21 - 2986: -15,-22 - 2987: -14,-22 - 2988: -14,-21 - 2989: -14,-20 - 3026: -33,-20 - 3027: -34,-20 - 3028: -35,-20 - 3029: -35,-19 - 3030: -34,-19 - 3031: -33,-19 - 3032: -33,-18 - 3033: -34,-18 - 3034: -35,-18 - 3035: -35,-17 - 3036: -34,-17 - 3037: -33,-17 - 3038: -33,-16 - 3039: -34,-16 - 3040: -35,-16 + 2550: -19,-17 + 2551: -19,-16 + 2552: -19,-15 + 2553: -18,-15 + 2554: -17,-15 + 2555: -17,-16 + 2556: -18,-16 + 2557: -18,-17 + 2558: -17,-17 + 2559: -18,-22 + 2560: -18,-21 + 2561: -18,-20 + 2562: -17,-20 + 2563: -17,-21 + 2564: -17,-22 + 2565: -16,-22 + 2566: -16,-21 + 2567: -16,-20 + 2568: -15,-20 + 2569: -15,-21 + 2570: -15,-22 + 2571: -14,-22 + 2572: -14,-21 + 2573: -14,-20 + 2610: -33,-20 + 2611: -34,-20 + 2612: -35,-20 + 2613: -35,-19 + 2614: -34,-19 + 2615: -33,-19 + 2616: -33,-18 + 2617: -34,-18 + 2618: -35,-18 + 2619: -35,-17 + 2620: -34,-17 + 2621: -33,-17 + 2622: -33,-16 + 2623: -34,-16 + 2624: -35,-16 - node: - color: '#D4D4D496' + color: '#9FED5896' id: CheckerNESW decals: - 1795: -15,8 + 2787: -28,13 + 2788: -27,13 + 2789: -29,12 + 2790: -28,11 + 2791: -27,11 + 2792: -29,10 + 2793: -28,9 + 2794: -27,9 + 2795: -29,8 + 2796: -28,7 + 2797: -27,7 - node: - color: '#EFB34196' + color: '#D4D4D496' id: CheckerNESW decals: - 1014: -20,-37 - 1015: -19,-37 - 1016: -18,-37 - 1017: -17,-37 - 1018: -16,-37 - 1019: -16,-36 - 1020: -17,-36 - 1021: -19,-36 - 1022: -19,-36 - 1023: -20,-36 - 1024: -20,-35 - 1025: -19,-35 - 1026: -18,-35 - 1027: -17,-35 - 1028: -16,-35 + 1652: -15,8 - node: color: '#52B4E996' id: CheckerNWSE decals: 516: -9,-4 - 3118: -32,-8 - 3119: -32,-7 - 3120: -32,-6 - 3121: -31,-6 - 3122: -30,-6 - 3123: -29,-6 - 3124: -28,-6 - 3125: -28,-7 - 3126: -28,-8 - 3127: -29,-8 - 3128: -29,-7 - 3129: -30,-7 - 3130: -30,-8 - 3131: -31,-8 - 3132: -31,-7 + 2702: -32,-8 + 2703: -32,-7 + 2704: -32,-6 + 2705: -31,-6 + 2706: -30,-6 + 2707: -29,-6 + 2708: -28,-6 + 2709: -28,-7 + 2710: -28,-8 + 2711: -29,-8 + 2712: -29,-7 + 2713: -30,-7 + 2714: -30,-8 + 2715: -31,-8 + 2716: -31,-7 + - node: + color: '#724276FF' + id: CheckerNWSE + decals: + 2842: 19,13 + 2843: 18,13 - node: color: '#79150096' id: CheckerNWSE @@ -2010,20 +1844,20 @@ entities: color: '#A4610696' id: CheckerNWSE decals: - 1084: 30,0 - 1085: 29,0 - 1086: 29,1 - 1087: 29,2 - 1088: 30,2 - 1089: 30,1 - 1090: 31,0 - 1091: 31,1 - 1092: 31,2 + 1004: 30,0 + 1005: 29,0 + 1006: 29,1 + 1007: 29,2 + 1008: 30,2 + 1009: 30,1 + 1010: 31,0 + 1011: 31,1 + 1012: 31,2 - node: color: '#EFB34196' id: CheckerNWSE decals: - 1119: 3,-28 + 1019: 3,-28 - node: color: '#FFFFFFFF' id: Delivery @@ -2051,71 +1885,68 @@ entities: 628: 3,-35 629: 3,-34 630: 3,-33 - 712: 14,-12 - 713: 14,-11 - 714: 14,-10 - 1145: 16,-2 - 1146: 17,-2 - 1238: 31,-6 - 1239: 31,-5 - 1240: 31,-4 - 1255: 18,-15 - 1256: 18,-14 - 1257: 19,-14 - 1258: 19,-15 - 1300: 38,7 - 1301: 39,7 - 1302: 40,7 - 1321: 28,9 - 1322: 28,10 - 1323: 26,9 - 1324: 26,10 - 2207: 4,-30 - 2291: -15,-42 - 2292: -15,-41 - 2293: -15,-40 - 2294: -1,-42 - 2295: -1,-41 - 2296: -1,-40 - 2841: -8,-49 - 3180: -13,-8 - 3181: -12,-8 + 652: 14,-12 + 653: 14,-11 + 654: 14,-10 + 1045: 16,-2 + 1046: 17,-2 + 1138: 31,-6 + 1139: 31,-5 + 1140: 31,-4 + 1155: 18,-15 + 1156: 18,-14 + 1157: 19,-14 + 1158: 19,-15 + 1200: 38,7 + 1201: 39,7 + 1202: 40,7 + 1221: 28,9 + 1222: 28,10 + 1223: 26,9 + 1224: 26,10 + 2064: 4,-30 + 2764: -13,-8 + 2765: -12,-8 + 2868: 14,-24 + 2869: 14,-25 + 2870: 10,-31 + 2871: 11,-31 - node: color: '#FFFFFFFF' id: DiagonalCheckerAOverlay decals: - 1658: -29,22 - 1659: -28,22 - 1660: -27,22 - 1661: -26,22 - 1662: -26,23 - 1663: -27,23 - 1664: -28,23 - 1665: -29,23 + 1515: -29,22 + 1516: -28,22 + 1517: -27,22 + 1518: -26,22 + 1519: -26,23 + 1520: -27,23 + 1521: -28,23 + 1522: -29,23 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 923: -27,-36 - 924: -28,-38 - 925: -23,-36 - 926: -25,-38 - 2888: -41,-11 - 2889: -42,-13 - 2890: -43,-17 - 2891: -42,-16 - 2892: -42,-17 - 2893: -41,-16 - 2894: -42,-12 - 2895: -41,-9 - 2896: -42,-8 - 2897: -42,-7 - 2898: -39,-7 - 2899: -39,-6 - 2900: -38,-7 - 2901: -38,-8 - 2902: -40,-7 + 858: -27,-36 + 859: -28,-38 + 860: -23,-36 + 861: -25,-38 + 2472: -41,-11 + 2473: -42,-13 + 2474: -43,-17 + 2475: -42,-16 + 2476: -42,-17 + 2477: -41,-16 + 2478: -42,-12 + 2479: -41,-9 + 2480: -42,-8 + 2481: -42,-7 + 2482: -39,-7 + 2483: -39,-6 + 2484: -38,-7 + 2485: -38,-8 + 2486: -40,-7 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -2126,9 +1957,8 @@ entities: 232: -49,40 245: -34,57 246: -31,59 - 681: 1,-38 - 762: 53,19 - 763: 53,20 + 697: 53,19 + 698: 53,20 - node: cleanable: True color: '#FFFFFFFF' @@ -2139,32 +1969,31 @@ entities: 403: -28,32 404: -28,31 405: -31,30 - 893: -76,-57 - 894: -76,-56 - 895: -77,-55 - 896: -79,-54 - 910: -22,-38 - 911: -23,-38 - 912: -24,-36 - 913: -25,-36 - 914: -25,-36 - 1165: 23,-12 - 1166: 23,-11 - 1167: 24,-12 - 1168: 34,-12 - 1169: 35,-11 - 1170: 32,-12 - 1171: 31,-10 - 2331: -13,-31 - 2332: -11,-32 - 2481: -19,19 - 2482: -14,19 - 2483: -21,18 - 2486: -15,19 - 2866: -40,-8 - 2867: -41,-7 - 2868: -42,-14 - 2869: -42,-17 + 828: -76,-57 + 829: -76,-56 + 830: -77,-55 + 831: -79,-54 + 845: -22,-38 + 846: -23,-38 + 847: -24,-36 + 848: -25,-36 + 849: -25,-36 + 1065: 23,-12 + 1066: 23,-11 + 1067: 24,-12 + 1068: 34,-12 + 1069: 35,-11 + 1070: 32,-12 + 1071: 31,-10 + 2075: -13,-31 + 2185: -19,19 + 2186: -14,19 + 2187: -21,18 + 2190: -15,19 + 2450: -40,-8 + 2451: -41,-7 + 2452: -42,-14 + 2453: -42,-17 - node: color: '#FFFFFFFF' id: DirtLight @@ -2194,25 +2023,22 @@ entities: 260: -40,42 262: -48,42 263: -37,40 - 690: -19,-44 - 691: -17,-42 - 692: -14,-40 - 693: -19,-42 - 694: -23,-43 - 695: -1,-40 - 696: -4,-41 - 697: 1,-40 - 698: 0,-39 - 699: 2,-38 - 700: 2,-39 - 701: 1,-34 - 702: 1,-31 - 758: 43,22 - 759: 45,22 - 760: 52,19 - 761: 51,20 - 764: 50,19 - 770: 45,23 + 641: -19,-44 + 642: -17,-42 + 643: -19,-42 + 644: -23,-43 + 645: -4,-41 + 646: 1,-40 + 647: 0,-39 + 648: 2,-39 + 649: 1,-34 + 650: 1,-31 + 693: 43,22 + 694: 45,22 + 695: 52,19 + 696: 51,20 + 699: 50,19 + 705: 45,23 - node: cleanable: True color: '#FFFFFFFF' @@ -2229,120 +2055,102 @@ entities: 419: -32,27 420: -26,28 421: -33,27 - 742: 20,-11 - 743: 21,-10 - 744: 17,-11 - 745: 17,-12 - 746: 19,-8 - 903: -78,-53 - 904: -76,-53 - 905: -78,-56 - 906: -79,-56 - 907: -80,-53 - 908: -79,-52 - 909: -76,-55 - 1002: 27,0 - 1003: 28,1 - 1004: 29,1 - 1177: 24,-11 - 1178: 24,-10 - 1179: 23,-10 - 1180: 26,-12 - 1181: 31,-12 - 1182: 32,-11 - 1183: 33,-10 - 1184: 34,-11 - 1185: 33,-12 - 1186: 32,-9 - 1187: 33,-9 - 1188: 24,-9 - 1189: 21,-9 - 1190: 24,-8 - 1191: 23,-8 - 1223: 29,-2 - 1224: 30,-3 - 1225: 31,-4 - 1226: 32,-4 - 1227: 30,0 - 1228: 33,-7 - 1229: 32,-8 - 1230: 24,-8 - 1231: 25,-7 - 1232: 26,-6 - 1233: 23,-3 - 1234: 22,-2 - 1235: 21,-2 - 1589: -1,29 - 1835: -58,15 - 1836: -57,16 - 1837: -58,21 - 1838: -57,20 - 1839: -57,23 - 1841: -51,14 - 1842: -51,15 - 1843: -56,20 - 1847: -4,27 - 1848: -6,27 - 1849: -14,26 - 1850: -19,27 - 1851: -26,28 - 1852: -26,27 - 1853: -27,26 - 1854: -25,25 - 1855: -27,31 - 1856: -39,37 - 1857: -37,36 - 1858: -36,35 - 1859: -41,43 - 1860: -47,52 - 1861: -49,53 - 1862: -47,56 - 2338: -13,-32 - 2339: -11,-31 - 2340: -9,-32 - 2341: -10,-30 - 2342: -10,-31 - 2343: -11,-29 - 2344: -11,-28 - 2345: -13,-29 - 2346: -14,-30 - 2347: -13,-33 - 2348: -13,-34 - 2349: -19,-41 - 2350: -20,-42 - 2351: -20,-44 - 2352: -20,-44 - 2353: -22,-44 - 2354: -22,-43 - 2355: -22,-41 - 2356: -25,-41 - 2357: -26,-41 - 2358: -26,-42 - 2359: -24,-43 - 2360: -24,-45 - 2361: -25,-44 - 2362: -12,-39 - 2363: -12,-40 - 2364: -9,-39 - 2365: -8,-39 - 2484: -18,19 - 2485: -21,19 - 2487: -16,19 - 2488: -22,19 - 2489: -31,16 - 2490: -31,17 - 2491: -7,18 - 2870: -41,-13 - 2871: -42,-10 - 2872: -42,-9 - 2873: -41,-8 - 2874: -40,-7 - 2884: -42,-15 - 2885: -42,-15 - 2886: -42,-14 - 2887: -42,-13 - 3158: -18,-9 - 3159: -23,-12 + 682: 20,-11 + 683: 21,-10 + 684: 17,-11 + 685: 17,-12 + 686: 19,-8 + 838: -78,-53 + 839: -76,-53 + 840: -78,-56 + 841: -79,-56 + 842: -80,-53 + 843: -79,-52 + 844: -76,-55 + 937: 27,0 + 938: 28,1 + 939: 29,1 + 1077: 24,-11 + 1078: 24,-10 + 1079: 23,-10 + 1080: 26,-12 + 1081: 31,-12 + 1082: 32,-11 + 1083: 33,-10 + 1084: 34,-11 + 1085: 33,-12 + 1086: 32,-9 + 1087: 33,-9 + 1088: 24,-9 + 1089: 21,-9 + 1090: 24,-8 + 1091: 23,-8 + 1123: 29,-2 + 1124: 30,-3 + 1125: 31,-4 + 1126: 32,-4 + 1127: 30,0 + 1128: 33,-7 + 1129: 32,-8 + 1130: 24,-8 + 1131: 25,-7 + 1132: 26,-6 + 1133: 23,-3 + 1134: 22,-2 + 1135: 21,-2 + 1446: -1,29 + 1692: -58,15 + 1693: -57,16 + 1694: -58,21 + 1695: -57,20 + 1696: -57,23 + 1698: -51,14 + 1699: -51,15 + 1700: -56,20 + 1704: -4,27 + 1705: -6,27 + 1706: -14,26 + 1707: -19,27 + 1708: -26,28 + 1709: -26,27 + 1710: -27,26 + 1711: -25,25 + 1712: -27,31 + 1713: -39,37 + 1714: -37,36 + 1715: -36,35 + 1716: -41,43 + 1717: -47,52 + 1718: -49,53 + 1719: -47,56 + 2078: -11,-31 + 2079: -10,-30 + 2080: -10,-31 + 2081: -11,-29 + 2082: -13,-29 + 2083: -14,-30 + 2084: -13,-33 + 2085: -13,-34 + 2086: -19,-41 + 2087: -24,-43 + 2188: -18,19 + 2189: -21,19 + 2191: -16,19 + 2192: -22,19 + 2193: -31,16 + 2194: -31,17 + 2195: -7,18 + 2454: -41,-13 + 2455: -42,-10 + 2456: -42,-9 + 2457: -41,-8 + 2458: -40,-7 + 2468: -42,-15 + 2469: -42,-15 + 2470: -42,-14 + 2471: -42,-13 + 2742: -18,-9 + 2743: -23,-12 - node: color: '#FFFFFFFF' id: DirtMedium @@ -2355,21 +2163,17 @@ entities: 244: -35,58 253: -36,54 261: -48,41 - 682: 0,-38 - 683: 1,-39 - 684: 0,-40 - 685: -18,-44 - 686: -19,-43 - 687: -23,-44 - 688: -18,-42 - 689: -16,-41 - 756: 46,23 - 757: 43,21 - 765: 52,19 - 766: 43,22 - 767: 46,23 - 768: 46,22 - 769: 44,23 + 637: 1,-39 + 638: -23,-44 + 639: -18,-42 + 640: -16,-41 + 691: 46,23 + 692: 43,21 + 700: 52,19 + 701: 43,22 + 702: 46,23 + 703: 46,22 + 704: 44,23 - node: cleanable: True color: '#FFFFFFFF' @@ -2380,45 +2184,42 @@ entities: 408: -30,30 409: -32,29 410: -31,32 - 741: 21,-11 - 897: -78,-54 - 898: -79,-55 - 899: -79,-53 - 900: -80,-53 - 901: -76,-54 - 902: -77,-53 - 915: -26,-36 - 916: -27,-37 - 1001: 27,1 - 1172: 32,-10 - 1173: 31,-11 - 1174: 30,-11 - 1175: 25,-12 - 1176: 26,-11 - 1220: 34,-7 - 1221: 30,-2 - 1222: 31,-3 - 1590: 3,29 - 1840: -58,13 - 2333: -10,-32 - 2334: -12,-31 - 2335: -12,-32 - 2336: -14,-31 - 2337: -12,-29 - 2875: -39,-8 - 2876: -42,-6 - 2877: -42,-7 - 2878: -41,-8 - 2879: -41,-12 - 2880: -42,-11 - 2881: -38,-8 - 2882: -38,-6 - 2883: -39,-7 + 681: 21,-11 + 832: -78,-54 + 833: -79,-55 + 834: -79,-53 + 835: -80,-53 + 836: -76,-54 + 837: -77,-53 + 850: -26,-36 + 851: -27,-37 + 936: 27,1 + 1072: 32,-10 + 1073: 31,-11 + 1074: 30,-11 + 1075: 25,-12 + 1076: 26,-11 + 1120: 34,-7 + 1121: 30,-2 + 1122: 31,-3 + 1447: 3,29 + 1697: -58,13 + 2076: -12,-31 + 2077: -12,-29 + 2459: -39,-8 + 2460: -42,-6 + 2461: -42,-7 + 2462: -41,-8 + 2463: -41,-12 + 2464: -42,-11 + 2465: -38,-8 + 2466: -38,-6 + 2467: -39,-7 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 3186: -20,-20 + 2770: -20,-20 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -2426,54 +2227,52 @@ entities: 75: -55,17 76: -53,18 77: -54.752693,18.73386 - 882: -59.152756,-56.526844 + 817: -59.152756,-56.526844 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 877: -64.66838,-52.26122 - 878: -65.559006,-53.82372 - 879: -64.94963,-56.339344 - 880: -59.777756,-52.66747 - 1110: -24.157501,3.9829745 - 1598: -10.5706415,40.97748 + 812: -64.66838,-52.26122 + 813: -65.559006,-53.82372 + 814: -64.94963,-56.339344 + 815: -59.777756,-52.66747 + 1455: -10.5706415,40.97748 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: 62: -53,22 63: -55,14 - 881: -60.121506,-53.44872 + 816: -60.121506,-53.44872 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 883: -62.184006,-55.76122 - 884: -61.777756,-56.370594 - 885: -62.152756,-53.308094 - 1597: -9.3987665,40.961857 + 818: -62.184006,-55.76122 + 819: -61.777756,-56.370594 + 820: -62.152756,-53.308094 + 1454: -9.3987665,40.961857 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: 81: -54.471443,18.20261 82: -53.533943,17.17136 - 886: -58.996506,-57.370594 - 887: -62.88713,-57.995594 + 821: -58.996506,-57.370594 + 822: -62.88713,-57.995594 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: 64: -53,14 65: -55,22 - 888: -59.809006,-54.414917 - 1107: -25.970001,3.9985995 - 3187: -20,-23 + 823: -59.809006,-54.414917 + 2771: -20,-23 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 947: -13.0907,22.978218 + 882: -13.0907,22.978218 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -2485,103 +2284,108 @@ entities: 78: -53.471443,17.280735 79: -54.76832,17.48386 376: -39.80385,29.303312 - 869: -64.98088,-57.620594 - 870: -62.090256,-57.776844 - 871: -61.10588,-57.13622 - 872: -60.090256,-57.91747 - 873: -64.152756,-53.683094 - 874: -62.69963,-52.51122 - 1108: -28.032501,3.9985995 - 1596: -9.9456415,40.993107 + 804: -64.98088,-57.620594 + 805: -62.090256,-57.776844 + 806: -61.10588,-57.13622 + 807: -60.090256,-57.91747 + 808: -64.152756,-53.683094 + 809: -62.69963,-52.51122 + 1453: -9.9456415,40.993107 - node: color: '#FFFFFFFF' id: Flowersy3 decals: 377: -39.4601,29.881437 - 876: -65.652756,-52.401844 - 944: -7.856325,22.931343 + 811: -65.652756,-52.401844 + 879: -7.856325,22.931343 - node: color: '#FFFFFFFF' id: Flowersy4 decals: 80: -53.61207,18.499485 378: -39.069473,32.17831 - 875: -63.26213,-53.76122 - 945: -10.293825,23.009468 - 946: -11.18445,22.978218 - 1109: -28.938751,3.9985995 - 3185: -20,-19 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 2718: -30,-62 + 810: -63.26213,-53.76122 + 880: -10.293825,23.009468 + 881: -11.18445,22.978218 + 2769: -20,-19 - node: color: '#4A8F37B1' id: FullTileOverlayGreyscale decals: - 1885: 5,23 - 1886: 6,23 - 1887: 3,23 - 1888: 2,23 - 1889: 2,20 - 1890: 2,21 - 1891: 3,20 - 1892: 5,20 - 1893: 6,20 - 1894: 6,21 + 1742: 5,23 + 1743: 6,23 + 1744: 3,23 + 1745: 2,23 + 1746: 2,20 + 1747: 2,21 + 1748: 3,20 + 1749: 5,20 + 1750: 6,20 + 1751: 6,21 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 3085: -14,-12 - 3086: -14,-11 - 3087: -14,-10 - 3088: -15,-11 - 3089: -13,-11 - 3133: -25,-14 - 3134: -26,-14 - 3155: -20,-5 - 3156: -18,-5 - 3160: -20,-7 - 3161: -18,-7 + 2669: -14,-12 + 2670: -14,-11 + 2671: -14,-10 + 2672: -15,-11 + 2673: -13,-11 + 2717: -25,-14 + 2718: -26,-14 + 2739: -20,-5 + 2740: -18,-5 + 2744: -20,-7 + 2745: -18,-7 - node: color: '#79150096' id: FullTileOverlayGreyscale decals: - 808: -76,-46 - 809: -77,-46 - 810: -78,-46 - 811: -79,-46 - 812: -80,-46 - 813: -81,-46 + 743: -76,-46 + 744: -77,-46 + 745: -78,-46 + 746: -79,-46 + 747: -80,-46 + 748: -81,-46 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 2798: -29,7 + 2799: -29,9 + 2800: -29,11 + 2801: -29,13 + 2802: -26,13 + 2803: -23,13 + 2804: -23,12 + 2805: -24,5 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 1093: 28,1 - 1094: 30,-1 - 1095: 20,-1 + 1013: 28,1 + 1014: 30,-1 + 1015: 20,-1 - node: color: '#D4D4D406' id: FullTileOverlayGreyscale decals: - 2413: -22,-6 - 2414: -23,-6 - 2415: -24,-6 - 2416: -25,-6 - 2417: -26,-6 - 2418: -25,-5 - 2419: -25,-4 - 2420: -25,-3 - 2421: -25,-2 - 2422: -25,-1 - 2423: -23,-5 - 2424: -23,-4 - 2425: -23,-3 - 2426: -23,-2 - 2427: -23,-1 - 2428: -24,-1 + 2117: -22,-6 + 2118: -23,-6 + 2119: -24,-6 + 2120: -25,-6 + 2121: -26,-6 + 2122: -25,-5 + 2123: -25,-4 + 2124: -25,-3 + 2125: -25,-2 + 2126: -25,-1 + 2127: -23,-5 + 2128: -23,-4 + 2129: -23,-3 + 2130: -23,-2 + 2131: -23,-1 + 2132: -24,-1 - node: color: '#D4D4D428' id: FullTileOverlayGreyscale @@ -2602,56 +2406,52 @@ entities: 479: -19,-4 480: 13,19 481: -38,10 - 680: -1,-34 - 1083: -19,0 - 2189: -3,-37 - 2190: -3,-32 + 636: -1,-34 + 1003: -19,0 + 2046: -3,-37 + 2047: -3,-32 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 711: -11,-34 - 2244: -26,-42 - 2245: -26,-41 + 651: -11,-34 - node: color: '#FFFFFFFF' id: Grassb1 decals: 370: -39.100723,32.30331 - 936: -7.3405266,22.973469 - 939: -11.434277,23.035969 - 1064: -56.986298,-31.010326 - 1065: -59.069237,-37.03042 - 1735: -70.08625,-34.436035 + 871: -7.3405266,22.973469 + 874: -11.434277,23.035969 + 984: -56.986298,-31.010326 + 985: -59.069237,-37.03042 + 1592: -70.08625,-34.436035 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 1038: -74.07677,-44.072823 - 1046: -67.18431,-28.324245 - 1102: -29.016876,3.9360995 - 1732: -53.955444,-43.088474 + 958: -74.07677,-44.072823 + 966: -67.18431,-28.324245 + 1589: -53.955444,-43.088474 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 1039: -71.98302,-44.010323 - 1103: -24.048126,3.9673495 + 959: -71.98302,-44.010323 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 938: -8.387402,22.973469 - 1041: -70.92052,-43.057198 - 1734: -52.942307,-42.899807 + 873: -8.387402,22.973469 + 961: -70.92052,-43.057198 + 1591: -52.942307,-42.899807 - node: color: '#FFFFFFFF' id: Grassb5 decals: 369: -39.881973,31.162687 371: -40.0851,28.850187 - 937: -12.856152,23.020344 - 1042: -73.10302,-35.91218 + 872: -12.856152,23.020344 + 962: -73.10302,-35.91218 - node: color: '#FFFFFFFF' id: Grassd1 @@ -2668,79 +2468,86 @@ entities: 357: -39.2726,29.881437 358: -39.694473,32.58456 359: -39.163223,31.818935 - 866: -65.69963,-54.183094 - 867: -59.934006,-54.276844 - 868: -60.98088,-57.745594 - 1100: -24.516876,4.0142245 + 801: -65.69963,-54.183094 + 802: -59.934006,-54.276844 + 803: -60.98088,-57.745594 + 2779: -27.285925,4.265137 + 2780: -29.097805,5.111672 - node: color: '#FFFFFFFF' id: Grassd2 decals: 83: -53.596443,17.79636 356: -39.7726,29.178312 - 848: -65.01213,-58.04247 - 849: -62.29338,-52.69872 - 850: -61.684006,-53.433094 - 851: -65.027756,-53.464344 - 852: -62.809006,-53.32372 - 932: -12.746777,23.114094 - 933: -6.8249016,22.957844 - 1099: -24.048126,4.0298495 - 3182: -20,-23 + 783: -65.01213,-58.04247 + 784: -62.29338,-52.69872 + 785: -61.684006,-53.433094 + 786: -65.027756,-53.464344 + 787: -62.809006,-53.32372 + 867: -12.746777,23.114094 + 868: -6.8249016,22.957844 + 2766: -20,-23 + 2776: -28.74137,4.8443456 + 2777: -28.177013,4.08692 + 2778: -23.974043,4.0126615 + 2785: -27.285925,5.6760283 + 2786: -25.503746,4.9037514 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 853: -63.38713,-53.72997 - 854: -59.98088,-52.35497 - 855: -65.01213,-57.19872 - 856: -60.19963,-57.464344 - 857: -59.41838,-56.79247 - 934: -9.168652,22.942219 - 935: -10.309277,23.067219 + 788: -63.38713,-53.72997 + 789: -59.98088,-52.35497 + 790: -65.01213,-57.19872 + 791: -60.19963,-57.464344 + 792: -59.41838,-56.79247 + 869: -9.168652,22.942219 + 870: -10.309277,23.067219 + 2782: -26.157211,4.161177 + 2783: -27.865131,5.1859293 + 2784: -26.469091,5.022563 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 858: -65.652756,-52.41747 - 859: -58.98088,-57.97997 - 860: -64.69963,-56.44872 - 861: -62.98088,-57.776844 - 1072: 6,-7 - 1073: 3,-5 - 1098: -27.532501,4.0298495 - 3183: -20,-22 + 793: -65.652756,-52.41747 + 794: -58.98088,-57.97997 + 795: -64.69963,-56.44872 + 796: -62.98088,-57.776844 + 992: 6,-7 + 993: 3,-5 + 2767: -20,-22 + 2774: -29.14236,4.101771 + 2775: -28.696815,5.5275135 - node: color: '#FFFFFFFF' id: Grasse2 decals: 360: -39.881973,31.74081 - 930: -11.340527,23.020344 - 931: -7.8092766,22.989094 - 1068: 6,-8 - 1069: 5,-5 - 1097: -28.532501,3.9829745 - 1101: -25.938751,4.0923495 - 1593: -9,41 - 1594: -10.480507,40.958054 - 3184: -20,-20 + 865: -11.340527,23.020344 + 866: -7.8092766,22.989094 + 988: 6,-8 + 989: 5,-5 + 1450: -9,41 + 1451: -10.480507,40.958054 + 2768: -20,-20 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 862: -60.277756,-56.558094 - 863: -63.340256,-52.22997 - 864: -65.82463,-53.29247 - 865: -60.23088,-53.433094 - 927: -7.3717766,23.020344 - 928: -8.434277,22.973469 - 929: -11.918652,23.051594 - 1070: 6,-5 - 1071: 6,-12 - 1096: -29.001251,3.9829745 - 1591: -11,41 - 1592: -10,41 - 1595: -9.464882,40.926804 + 797: -60.277756,-56.558094 + 798: -63.340256,-52.22997 + 799: -65.82463,-53.29247 + 800: -60.23088,-53.433094 + 862: -7.3717766,23.020344 + 863: -8.434277,22.973469 + 864: -11.918652,23.051594 + 990: 6,-5 + 991: 6,-12 + 1448: -11,41 + 1449: -10,41 + 1452: -9.464882,40.926804 + 2781: -24.983944,4.08692 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -2754,21 +2561,20 @@ entities: 398: -12,27 399: -13,27 400: -14,27 - 963: -1,66 - 1565: -3,27 - 1567: -17,27 - 2716: -31,-63 + 898: -1,66 + 1422: -3,27 + 1424: -17,27 - node: color: '#33666DC8' id: HalfTileOverlayGreyscale decals: - 1401: 33,20 - 1402: 32,20 - 1403: 31,20 - 1404: 30,20 - 1405: 29,20 - 1406: 28,20 - 1407: 27,20 + 1267: 33,20 + 1268: 32,20 + 1269: 31,20 + 1270: 30,20 + 1271: 29,20 + 1272: 28,20 + 1273: 27,20 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -2784,22 +2590,34 @@ entities: 491: -7,-2 492: -8,-2 550: -16,-5 - 3147: -25,-8 - 3148: -24,-8 - 3149: -23,-8 - 3150: -22,-8 - 3151: -21,-8 - 3152: -20,-8 + 2731: -25,-8 + 2732: -24,-8 + 2733: -23,-8 + 2734: -22,-8 + 2735: -21,-8 + 2736: -20,-8 + - node: + color: '#724276FF' + id: HalfTileOverlayGreyscale + decals: + 2817: 17,16 + 2829: 19,15 + 2839: 16,12 - node: color: '#79150096' id: HalfTileOverlayGreyscale decals: - 819: -76,-47 - 820: -77,-47 - 821: -78,-47 - 822: -79,-47 - 823: -80,-47 - 824: -81,-47 + 754: -76,-47 + 755: -77,-47 + 756: -78,-47 + 757: -79,-47 + 758: -80,-47 + 759: -81,-47 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 2806: -24,13 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -2811,49 +2629,39 @@ entities: 560: 8,-2 561: 7,-2 565: 6,-2 - 722: 21,2 - 723: 20,2 - 724: 19,2 - 725: 18,2 - 726: 17,2 - 727: 16,2 - 728: 15,2 - 1150: 26,-10 - 1151: 27,-10 - 1152: 28,-10 - 1153: 29,-10 - 1154: 30,-10 + 662: 21,2 + 663: 20,2 + 664: 19,2 + 665: 18,2 + 666: 17,2 + 667: 16,2 + 668: 15,2 + 1050: 26,-10 + 1051: 27,-10 + 1052: 28,-10 + 1053: 29,-10 + 1054: 30,-10 - node: color: '#D381C93B' id: HalfTileOverlayGreyscale decals: - 1358: 12,12 - 1359: 13,12 - 1360: 14,12 - 1361: 15,12 - 1362: 16,12 - 1363: 17,12 - 1364: 18,12 - 1365: 19,12 - 1366: 20,12 - 1368: 20,16 - 1383: 18,23 - 1384: 17,23 - 1385: 16,23 + 1251: 18,23 + 1252: 17,23 + 1253: 16,23 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 1331: 29,11 - 1332: 28,11 - 1333: 27,11 - 1334: 26,11 - 1335: 25,11 - 1336: 24,11 - 1379: 24,23 - 1380: 25,23 - 1381: 20,23 - 1382: 19,23 + 1231: 29,11 + 1232: 28,11 + 1233: 27,11 + 1234: 26,11 + 1235: 25,11 + 1236: 24,11 + 1247: 24,23 + 1248: 25,23 + 1249: 20,23 + 1250: 19,23 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -2922,35 +2730,21 @@ entities: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 670: -5,-39 - 671: -4,-39 - 672: -1,-39 - 673: -2,-39 - 674: -6,-39 - 675: -7,-39 - 676: -8,-39 - 677: -9,-39 - 678: -10,-39 - 679: -11,-39 - 2287: -12,-39 - 2288: -14,-39 - 2703: -31,-58 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 2717: -31,-64 + 635: -1,-39 + 2891: -11,-48 + 2892: -10,-48 + 2893: -9,-48 - node: color: '#33666DC8' id: HalfTileOverlayGreyscale180 decals: - 1394: 27,18 - 1395: 28,18 - 1396: 29,18 - 1397: 30,18 - 1398: 31,18 - 1399: 32,18 - 1400: 33,18 + 1260: 27,18 + 1261: 28,18 + 1262: 29,18 + 1263: 30,18 + 1264: 31,18 + 1265: 32,18 + 1266: 33,18 - node: color: '#52B4E935' id: HalfTileOverlayGreyscale180 @@ -2962,7 +2756,7 @@ entities: color: '#52B4E957' id: HalfTileOverlayGreyscale180 decals: - 2496: -49,42 + 2200: -49,42 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -2978,12 +2772,26 @@ entities: 529: -7,0 530: -6,0 531: -5,0 - 3139: -19,-13 - 3140: -20,-13 - 3141: -21,-13 - 3142: -23,-13 - 3143: -24,-13 - 3144: -25,-13 + 2723: -19,-13 + 2724: -20,-13 + 2725: -21,-13 + 2726: -23,-13 + 2727: -24,-13 + 2728: -25,-13 + - node: + color: '#724276FF' + id: HalfTileOverlayGreyscale180 + decals: + 2813: 20,10 + 2814: 19,10 + 2815: 18,10 + 2816: 17,10 + 2818: 22,7 + 2819: 23,7 + 2838: 16,10 + 2846: 12,14 + 2847: 13,14 + 2848: 14,14 - node: color: '#79150096' id: HalfTileOverlayGreyscale180 @@ -2994,13 +2802,13 @@ entities: 37: -3,15 38: -2,15 39: -1,15 - 814: -80,-45 - 815: -79,-45 - 816: -78,-45 - 817: -77,-45 - 818: -76,-45 - 825: -81,-45 - 1742: 0,15 + 749: -80,-45 + 750: -79,-45 + 751: -78,-45 + 752: -77,-45 + 753: -76,-45 + 760: -81,-45 + 1599: 0,15 - node: color: '#9FED582F' id: HalfTileOverlayGreyscale180 @@ -3012,14 +2820,15 @@ entities: color: '#9FED5844' id: HalfTileOverlayGreyscale180 decals: - 2495: -46,42 + 2199: -46,42 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 2778: -20,9 - 2779: -21,9 - 2780: -22,9 + 2377: -20,9 + 2378: -21,9 + 2379: -22,9 + 2808: -23,9 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 @@ -3027,70 +2836,50 @@ entities: 553: -1,0 554: 0,0 555: 1,0 - 715: 21,0 - 716: 20,0 - 717: 19,0 - 718: 18,0 - 719: 17,0 - 720: 16,0 - 721: 15,0 - 729: 19,-12 - 730: 20,-12 - 731: 21,-12 - 732: 16,-12 - 733: 17,-12 - 1155: 23,-12 - 1156: 24,-12 - 1157: 25,-12 - 1158: 26,-12 - 1159: 27,-12 - 1160: 28,-12 - 1161: 29,-12 - 1162: 30,-12 - 1163: 31,-12 - 1204: 26,-8 - 1205: 27,-8 - 1206: 28,-8 - 1207: 29,-8 - 1208: 30,-8 - - node: - color: '#D381C93B' - id: HalfTileOverlayGreyscale180 - decals: - 1342: 23,7 - 1343: 22,7 - 1344: 21,7 - 1349: 20,10 - 1350: 19,10 - 1351: 18,10 - 1352: 17,10 - 1353: 16,10 - 1354: 15,10 - 1355: 14,10 - 1356: 13,10 - 1357: 12,10 - 1367: 20,14 - 1412: 12,14 - 1413: 13,14 - 1414: 14,14 + 655: 21,0 + 656: 20,0 + 657: 19,0 + 658: 18,0 + 659: 17,0 + 660: 16,0 + 661: 15,0 + 669: 19,-12 + 670: 20,-12 + 671: 21,-12 + 672: 16,-12 + 673: 17,-12 + 1055: 23,-12 + 1056: 24,-12 + 1057: 25,-12 + 1058: 26,-12 + 1059: 27,-12 + 1060: 28,-12 + 1061: 29,-12 + 1062: 30,-12 + 1063: 31,-12 + 1104: 26,-8 + 1105: 27,-8 + 1106: 28,-8 + 1107: 29,-8 + 1108: 30,-8 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 1005: 24,25 - 1006: 20,25 - 1007: 19,25 - 1008: 18,25 - 1009: 17,25 - 1010: 16,25 - 1011: 15,25 - 1012: 14,25 - 1013: 13,25 - 1374: 21,18 - 1375: 22,18 - 1376: 23,18 - 1377: 24,18 - 1378: 25,18 + 940: 24,25 + 941: 20,25 + 942: 19,25 + 943: 18,25 + 944: 17,25 + 945: 16,25 + 946: 15,25 + 947: 14,25 + 948: 13,25 + 1242: 21,18 + 1243: 22,18 + 1244: 23,18 + 1245: 24,18 + 1246: 25,18 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -3133,7 +2922,7 @@ entities: 429: 14,20 471: -18,-3 472: -19,-3 - 2493: -43,42 + 2197: -43,42 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale180 @@ -3152,36 +2941,46 @@ entities: color: '#EFB3415D' id: HalfTileOverlayGreyscale180 decals: - 2494: -42,42 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 2719: -28,-60 - 2720: -27,-60 - 2721: -26,-60 + 2198: -42,42 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 959: -2,63 - 960: -2,64 - 961: -2,65 - 962: -2,66 - 1558: -5,28 - 1561: -16,28 - 1570: -5,34 - 1571: -16,34 - 1635: -5,36 - 1636: -16,36 + 894: -2,63 + 895: -2,64 + 896: -2,65 + 897: -2,66 + 1415: -5,28 + 1418: -16,28 + 1427: -5,34 + 1428: -16,34 + 1492: -5,36 + 1493: -16,36 + 2968: -10,-31 + 2969: -10,-32 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: 524: -5,-4 525: -5,-3 - 3145: -26,-12 - 3146: -26,-9 + 2729: -26,-12 + 2730: -26,-9 + 2956: -6,-28 + 2957: -6,-29 + - node: + color: '#724276FF' + id: HalfTileOverlayGreyscale270 + decals: + 2820: 21,8 + 2821: 21,9 + 2828: 21,17 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 2966: -12,-28 + 2967: -12,-29 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 @@ -3194,24 +2993,26 @@ entities: 582: 11,-4 583: 11,-3 584: 11,-2 - 998: 27,0 - 999: 27,1 - 1000: 27,2 + 933: 27,0 + 934: 27,1 + 935: 27,2 + 2954: -10,-28 + 2955: -10,-29 - node: - color: '#D381C93B' + color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 1346: 21,8 - 1347: 21,9 - 1369: 21,13 - 1370: 21,17 + 1724: 30,21 + 1725: 30,22 + 1726: 30,23 + 2952: -8,-28 + 2953: -8,-29 - node: - color: '#D381C996' + color: '#D4D4D428' id: HalfTileOverlayGreyscale270 decals: - 1867: 30,21 - 1868: 30,22 - 1869: 30,23 + 2972: -12,-31 + 2973: -12,-32 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -3251,6 +3052,8 @@ entities: 468: -20,-3 469: -20,-2 470: -20,-1 + 2950: -6,-31 + 2951: -6,-32 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale270 @@ -3266,25 +3069,26 @@ entities: 588: 9,-30 589: 9,-29 590: 9,-28 - 703: -10,-37 - 704: -10,-36 - 705: -10,-35 - 706: -10,-34 - 2702: -31,-60 + 2889: -14,-49 + 2890: -14,-50 + 2944: -8,-32 + 2945: -8,-31 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 964: 0,66 - 965: 0,65 - 966: 0,64 - 967: 0,63 - 1559: -4,28 - 1560: -15,28 - 1569: -4,34 - 1572: -15,34 - 1637: -15,36 - 1638: -4,36 + 899: 0,66 + 900: 0,65 + 901: 0,64 + 902: 0,63 + 1416: -4,28 + 1417: -15,28 + 1426: -4,34 + 1429: -15,34 + 1494: -15,36 + 1495: -4,36 + 2970: -12,-31 + 2971: -12,-32 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -3295,37 +3099,55 @@ entities: 547: -15,-7 548: -15,-6 549: -15,-5 - 3153: -18,-9 - 3154: -18,-12 + 2737: -18,-9 + 2738: -18,-12 + 2958: -8,-28 + 2959: -8,-29 - node: - color: '#A4610696' + color: '#724276FF' id: HalfTileOverlayGreyscale90 decals: - 564: 5,-1 - 1149: 21,-4 + 2822: 23,12 + 2823: 23,13 + 2824: 23,14 + 2825: 23,15 + 2826: 23,16 + 2827: 23,17 + 2849: 15,15 + 2850: 15,16 + 2851: 15,17 + 2852: 15,18 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 2807: -24,8 + 2964: -14,-28 + 2965: -14,-29 - node: - cleanable: True color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 1147: 21,-6 - 1148: 21,-5 + 564: 5,-1 + 1049: 21,-4 + 2962: -12,-28 + 2963: -12,-29 - node: - color: '#D381C93B' + cleanable: True + color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 1392: 23,17 - 1416: 15,15 - 1417: 15,16 - 1418: 15,17 - 1419: 15,18 + 1047: 21,-6 + 1048: 21,-5 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 1870: 32,21 - 1871: 32,22 - 1872: 32,23 + 1727: 32,21 + 1728: 32,22 + 1729: 32,23 + 2960: -10,-28 + 2961: -10,-29 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -3373,7 +3195,9 @@ entities: 465: -17,-3 466: -17,-2 467: -17,-1 - 2657: 14,21 + 2341: 14,21 + 2948: -8,-31 + 2949: -8,-32 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale90 @@ -3392,17 +3216,15 @@ entities: 591: 12,-30 592: 12,-29 593: 12,-28 - 707: -6,-37 - 708: -6,-36 - 709: -6,-35 - 710: -6,-34 - 2704: -30,-60 - 2705: -30,-59 + 2894: -8,-49 + 2895: -8,-50 + 2946: -10,-31 + 2947: -10,-32 - node: color: '#FFFFFFFF' id: HatchSmall decals: - 1610: -3,32 + 1467: -3,32 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -3414,9 +3236,9 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 1142: 16,-4 - 1237: 34,-7 - 2209: 3,-30 + 1042: 16,-4 + 1137: 34,-7 + 2066: 3,-30 - node: color: '#FFFFFFFF' id: LoadingArea @@ -3426,100 +3248,97 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 1708: -57,-57 + 1565: -57,-57 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 1441: -27,38 - 1702: -65,-60 + 1298: -27,38 + 1559: -65,-60 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 1719: -69,-55 + 1576: -69,-55 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1709: -56,-54 - - node: - color: '#EFB34196' - id: MiniTileWhiteLineE - decals: - 2380: -11,-41 + 1566: -56,-54 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 1669: 25,26 + 1526: 25,26 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 1442: -27,38 + 1299: -27,38 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 1670: 26,32 - - node: - color: '#EFB34196' - id: MiniTileWhiteLineW - decals: - 2381: -5,-41 + 1527: 26,32 - node: color: '#D381C996' id: MonoOverlay decals: - 2542: 29,21 - 2543: 28,22 - 2544: 29,23 - 2545: 27,23 - 2546: 27,21 + 2241: 29,21 + 2242: 28,22 + 2243: 29,23 + 2244: 27,23 + 2245: 27,21 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 1557: -5,27 - 1563: -16,27 - 1566: -2,27 - 1644: -16,38 - 1645: -16,41 - 1646: -16,40 - 1647: -16,39 + 1414: -5,27 + 1420: -16,27 + 1423: -2,27 + 1501: -16,38 + 1502: -16,41 + 1503: -16,40 + 1504: -16,39 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: 518: -8,-4 551: -15,-5 - 3168: -22,-12 - 3169: -22,-10 + 2752: -22,-12 + 2753: -22,-10 + - node: + color: '#724276FF' + id: QuarterTileOverlayGreyscale + decals: + 2830: 20,15 + 2831: 21,16 + 2836: 17,12 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 826: -81,-45 - 827: -80,-45 - 828: -79,-45 - 829: -78,-45 - 830: -77,-45 - 831: -76,-45 - 2061: -52,13 - 2062: -53,13 - 2063: -54,13 - 2064: -55,13 - 2065: -56,13 - 2066: -56,21 - 2067: -55,21 - 2068: -54,21 - 2069: -53,21 - 2070: -52,21 - 2081: -51,13 - 2082: -51,14 - 2087: -51,22 - 2088: -51,21 + 761: -81,-45 + 762: -80,-45 + 763: -79,-45 + 764: -78,-45 + 765: -77,-45 + 766: -76,-45 + 1918: -52,13 + 1919: -53,13 + 1920: -54,13 + 1921: -55,13 + 1922: -56,13 + 1923: -56,21 + 1924: -55,21 + 1925: -54,21 + 1926: -53,21 + 1927: -52,21 + 1938: -51,13 + 1939: -51,14 + 1944: -51,22 + 1945: -51,21 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale @@ -3528,157 +3347,150 @@ entities: 17: -24,3 18: -28,3 19: -29,3 - 1105: -25,3 - 1116: -26,3 - 1117: -27,3 + 1016: -25,3 + 1017: -26,3 + 1018: -27,3 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: 562: 3,-2 585: 11,-9 - - node: - color: '#D381C93B' - id: QuarterTileOverlayGreyscale - decals: - 1345: 21,7 - 1372: 21,12 - 1373: 21,16 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 785: 8,7 - 786: 8,8 - 787: 8,9 - 788: 8,10 - 789: 8,11 - 790: 8,12 - 791: 8,13 - 792: 8,14 - 793: 8,15 - 794: 8,16 - 795: 8,17 - 796: 8,18 - 797: 8,19 - 798: 8,20 - 799: 8,21 - 800: 8,22 - 801: 8,23 + 720: 8,7 + 721: 8,8 + 722: 8,9 + 723: 8,10 + 724: 8,11 + 725: 8,12 + 726: 8,13 + 727: 8,14 + 728: 8,15 + 729: 8,16 + 730: 8,17 + 731: 8,18 + 732: 8,19 + 733: 8,20 + 734: 8,21 + 735: 8,22 + 736: 8,23 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1965: -12,4 - 1966: -11,4 - 1967: -10,4 - 1968: -9,4 - 1969: -8,4 - 1970: -7,4 - 1971: -6,4 - 1990: -22,3 - 1991: -22,4 - 1992: -22,5 - 1993: -22,6 - 1994: -22,7 - 2015: -44,-3 - 2118: 11,-19 - 2119: 11,-18 - 2120: 11,-17 - 2121: 10,-19 - 2122: 9,-19 - 2123: 8,-19 - 2124: 7,-19 - 2125: 5,-19 - 2126: 6,-19 - 2127: 4,-19 - 2128: 3,-19 - 2129: 2,-19 - 2130: 1,-19 - 2131: 0,-19 - 2132: -1,-19 - 2133: -2,-19 - 2134: -3,-19 - 2135: -4,-19 - 2136: 11,-16 - 2137: 11,-15 - 2138: 11,-14 - 2162: -37,34 - 2163: -37,33 - 2164: -37,32 - 2165: -37,31 - 2166: -37,30 - 2167: -37,29 - 2168: -37,28 - 2169: -37,27 - 2170: -37,26 - 2171: -37,25 - 2172: -37,24 - 2173: -37,23 - 2174: -37,22 - 2175: -37,21 - 2176: -37,20 - 2177: -37,19 - 2178: -37,18 - 2179: -37,17 - 2180: -37,16 - 2181: -37,15 - 2182: -38,15 - 2570: 7,34 - 2578: 13,27 - 2579: 14,27 - 2580: 15,27 - 2581: 16,27 - 2582: 17,27 - 2583: 18,27 - 2584: 19,27 - 2585: 20,27 - 2586: 21,27 - 2587: 21,28 - 2588: 21,29 - 2589: 21,30 - 2590: 21,31 - 2601: 24,40 - 2602: 23,40 - 2603: 22,40 - 2604: 21,40 - 2605: 20,40 - 2606: 20,39 - 2607: 20,38 - 2608: 20,37 - 2609: 20,36 - 2610: 20,35 - 2611: 20,34 - 2612: 20,33 - 2799: 7,35 - 2800: 7,36 - 2803: -58,9 - 2804: -58,8 - 2805: -59,8 - 2806: -60,8 - 2825: -46,-3 - 2826: -46,-5 - 2827: -46,-4 - 2828: -46,-6 - 2829: -46,-7 - 2830: -46,-8 - 2831: -46,-9 - 2832: -47,-9 + 1822: -12,4 + 1823: -11,4 + 1824: -10,4 + 1825: -9,4 + 1826: -8,4 + 1827: -7,4 + 1828: -6,4 + 1847: -22,3 + 1848: -22,4 + 1849: -22,5 + 1850: -22,6 + 1851: -22,7 + 1872: -44,-3 + 1975: 11,-19 + 1976: 11,-18 + 1977: 11,-17 + 1978: 10,-19 + 1979: 9,-19 + 1980: 8,-19 + 1981: 7,-19 + 1982: 5,-19 + 1983: 6,-19 + 1984: 4,-19 + 1985: 3,-19 + 1986: 2,-19 + 1987: 1,-19 + 1988: 0,-19 + 1989: -1,-19 + 1990: -2,-19 + 1991: -3,-19 + 1992: -4,-19 + 1993: 11,-16 + 1994: 11,-15 + 1995: 11,-14 + 2019: -37,34 + 2020: -37,33 + 2021: -37,32 + 2022: -37,31 + 2023: -37,30 + 2024: -37,29 + 2025: -37,28 + 2026: -37,27 + 2027: -37,26 + 2028: -37,25 + 2029: -37,24 + 2030: -37,23 + 2031: -37,22 + 2032: -37,21 + 2033: -37,20 + 2034: -37,19 + 2035: -37,18 + 2036: -37,17 + 2037: -37,16 + 2038: -37,15 + 2039: -38,15 + 2266: 7,34 + 2274: 13,27 + 2275: 14,27 + 2276: 15,27 + 2277: 16,27 + 2278: 17,27 + 2279: 18,27 + 2280: 19,27 + 2281: 20,27 + 2282: 21,27 + 2283: 21,28 + 2284: 21,29 + 2285: 21,30 + 2286: 21,31 + 2297: 24,40 + 2298: 23,40 + 2299: 22,40 + 2300: 21,40 + 2301: 20,40 + 2302: 20,39 + 2303: 20,38 + 2304: 20,37 + 2305: 20,36 + 2306: 20,35 + 2307: 20,34 + 2308: 20,33 + 2389: 7,35 + 2390: 7,36 + 2393: -58,9 + 2394: -58,8 + 2395: -59,8 + 2396: -60,8 + 2415: -46,-3 + 2416: -46,-5 + 2417: -46,-4 + 2418: -46,-6 + 2419: -46,-7 + 2420: -46,-8 + 2421: -46,-9 + 2422: -47,-9 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: - 2019: -58,10 - 2020: -57,10 - 2021: -56,10 - 2022: -55,10 - 2023: -54,10 - 2024: -53,10 - 2025: -52,10 - 2026: -51,10 - 2027: -50,10 - 2028: -49,10 - 2029: -48,10 + 1876: -58,10 + 1877: -57,10 + 1878: -56,10 + 1879: -55,10 + 1880: -54,10 + 1881: -53,10 + 1882: -52,10 + 1883: -51,10 + 1884: -50,10 + 1885: -49,10 + 1886: -48,10 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -3691,7 +3503,7 @@ entities: 348: -37,37 430: 12,20 475: -17,-1 - 2517: -49,45 + 2221: -49,45 - node: color: '#EDD75E93' id: QuarterTileOverlayGreyscale @@ -3703,19 +3515,19 @@ entities: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 638: -4,-2 - 639: -4,-5 - 1120: 2,-28 - 1121: 1,-28 - 1122: 0,-28 - 1123: -1,-28 + 631: -4,-2 + 632: -4,-5 + 1020: 2,-28 + 1021: 1,-28 + 1022: 0,-28 + 1023: -1,-28 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 2796: 11,38 - 2797: 12,38 - 2798: 12,39 + 2386: 11,38 + 2387: 12,38 + 2388: 12,39 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -3741,35 +3553,35 @@ entities: 544: -27,1 545: -26,1 546: -25,1 - 3072: -29,-14 - 3073: -28,-14 - 3074: -28,-13 - 3075: -28,-12 - 3172: -23,-11 - 3173: -23,-9 + 2656: -29,-14 + 2657: -28,-14 + 2658: -28,-13 + 2659: -28,-12 + 2756: -23,-11 + 2757: -23,-9 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 decals: - 2071: -56,23 - 2072: -54,23 - 2073: -55,23 - 2074: -52,23 - 2075: -53,23 - 2076: -56,15 - 2077: -55,15 - 2078: -54,15 - 2079: -53,15 - 2080: -52,15 - 2083: -57,14 - 2084: -57,15 - 2085: -57,22 - 2086: -57,23 + 1928: -56,23 + 1929: -54,23 + 1930: -55,23 + 1931: -52,23 + 1932: -53,23 + 1933: -56,15 + 1934: -55,15 + 1935: -54,15 + 1936: -53,15 + 1937: -52,15 + 1940: -57,14 + 1941: -57,15 + 1942: -57,22 + 1943: -57,23 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 2781: -23,9 + 2809: -24,9 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 @@ -3780,117 +3592,117 @@ entities: 575: 16,-8 576: 15,-8 577: 14,-8 - 802: 13,0 - 803: 13,1 - 804: 13,2 - 805: 13,3 - 806: 13,4 - 2640: 5,1 + 737: 13,0 + 738: 13,1 + 739: 13,2 + 740: 13,3 + 741: 13,4 + 2336: 5,1 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 1292: 39,7 - 1293: 38,7 - 1294: 37,7 - 1295: 36,7 - 1296: 35,7 - 1297: 40,8 - 1298: 40,9 - 1299: 40,10 + 1192: 39,7 + 1193: 38,7 + 1194: 37,7 + 1195: 36,7 + 1196: 35,7 + 1197: 40,8 + 1198: 40,9 + 1199: 40,10 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1904: 10,24 - 1905: 10,25 - 1906: 11,25 - 1909: -11,25 - 1910: -12,25 - 1911: -13,25 - 1912: -14,25 - 1913: -15,25 - 1914: -16,25 - 1915: -17,25 - 1916: -18,25 - 1917: -19,25 - 1918: -20,25 - 1919: -21,25 - 1920: -22,25 - 1921: -23,25 - 1922: -24,25 - 1923: -25,25 - 1924: -26,25 - 1925: -27,25 - 1926: -28,25 - 1927: -29,25 - 1928: -30,25 - 1929: -31,25 - 1930: -32,25 - 1931: -33,25 - 1932: -34,25 - 1933: -35,25 - 1934: -35,24 - 1935: -35,23 - 1936: -35,22 - 1937: -35,21 - 1938: -35,20 - 1939: -35,19 - 1940: -35,18 - 1941: -35,17 - 1942: -35,16 - 1943: -35,15 - 1944: -35,14 - 1945: -35,12 - 1946: -35,13 - 1947: -35,11 - 1948: -35,10 - 1949: -35,9 - 1950: -35,7 - 1951: -35,8 - 1952: -35,6 - 1953: -35,5 - 2002: -40,5 - 2003: -41,5 - 2004: -42,5 - 2005: -43,5 - 2006: -44,5 - 2007: -45,4 - 2008: -45,3 - 2009: -45,2 - 2010: -45,1 - 2011: -45,0 - 2012: -45,-1 - 2013: -45,-2 - 2105: -47,13 - 2106: -46,13 - 2107: -45,13 - 2108: -44,13 - 2109: -43,13 - 2110: -42,13 - 2111: -40,13 - 2112: -41,13 - 2468: -28,1 - 2469: -29,1 - 2470: -30,1 - 2471: -31,1 - 2472: -32,1 - 2473: -33,1 - 2613: 24,33 - 2614: 25,33 - 2615: 26,33 - 2616: 27,33 - 2617: 27,34 - 2618: 27,35 - 2619: 33,35 - 2620: 32,35 - 2621: 31,35 - 2622: 30,35 - 2623: 29,35 - 2816: -54,7 - 2817: -55,7 - 2818: -55,6 - 2819: -56,6 + 1761: 10,24 + 1762: 10,25 + 1763: 11,25 + 1766: -11,25 + 1767: -12,25 + 1768: -13,25 + 1769: -14,25 + 1770: -15,25 + 1771: -16,25 + 1772: -17,25 + 1773: -18,25 + 1774: -19,25 + 1775: -20,25 + 1776: -21,25 + 1777: -22,25 + 1778: -23,25 + 1779: -24,25 + 1780: -25,25 + 1781: -26,25 + 1782: -27,25 + 1783: -28,25 + 1784: -29,25 + 1785: -30,25 + 1786: -31,25 + 1787: -32,25 + 1788: -33,25 + 1789: -34,25 + 1790: -35,25 + 1791: -35,24 + 1792: -35,23 + 1793: -35,22 + 1794: -35,21 + 1795: -35,20 + 1796: -35,19 + 1797: -35,18 + 1798: -35,17 + 1799: -35,16 + 1800: -35,15 + 1801: -35,14 + 1802: -35,12 + 1803: -35,13 + 1804: -35,11 + 1805: -35,10 + 1806: -35,9 + 1807: -35,7 + 1808: -35,8 + 1809: -35,6 + 1810: -35,5 + 1859: -40,5 + 1860: -41,5 + 1861: -42,5 + 1862: -43,5 + 1863: -44,5 + 1864: -45,4 + 1865: -45,3 + 1866: -45,2 + 1867: -45,1 + 1868: -45,0 + 1869: -45,-1 + 1870: -45,-2 + 1962: -47,13 + 1963: -46,13 + 1964: -45,13 + 1965: -44,13 + 1966: -43,13 + 1967: -42,13 + 1968: -40,13 + 1969: -41,13 + 2172: -28,1 + 2173: -29,1 + 2174: -30,1 + 2175: -31,1 + 2176: -32,1 + 2177: -33,1 + 2309: 24,33 + 2310: 25,33 + 2311: 26,33 + 2312: 27,33 + 2313: 27,34 + 2314: 27,35 + 2315: 33,35 + 2316: 32,35 + 2317: 31,35 + 2318: 30,35 + 2319: 29,35 + 2406: -54,7 + 2407: -55,7 + 2408: -55,6 + 2409: -56,6 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -3922,35 +3734,31 @@ entities: 622: 3,-31 623: 3,-30 624: 3,-29 - 838: -81,-44 - 839: -80,-44 - 840: -79,-44 - 841: -78,-44 - 842: -77,-44 - 1124: -1,-21 - 1125: 0,-21 - 1126: 1,-21 - 1127: 3,-21 - 1128: 4,-21 - 1134: 2,-21 - 2327: -12,-36 - 2328: -12,-35 - 2329: -12,-34 - 2330: -12,-33 + 773: -81,-44 + 774: -80,-44 + 775: -79,-44 + 776: -78,-44 + 777: -77,-44 + 1024: -1,-21 + 1025: 0,-21 + 1026: 1,-21 + 1027: 3,-21 + 1028: 4,-21 + 1034: 2,-21 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 1954: -4,25 - 1955: -3,25 - 1956: -2,25 - 1957: -1,25 - 1958: 0,25 - 2791: 4,39 - 2792: 4,38 - 2793: 5,38 - 2794: 6,38 - 2795: 7,38 + 1811: -4,25 + 1812: -3,25 + 1813: -2,25 + 1814: -1,25 + 1815: 0,25 + 2381: 4,39 + 2382: 4,38 + 2383: 5,38 + 2384: 6,38 + 2385: 7,38 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -3966,121 +3774,121 @@ entities: 507: -13,-7 515: -6,-5 523: -10,-2 - 3076: -31,-14 - 3077: -32,-14 - 3078: -33,-14 - 3079: -34,-14 - 3080: -35,-14 - 3081: -35,-13 - 3164: -20,-11 - 3167: -20,-9 - 3178: -24,-11 - 3179: -24,-9 + 2660: -31,-14 + 2661: -32,-14 + 2662: -33,-14 + 2663: -34,-14 + 2664: -35,-14 + 2665: -35,-13 + 2748: -20,-11 + 2751: -20,-9 + 2762: -24,-11 + 2763: -24,-9 + - node: + color: '#724276FF' + id: QuarterTileOverlayGreyscale270 + decals: + 2832: 21,10 + 2837: 17,14 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 832: -81,-47 - 833: -80,-47 - 834: -79,-47 - 835: -78,-47 - 836: -77,-47 - 837: -76,-47 + 767: -81,-47 + 768: -80,-47 + 769: -79,-47 + 770: -78,-47 + 771: -77,-47 + 772: -76,-47 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: 567: 3,0 586: 11,0 - 1164: 32,-12 - 2636: 8,1 - 2637: 9,1 - 2638: 10,1 - 2639: 11,1 - - node: - color: '#D381C93B' - id: QuarterTileOverlayGreyscale270 - decals: - 1348: 21,10 - 1371: 21,14 + 1064: 32,-12 + 2332: 8,1 + 2333: 9,1 + 2334: 10,1 + 2335: 11,1 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 1337: 25,7 - 1338: 26,7 - 1339: 27,7 - 1340: 28,7 - 1341: 29,7 - 1411: 24,7 + 1237: 25,7 + 1238: 26,7 + 1239: 27,7 + 1240: 28,7 + 1241: 29,7 + 1277: 24,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 1895: -9,25 - 1896: -8,25 - 1897: -7,25 - 1898: -6,25 - 1899: -5,25 - 1900: 1,25 - 1901: 2,25 - 1902: 8,25 - 1903: 8,24 - 1907: 6,25 - 1908: 7,25 - 1962: 8,6 - 1963: 8,5 - 1964: 8,4 - 1995: -37,1 - 1996: -37,2 - 1997: -37,3 - 1998: -37,4 - 1999: -37,5 - 2000: -38,5 - 2001: -39,5 - 2139: 11,-12 - 2140: 10,-12 - 2141: 9,-12 - 2142: 8,-12 - 2722: -46,4 - 2723: -46,3 - 2724: -46,2 - 2725: -46,1 - 2726: -46,0 - 2727: -46,-1 - 2728: -46,-2 - 2807: -46,5 - 2808: -47,5 - 2809: -48,5 - 2810: -49,5 - 2811: -51,5 - 2812: -50,5 - 2813: -51,6 - 2814: -51,7 - 2815: -52,7 - 2820: -57,6 - 2821: -58,6 - 2822: -58,7 - 2823: -59,7 - 2824: -60,7 + 1752: -9,25 + 1753: -8,25 + 1754: -7,25 + 1755: -6,25 + 1756: -5,25 + 1757: 1,25 + 1758: 2,25 + 1759: 8,25 + 1760: 8,24 + 1764: 6,25 + 1765: 7,25 + 1819: 8,6 + 1820: 8,5 + 1821: 8,4 + 1852: -37,1 + 1853: -37,2 + 1854: -37,3 + 1855: -37,4 + 1856: -37,5 + 1857: -38,5 + 1858: -39,5 + 1996: 11,-12 + 1997: 10,-12 + 1998: 9,-12 + 1999: 8,-12 + 2350: -46,4 + 2351: -46,3 + 2352: -46,2 + 2353: -46,1 + 2354: -46,0 + 2355: -46,-1 + 2356: -46,-2 + 2397: -46,5 + 2398: -47,5 + 2399: -48,5 + 2400: -49,5 + 2401: -51,5 + 2402: -50,5 + 2403: -51,6 + 2404: -51,7 + 2405: -52,7 + 2410: -57,6 + 2411: -58,6 + 2412: -58,7 + 2413: -59,7 + 2414: -60,7 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 decals: - 2041: -56,15 - 2042: -55,15 - 2043: -54,15 - 2044: -52,15 - 2045: -53,15 - 2046: -52,23 - 2047: -53,23 - 2048: -54,23 - 2049: -55,23 - 2050: -56,23 - 2089: -51,23 - 2090: -51,22 - 2091: -51,15 - 2092: -51,14 + 1898: -56,15 + 1899: -55,15 + 1900: -54,15 + 1901: -52,15 + 1902: -53,15 + 1903: -52,23 + 1904: -53,23 + 1905: -54,23 + 1906: -55,23 + 1907: -56,23 + 1946: -51,23 + 1947: -51,22 + 1948: -51,15 + 1949: -51,14 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -4133,52 +3941,47 @@ entities: 618: -2,-31 619: -1,-31 620: 0,-31 - 1129: 8,-21 - 1130: 9,-21 - 1131: 11,-21 - 1132: 12,-21 - 1133: 13,-21 - 1959: 5,25 - 1960: 4,25 - 1961: 3,25 - 2323: -14,-36 - 2324: -14,-35 - 2325: -14,-34 - 2326: -14,-33 - 2709: -31,-59 + 1029: 8,-21 + 1030: 9,-21 + 1031: 11,-21 + 1032: 12,-21 + 1033: 13,-21 + 1816: 5,25 + 1817: 4,25 + 1818: 3,25 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 1562: -15,27 - 1564: -4,27 - 1568: -18,27 - 1639: -4,37 - 1640: -4,38 - 1641: -4,39 - 1642: -4,40 - 1643: -4,41 - 1650: -19,27 - 1651: -20,27 - 1652: -21,27 - 1653: -22,27 - 1654: -23,27 - 1655: -24,27 + 1419: -15,27 + 1421: -4,27 + 1425: -18,27 + 1496: -4,37 + 1497: -4,38 + 1498: -4,39 + 1499: -4,40 + 1500: -4,41 + 1507: -19,27 + 1508: -20,27 + 1509: -21,27 + 1510: -22,27 + 1511: -23,27 + 1512: -24,27 - node: color: '#52B4E957' id: QuarterTileOverlayGreyscale90 decals: - 2030: -58,10 - 2031: -57,10 - 2032: -56,10 - 2033: -55,10 - 2034: -54,10 - 2035: -53,10 - 2036: -52,10 - 2037: -51,10 - 2038: -50,10 - 2039: -49,10 - 2040: -48,10 + 1887: -58,10 + 1888: -57,10 + 1889: -56,10 + 1890: -55,10 + 1891: -54,10 + 1892: -53,10 + 1893: -52,10 + 1894: -51,10 + 1895: -50,10 + 1896: -49,10 + 1897: -48,10 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -4186,10 +3989,16 @@ entities: 497: -9,-2 517: -9,-4 522: -11,-3 - 3163: -21,-12 - 3166: -21,-10 - 3176: -25,-10 - 3177: -25,-12 + 2747: -21,-12 + 2750: -21,-10 + 2760: -25,-10 + 2761: -25,-12 + - node: + color: '#724276FF' + id: QuarterTileOverlayGreyscale90 + decals: + 2833: 18,15 + 2834: 23,11 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 @@ -4199,140 +4008,135 @@ entities: 571: 16,-2 572: 15,-2 573: 14,-2 - - node: - color: '#D381C93B' - id: QuarterTileOverlayGreyscale90 - decals: - 1393: 23,16 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 771: 10,23 - 772: 10,22 - 773: 10,21 - 774: 10,20 - 775: 10,19 - 776: 10,18 - 777: 10,14 - 778: 10,13 - 779: 10,12 - 780: 10,11 - 781: 10,10 - 782: 10,9 - 783: 10,8 - 784: 10,7 + 706: 10,23 + 707: 10,22 + 708: 10,21 + 709: 10,20 + 710: 10,19 + 711: 10,18 + 712: 10,14 + 713: 10,13 + 714: 10,12 + 715: 10,11 + 716: 10,10 + 717: 10,9 + 718: 10,8 + 719: 10,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1972: 0,4 - 1973: 1,4 - 1974: 2,4 - 1975: 4,4 - 1976: 3,4 - 1977: 5,4 - 1978: 6,4 - 1979: -14,3 - 1980: -15,3 - 1981: -16,3 - 1982: -17,3 - 1983: -18,3 - 1984: -19,3 - 1985: -20,3 - 1986: -20,4 - 1987: -20,5 - 1988: -20,6 - 1989: -20,7 - 2014: -45,-3 - 2016: -44,-3 - 2017: -44,-4 - 2018: -44,-5 - 2097: -47,15 - 2098: -46,15 - 2099: -45,15 - 2100: -44,15 - 2101: -43,15 - 2102: -42,15 - 2103: -41,15 - 2104: -40,15 - 2143: 9,-3 - 2144: 9,-4 - 2145: 9,-5 - 2146: 9,-6 - 2147: 9,-7 - 2148: 9,-8 - 2149: 9,-9 - 2150: 9,-10 - 2151: 10,-10 - 2152: -33,27 - 2153: -34,27 - 2154: -35,27 - 2155: -35,28 - 2156: -35,29 - 2157: -35,30 - 2158: -35,31 - 2159: -35,32 - 2160: -35,33 - 2161: -35,34 - 2432: 10,6 - 2433: 10,5 - 2434: 10,4 - 2435: 11,4 - 2436: 12,4 - 2437: 13,4 - 2438: -40,7 - 2439: -41,7 - 2440: -42,7 - 2441: -43,7 - 2442: -44,7 - 2443: -45,7 - 2444: -45,8 - 2445: -46,8 - 2446: -47,8 - 2571: 11,35 - 2572: 11,34 - 2573: 11,33 - 2574: 11,32 - 2575: 11,31 - 2576: 11,30 - 2577: 11,29 - 2591: 24,27 - 2592: 23,27 - 2593: 23,28 - 2594: 23,29 - 2595: 23,30 - 2596: 23,31 - 2597: 27,40 - 2598: 27,38 - 2599: 27,39 - 2600: 26,40 - 2624: 33,38 - 2625: 32,38 - 2626: 31,38 - 2627: 30,38 - 2628: 29,38 - 2801: 11,36 - 2847: -44,-7 - 2848: -44,-8 + 1829: 0,4 + 1830: 1,4 + 1831: 2,4 + 1832: 4,4 + 1833: 3,4 + 1834: 5,4 + 1835: 6,4 + 1836: -14,3 + 1837: -15,3 + 1838: -16,3 + 1839: -17,3 + 1840: -18,3 + 1841: -19,3 + 1842: -20,3 + 1843: -20,4 + 1844: -20,5 + 1845: -20,6 + 1846: -20,7 + 1871: -45,-3 + 1873: -44,-3 + 1874: -44,-4 + 1875: -44,-5 + 1954: -47,15 + 1955: -46,15 + 1956: -45,15 + 1957: -44,15 + 1958: -43,15 + 1959: -42,15 + 1960: -41,15 + 1961: -40,15 + 2000: 9,-3 + 2001: 9,-4 + 2002: 9,-5 + 2003: 9,-6 + 2004: 9,-7 + 2005: 9,-8 + 2006: 9,-9 + 2007: 9,-10 + 2008: 10,-10 + 2009: -33,27 + 2010: -34,27 + 2011: -35,27 + 2012: -35,28 + 2013: -35,29 + 2014: -35,30 + 2015: -35,31 + 2016: -35,32 + 2017: -35,33 + 2018: -35,34 + 2136: 10,6 + 2137: 10,5 + 2138: 10,4 + 2139: 11,4 + 2140: 12,4 + 2141: 13,4 + 2142: -40,7 + 2143: -41,7 + 2144: -42,7 + 2145: -43,7 + 2146: -44,7 + 2147: -45,7 + 2148: -45,8 + 2149: -46,8 + 2150: -47,8 + 2267: 11,35 + 2268: 11,34 + 2269: 11,33 + 2270: 11,32 + 2271: 11,31 + 2272: 11,30 + 2273: 11,29 + 2287: 24,27 + 2288: 23,27 + 2289: 23,28 + 2290: 23,29 + 2291: 23,30 + 2292: 23,31 + 2293: 27,40 + 2294: 27,38 + 2295: 27,39 + 2296: 26,40 + 2320: 33,38 + 2321: 32,38 + 2322: 31,38 + 2323: 30,38 + 2324: 29,38 + 2391: 11,36 + 2431: -44,-7 + 2432: -44,-8 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 decals: - 2051: -52,21 - 2052: -53,21 - 2053: -54,21 - 2054: -55,21 - 2055: -56,21 - 2056: -56,13 - 2057: -55,13 - 2058: -54,13 - 2059: -53,13 - 2060: -52,13 - 2093: -57,13 - 2094: -57,14 - 2095: -57,21 - 2096: -57,22 + 1908: -52,21 + 1909: -53,21 + 1910: -54,21 + 1911: -55,21 + 1912: -56,21 + 1913: -56,13 + 1914: -55,13 + 1915: -54,13 + 1916: -53,13 + 1917: -52,13 + 1950: -57,13 + 1951: -57,14 + 1952: -57,21 + 1953: -57,22 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -4367,230 +4171,214 @@ entities: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 640: -2,-5 - 641: -2,-2 - 843: -81,-48 - 844: -80,-48 - 845: -79,-48 - 846: -78,-48 - 847: -77,-48 + 633: -2,-5 + 634: -2,-2 + 778: -81,-48 + 779: -80,-48 + 780: -79,-48 + 781: -78,-48 + 782: -77,-48 - node: + cleanable: True color: '#FFFFFFFF' - id: Rock01 + id: Rust decals: - 1106: -26.720001,4.0298495 + 852: -24,-36 + 853: -22,-38 + 854: -22,-38 + 855: -26,-37 + 856: -28,-37 + 857: -28,-37 - node: - cleanable: True + angle: -1.5707963267948966 rad color: '#FFFFFFFF' - id: Rust + id: StandClear decals: - 917: -24,-36 - 918: -22,-38 - 919: -22,-38 - 920: -26,-37 - 921: -28,-37 - 922: -28,-37 + 2867: 14,-19 - node: color: '#FFFFFFFF' id: StandClear decals: 389: 10,42 - 655: -10,-45 - 656: -6,-45 - 1037: 5,41 - 1386: 22,25 - 1387: 22,23 + 957: 5,41 + 1254: 22,25 + 1255: 22,23 - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear decals: - 2714: -32,-63 + 2773: -53,36 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 3136: -26,-8 - 3162: -20,-12 - 3165: -20,-10 - 3174: -24,-12 - 3175: -24,-10 + 2720: -26,-8 + 2746: -20,-12 + 2749: -20,-10 + 2758: -24,-12 + 2759: -24,-10 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 2706: -32,-58 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2712: -30,-64 + 2887: -14,-48 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3138: -18,-13 + 2722: -18,-13 - node: - color: '#D381C93B' + color: '#724276FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1415: 15,14 + 2845: 15,14 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1291: 40,7 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2711: -30,-61 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2715: -32,-64 + 1191: 40,7 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3137: -26,-13 - 3170: -22,-9 - 3171: -22,-11 + 2721: -26,-13 + 2754: -22,-9 + 2755: -22,-11 - node: - color: '#EFB34196' + color: '#724276FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2708: -32,-59 - 2710: -31,-61 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2713: -30,-63 + 2835: 21,7 + 2844: 17,13 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3135: -18,-8 + 2719: -18,-8 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2707: -30,-58 + 2888: -8,-48 - node: color: '#FFFFFFFF' id: VentSmall decals: - 1462: -27,39 - 1582: -1,34 - 1671: 34,30 - 1672: 33,30 - 1844: -14,40 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 2667: -19,-48 + 1319: -27,39 + 1439: -1,34 + 1528: 34,30 + 1529: 33,30 + 1701: -14,40 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarnCorner decals: - 1140: -40,60 + 1040: -40,60 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarnCorner decals: 463: -6,-12 - 970: 2,64 + 905: 2,64 - node: color: '#FFFFFFFF' id: WarnCorner decals: - 1137: -42,58 + 1037: -42,58 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 1139: -42,60 + 1039: -42,60 - node: color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 1138: -40,58 + 1038: -40,58 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 973: -4,64 + 908: -4,64 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 3065: -31,-11 + 2649: -31,-11 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 3069: -35,-11 + 2653: -35,-11 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 2222: 2,-33 + 2072: 2,-33 + 2876: -8,-51 + 3001: -17,-53 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 2221: 0,-33 + 2071: 0,-33 + 2878: -14,-51 + 3000: -19,-53 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 1876: 5,21 - 2220: 2,-35 + 1733: 5,21 + 2070: 2,-35 + 2810: 13,12 + 2877: -8,-53 + 2902: -5,-52 + 3003: -17,-56 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 1875: 3,21 - 2219: 0,-35 + 1732: 3,21 + 2069: 0,-35 + 2879: -14,-53 + 3002: -19,-56 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 2213: -10,-36 - 2756: -10,-52 + 2863: 14,-20 + 2864: 14,-19 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 1275: 21,-19 - 1834: -58,19 - 2212: -6,-36 - 2755: -6,-52 + 1175: 21,-19 + 1691: -58,19 + 2934: 1,-52 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1277: 20,-19 - 1877: 5,22 - 2383: -10,-34 - 2754: -10,-50 + 1177: 20,-19 + 1734: 5,22 + 2865: 14,-18 + 2866: 14,-19 + 2931: -3,-50 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 1274: 21,-16 - 1276: 19,-19 - 1282: 22,-19 - 1833: -58,17 - 1878: 3,22 - 2382: -6,-34 - 2757: -6,-50 + 1174: 21,-16 + 1176: 19,-19 + 1182: 22,-19 + 1690: -58,17 + 1735: 3,22 + 2932: 1,-50 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -4606,290 +4394,303 @@ entities: color: '#52B4E996' id: WarnFullGreyscale decals: - 2478: -35,-1 - 2956: -24,-17 - 2957: -24,-23 - 2958: -20,-16 - 2959: -16,-16 - 3023: -14,-18 - 3024: -14,-14 - 3060: -28,-23 - 3061: -28,-17 - 3062: -32,-18 - 3106: -17,-11 - 3107: -17,-10 - 3111: -22,-14 - 3112: -27,-10 - 3113: -27,-11 + 2182: -35,-1 + 2540: -24,-17 + 2541: -24,-23 + 2542: -20,-16 + 2543: -16,-16 + 2607: -14,-18 + 2608: -14,-14 + 2644: -28,-23 + 2645: -28,-17 + 2646: -32,-18 + 2690: -17,-11 + 2691: -17,-10 + 2695: -22,-14 + 2696: -27,-10 + 2697: -27,-11 - node: color: '#D381C996' id: WarnFullGreyscale decals: - 2560: 30,7 - 2561: 30,8 + 2256: 30,7 + 2257: 30,8 - node: color: '#DE3A3A96' id: WarnFullGreyscale decals: - 2513: -33,45 - 2516: -40,45 - - node: - color: '#FFFFFFFF' - id: WarnFullGreyscale - decals: - 2282: -21,-43 - 2283: -21,-42 - 2285: -18,-46 - 2286: -19,-38 + 2217: -33,45 + 2220: -40,45 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 1278: 20,-20 - 1289: 38,9 - 1290: 38,10 - 1309: 20,18 - 1310: 20,19 - 1317: 21,20 - 1318: 21,21 - 2211: -10,-35 - 2223: 2,-34 - 2431: -2,-1 - 2752: -10,-51 + 1178: 20,-20 + 1189: 38,9 + 1190: 38,10 + 1209: 20,18 + 1210: 20,19 + 1217: 21,20 + 1218: 21,21 + 2073: 2,-34 + 2135: -2,-1 + 2881: -8,-52 + 2903: -5,-51 + 2904: -5,-50 + 2905: -5,-49 + 2906: -5,-48 + 2925: -3,-51 + 3005: -17,-54 + 3006: -17,-55 - node: color: '#334E6DC8' id: WarnLineGreyscaleE decals: - 2634: -19,39 + 2330: -19,39 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 2945: -21,-16 - 3057: -29,-23 - 3058: -29,-17 - 3103: -12,-11 - 3108: -18,-11 - 3109: -18,-10 - 3116: -28,-11 - 3117: -28,-10 + 2529: -21,-16 + 2641: -29,-23 + 2642: -29,-17 + 2687: -12,-11 + 2692: -18,-11 + 2693: -18,-10 + 2700: -28,-11 + 2701: -28,-10 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 2563: 33,8 + 2259: 33,8 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 2280: -22,-43 - 2281: -22,-42 - 3066: -31,-10 + 2650: -31,-10 - node: color: '#334E6DC8' id: WarnLineGreyscaleN decals: - 2635: -20,40 + 2331: -20,40 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 2954: -22,-15 - 3022: -14,-19 - 3025: -14,-15 + 2538: -22,-15 + 2606: -14,-19 + 2609: -14,-15 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 2564: 32,9 + 2260: 32,9 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 2511: -33,44 - 2512: -40,44 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 2279: -19,-39 - 2299: -13,-39 + 2215: -33,44 + 2216: -40,44 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 2477: -35,0 - 2955: -22,-24 - 3020: -18,-23 - 3021: -14,-17 - 3102: -14,-13 - 3110: -22,-13 + 2181: -35,0 + 2539: -22,-24 + 2604: -18,-23 + 2605: -14,-17 + 2686: -14,-13 + 2694: -22,-13 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 2562: 32,7 + 2258: 32,7 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 2508: -32,42 - 2509: -35,42 - 2510: -37,42 - 2514: -33,46 - 2515: -40,46 - 2518: -47,45 - 2519: -48,45 - 2520: -49,45 + 2212: -32,42 + 2213: -35,42 + 2214: -37,42 + 2218: -33,46 + 2219: -40,46 + 2222: -47,45 + 2223: -48,45 + 2224: -49,45 - node: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 2859: -41,17 + 2443: -41,17 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 2284: -18,-45 - 2497: -40,42 - 2498: -44,42 - 2499: -48,42 - 3067: -32,-11 - 3068: -33,-11 - 3070: -34,-11 + 2201: -40,42 + 2202: -44,42 + 2203: -48,42 + 2651: -32,-11 + 2652: -33,-11 + 2654: -34,-11 - node: color: '#334E6DC8' id: WarnLineGreyscaleW decals: - 2633: -21,39 + 2329: -21,39 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 2943: -23,-23 - 2944: -23,-17 - 2960: -15,-16 - 3059: -31,-18 - 3104: -16,-11 - 3105: -16,-10 - 3114: -26,-11 - 3115: -26,-10 + 2527: -23,-23 + 2528: -23,-17 + 2544: -15,-16 + 2643: -31,-18 + 2688: -16,-11 + 2689: -16,-10 + 2698: -26,-11 + 2699: -26,-10 - node: color: '#EFB34196' id: WarnLineGreyscaleW decals: - 2860: -44,18 + 2444: -44,18 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 2277: -20,-43 - 2278: -20,-42 - 2461: -33,7 - 2462: -33,8 - 3071: -35,-10 + 2165: -33,7 + 2166: -33,8 + 2655: -35,-10 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 1264: 18,-16 - 1265: 19,-16 - 1266: 20,-16 - 1267: 21,-19 - 1268: 18,-19 - 1285: 38,9 - 1286: 37,9 - 1287: 36,9 - 1288: 35,9 - 1328: 28,11 - 1329: 27,11 - 1330: 26,11 - 1874: 4,21 - 1879: 6,22 - 1880: 2,22 - 2186: -21,43 - 2187: -20,43 - 2188: -19,43 - 2224: 1,-35 - 2664: -26,-58 - 2665: -27,-58 - 2666: -28,-58 - 2749: -7,-50 - 2750: -8,-50 - 2751: -9,-50 + 1164: 18,-16 + 1165: 19,-16 + 1166: 20,-16 + 1167: 21,-19 + 1168: 18,-19 + 1185: 38,9 + 1186: 37,9 + 1187: 36,9 + 1188: 35,9 + 1228: 28,11 + 1229: 27,11 + 1230: 26,11 + 1731: 4,21 + 1736: 6,22 + 1737: 2,22 + 2043: -21,43 + 2044: -20,43 + 2045: -19,43 + 2074: 1,-35 + 2348: -26,-58 + 2349: -27,-58 + 2811: 12,12 + 2857: 15,-19 + 2858: 16,-19 + 2859: 17,-19 + 2882: -13,-53 + 2883: -12,-53 + 2884: -11,-53 + 2885: -10,-53 + 2886: -9,-53 + 2907: -6,-52 + 2908: -3,-47 + 2909: 1,-47 + 2910: 2,-47 + 2911: 3,-47 + 2912: 4,-47 + 2913: -2,-47 + 2914: 0,-47 + 2922: -2,-50 + 2923: -1,-50 + 2924: 0,-50 + 3009: -18,-56 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 1272: 21,-18 - 1273: 21,-17 - 1279: 19,-20 - 1315: 24,20 - 1316: 24,21 - 1408: 27,18 - 1409: 27,19 - 1410: 27,20 - 1823: -58,12 - 1824: -58,13 - 1825: -58,14 - 1826: -58,15 - 1827: -58,16 - 1828: -58,20 - 1829: -58,21 - 1830: -58,22 - 1831: -58,23 - 1832: -58,24 - 2210: -6,-35 - 2217: 0,-34 - 2430: -4,-1 - 2538: 14,-26 - 2539: 14,-25 - 2540: 14,-24 - 2541: 14,-23 - 2753: -6,-51 - 2833: -47,-10 - 2834: -47,-9 + 1172: 21,-18 + 1173: 21,-17 + 1179: 19,-20 + 1215: 24,20 + 1216: 24,21 + 1274: 27,18 + 1275: 27,19 + 1276: 27,20 + 1680: -58,12 + 1681: -58,13 + 1682: -58,14 + 1683: -58,15 + 1684: -58,16 + 1685: -58,20 + 1686: -58,21 + 1687: -58,22 + 1688: -58,23 + 1689: -58,24 + 2067: 0,-34 + 2134: -4,-1 + 2423: -47,-10 + 2424: -47,-9 + 2880: -14,-52 + 3007: -19,-54 + 3008: -19,-55 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 1259: 18,-16 - 1260: 19,-16 - 1261: 20,-16 - 1262: 21,-16 - 1263: 22,-16 - 1269: 18,-19 - 1270: 19,-19 - 1271: 20,-19 - 1280: 20,-21 - 1281: 19,-21 - 1305: 17,19 - 1306: 18,19 - 1307: 19,19 - 1308: 20,19 - 1325: 26,8 - 1326: 27,8 - 1327: 28,8 - 1465: -23,38 - 1881: 6,22 - 1882: 5,22 - 1883: 3,22 - 1884: 2,22 - 2214: -7,-36 - 2215: -8,-36 - 2216: -9,-36 - 2218: 1,-33 - 2738: -6,-58 - 2739: -12,-58 - 2740: -5,-58 - 2741: -4,-58 - 2742: -13,-58 - 2743: -3,-58 - 2744: -10,-58 - 2745: -11,-58 - 2746: -9,-52 - 2747: -8,-52 - 2748: -7,-52 + 1159: 18,-16 + 1160: 19,-16 + 1161: 20,-16 + 1162: 21,-16 + 1163: 22,-16 + 1169: 18,-19 + 1170: 19,-19 + 1171: 20,-19 + 1180: 20,-21 + 1181: 19,-21 + 1205: 17,19 + 1206: 18,19 + 1207: 19,19 + 1208: 20,19 + 1225: 26,8 + 1226: 27,8 + 1227: 28,8 + 1322: -23,38 + 1738: 6,22 + 1739: 5,22 + 1740: 3,22 + 1741: 2,22 + 2068: 1,-33 + 2361: -12,-58 + 2362: -11,-58 + 2812: 12,10 + 2854: 13,10 + 2855: 14,10 + 2860: 15,-19 + 2861: 16,-19 + 2862: 17,-19 + 2872: -11,-51 + 2873: -10,-51 + 2874: -12,-51 + 2875: -9,-51 + 2927: -2,-52 + 2928: -1,-52 + 2929: 0,-52 + 2930: 0,-52 + 2937: -2,-48 + 2938: -1,-48 + 2939: 0,-48 + 2940: 1,-48 + 2941: 2,-48 + 2942: 3,-48 + 2943: 4,-48 + 3004: -18,-53 + 3051: -4,-48 + 3052: -3,-48 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -4904,17 +4705,13 @@ entities: 387: 10,42 388: 9,42 464: -5,-12 - 635: -24,-47 - 636: -25,-47 - 637: -26,-47 - 734: 13,-9 - 735: 12,-9 - 736: 11,-9 - 976: -6,82 - 977: 4,82 - 988: 3,78 - 989: -5,78 - 1118: 2,-38 + 674: 13,-9 + 675: 12,-9 + 676: 11,-9 + 911: -6,82 + 912: 4,82 + 923: 3,78 + 924: -5,78 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -4926,13 +4723,13 @@ entities: 8: 0,22 9: 0,23 462: -6,-13 - 951: -47,-25 - 952: -47,-24 - 953: -47,-23 - 968: 2,62 - 969: 2,63 - 980: 4,87 - 990: 4,79 + 886: -47,-25 + 887: -47,-24 + 888: -47,-23 + 903: 2,62 + 904: 2,63 + 915: 4,87 + 925: 4,79 - node: color: '#FFFFFFFF' id: WarningLine @@ -4945,45 +4742,25 @@ entities: 614: 7,-21 615: 6,-21 616: 5,-21 - 642: -2,-46 - 643: -3,-46 - 644: -4,-46 - 645: -5,-46 - 646: -6,-46 - 647: -7,-46 - 648: -8,-46 - 649: -9,-46 - 650: -10,-46 - 651: -11,-46 - 652: -12,-46 - 653: -13,-46 - 654: -14,-46 - 663: -8,-42 - 664: -7,-42 - 665: -9,-42 - 666: -10,-42 - 667: -6,-42 - 737: 13,-9 - 738: 12,-9 - 739: 11,-9 - 747: 17,16 - 748: 18,16 - 752: 38,12 - 753: 37,12 - 754: 36,12 - 755: 35,12 - 974: 4,84 - 975: -6,84 - 978: 3,88 - 979: -5,88 - 1029: 6,41 - 1030: 4,41 - 1034: 7,41 - 1035: 3,41 - 1036: 5,41 - 1216: 35,-12 - 1217: 34,-12 - 1218: 33,-12 + 677: 13,-9 + 678: 12,-9 + 679: 11,-9 + 687: 38,12 + 688: 37,12 + 689: 36,12 + 690: 35,12 + 909: 4,84 + 910: -6,84 + 913: 3,88 + 914: -5,88 + 949: 6,41 + 950: 4,41 + 954: 7,41 + 955: 3,41 + 956: 5,41 + 1116: 35,-12 + 1117: 34,-12 + 1118: 33,-12 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -4995,315 +4772,303 @@ entities: 13: -4,22 14: -4,23 15: -2,22 - 954: -57,-25 - 955: -57,-24 - 956: -57,-23 - 971: -4,62 - 972: -4,63 - 981: -6,87 - 991: -6,79 - 1209: 35,-8 - 1210: 35,-7 - 1211: 35,-6 - 1212: 35,-5 - 1213: 35,-4 - 1214: 35,-3 - 1215: 35,-2 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 631: 2,-38 - 632: 1,-38 - 633: 0,-38 - 749: 17,14 - 750: 18,14 + 889: -57,-25 + 890: -57,-24 + 891: -57,-23 + 906: -4,62 + 907: -4,63 + 916: -6,87 + 926: -6,79 + 1109: 35,-8 + 1110: 35,-7 + 1111: 35,-6 + 1112: 35,-5 + 1113: 35,-4 + 1114: 35,-3 + 1115: 35,-2 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 993: 4,78 - 995: -4,78 + 928: 4,78 + 930: -4,78 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 958: -47,-22 + 893: -47,-22 - node: color: '#FFFFFFFF' id: WarningLineCorner decals: - 669: -11,-42 - 983: 2,88 - 985: -6,88 - 997: -6,80 - 1136: 4,-21 - 1219: 32,-12 + 918: 2,88 + 920: -6,88 + 932: -6,80 + 1036: 4,-21 + 1119: 32,-12 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 987: -6,86 + 922: -6,86 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 992: -6,78 - 994: 2,78 + 927: -6,78 + 929: 2,78 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 984: 4,86 + 919: 4,86 - node: color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 668: -5,-42 - 982: 4,88 - 986: -4,88 - 996: 4,80 - 1135: 8,-21 + 917: 4,88 + 921: -4,88 + 931: 4,80 + 1035: 8,-21 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 957: -57,-22 + 892: -57,-22 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 1796: -11,34 - 1797: -10,34 - 1798: -9,34 + 1653: -11,34 + 1654: -10,34 + 1655: -9,34 - node: color: '#334E6DC8' id: WoodTrimThinEndE decals: - 1600: -9,41 + 1457: -9,41 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 1478: -22,31 + 1335: -22,31 - node: color: '#334E6DC8' id: WoodTrimThinEndW decals: - 1601: -11,41 + 1458: -11,41 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 1502: -13,32 - 1682: 42,40 - 2492: -27,52 + 1359: -13,32 + 1539: 42,40 + 2196: -27,52 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 1501: -7,32 + 1358: -7,32 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 1472: -24,37 - 1500: -13,36 - 1764: -21,36 + 1329: -24,37 + 1357: -13,36 + 1621: -21,36 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 1471: -24,37 - 1499: -7,36 + 1328: -24,37 + 1356: -7,36 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 1483: -20,30 - 1496: -13,33 - 1497: -13,34 - 1498: -13,35 - 1573: -2,32 - 1574: -2,33 - 1575: -2,31 - 1587: -19,32 - 1673: 35,37 - 1674: 35,38 - 1675: 35,39 - 1676: 35,40 - 1677: 35,41 - 1678: 43,37 - 1679: 43,38 - 1680: 43,39 - 1681: 43,40 - 1683: -75,-55 - 1685: -71,-55 - 1686: -71,-54 - 1687: -71,-53 - 1688: -71,-52 - 1689: -71,-56 - 1690: -71,-57 - 1762: -21,34 - 1763: -21,35 - 1769: 25,14 - 1770: 25,15 - 2730: -31,-3 - 2731: -31,-2 - 2732: -31,-1 + 1340: -20,30 + 1353: -13,33 + 1354: -13,34 + 1355: -13,35 + 1430: -2,32 + 1431: -2,33 + 1432: -2,31 + 1444: -19,32 + 1530: 35,37 + 1531: 35,38 + 1532: 35,39 + 1533: 35,40 + 1534: 35,41 + 1535: 43,37 + 1536: 43,38 + 1537: 43,39 + 1538: 43,40 + 1540: -75,-55 + 1542: -71,-55 + 1543: -71,-54 + 1544: -71,-53 + 1545: -71,-52 + 1546: -71,-56 + 1547: -71,-57 + 1619: -21,34 + 1620: -21,35 + 1626: 25,14 + 1627: 25,15 + 2358: -31,-3 + 2359: -31,-2 + 2360: -31,-1 - node: color: '#334E6DC8' id: WoodTrimThinLineN decals: - 1602: -10,41 + 1459: -10,41 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 1424: -49,32 - 1425: -50,32 - 1426: -51,32 - 1427: -52,32 - 1428: -53,32 - 1435: -54,32 - 1436: -22,52 - 1437: -23,52 - 1438: -24,52 - 1439: -25,52 - 1440: -26,52 - 1464: -21,33 - 1476: -20,30 - 1477: -21,30 - 1491: -8,32 - 1492: -9,32 - 1493: -10,32 - 1494: -11,32 - 1495: -12,32 - 1577: -1,34 - 1583: -22,32 - 1584: -20,32 - 1657: -32,20 - 1748: 8,-18 - 1766: 26,13 - 1767: 27,13 - 1768: 28,13 + 1281: -49,32 + 1282: -50,32 + 1283: -51,32 + 1284: -52,32 + 1285: -53,32 + 1292: -54,32 + 1293: -22,52 + 1294: -23,52 + 1295: -24,52 + 1296: -25,52 + 1297: -26,52 + 1321: -21,33 + 1333: -20,30 + 1334: -21,30 + 1348: -8,32 + 1349: -9,32 + 1350: -10,32 + 1351: -11,32 + 1352: -12,32 + 1434: -1,34 + 1440: -22,32 + 1441: -20,32 + 1514: -32,20 + 1605: 8,-18 + 1623: 26,13 + 1624: 27,13 + 1625: 28,13 - node: color: '#334E6DC8' id: WoodTrimThinLineS decals: - 1603: -10,41 + 1460: -10,41 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1422: -43,32 - 1423: -44,32 - 1429: -52,29 - 1430: -53,29 - 1431: -51,29 - 1432: -50,29 - 1433: -49,29 - 1434: -54,29 - 1453: -18,37 - 1454: -19,37 - 1455: -20,37 - 1456: -21,37 - 1457: -22,37 - 1463: -21,33 - 1467: -25,37 - 1468: -26,37 - 1469: -27,37 - 1470: -28,37 - 1473: -19,36 - 1474: -20,36 - 1475: -18,36 - 1480: -22,30 - 1481: -21,30 - 1482: -20,30 - 1484: -12,36 - 1485: -10,36 - 1486: -9,36 - 1487: -8,36 - 1512: -11,36 - 1576: -1,34 - 1578: 3,34 - 1579: 4,34 - 1580: 5,34 - 1581: 2,34 - 1585: -19,32 - 1656: -32,24 - 1736: -6,15 - 1737: -5,15 - 1738: -4,15 - 1739: -3,15 - 1740: -2,15 - 1741: -1,15 - 1743: 0,15 - 1749: 9,-17 - 1750: 8,-17 - 1751: 7,-17 - 1752: 5,-12 - 1753: 4,-12 - 1754: 3,-12 - 1765: 28,16 - 1773: 27,16 - 1774: 26,16 - 2479: -42,32 - 2480: -45,32 + 1279: -43,32 + 1280: -44,32 + 1286: -52,29 + 1287: -53,29 + 1288: -51,29 + 1289: -50,29 + 1290: -49,29 + 1291: -54,29 + 1310: -18,37 + 1311: -19,37 + 1312: -20,37 + 1313: -21,37 + 1314: -22,37 + 1320: -21,33 + 1324: -25,37 + 1325: -26,37 + 1326: -27,37 + 1327: -28,37 + 1330: -19,36 + 1331: -20,36 + 1332: -18,36 + 1337: -22,30 + 1338: -21,30 + 1339: -20,30 + 1341: -12,36 + 1342: -10,36 + 1343: -9,36 + 1344: -8,36 + 1369: -11,36 + 1433: -1,34 + 1435: 3,34 + 1436: 4,34 + 1437: 5,34 + 1438: 2,34 + 1442: -19,32 + 1513: -32,24 + 1593: -6,15 + 1594: -5,15 + 1595: -4,15 + 1596: -3,15 + 1597: -2,15 + 1598: -1,15 + 1600: 0,15 + 1606: 9,-17 + 1607: 8,-17 + 1608: 7,-17 + 1609: 5,-12 + 1610: 4,-12 + 1611: 3,-12 + 1622: 28,16 + 1630: 27,16 + 1631: 26,16 + 2183: -42,32 + 2184: -45,32 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1863: -23,37 + 1720: -23,37 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 1479: -22,30 - 1488: -7,33 - 1489: -7,34 - 1490: -7,35 - 1586: -19,32 - 1684: -70,-55 - 1691: -74,-57 - 1692: -74,-56 - 1693: -74,-55 - 1694: -74,-54 - 1695: -74,-53 - 1696: -74,-52 - 1744: 6,-11 - 1745: 6,-10 - 1746: 6,-9 - 1755: 3,-12 - 1756: 3,-11 - 1757: 3,-10 - 1758: 3,-9 - 1759: 3,-8 - 1760: 3,-7 - 1761: 3,-6 - 1771: 29,14 - 1772: 29,15 - 1792: 27,0 - 1793: 27,1 - 1794: 27,2 + 1336: -22,30 + 1345: -7,33 + 1346: -7,34 + 1347: -7,35 + 1443: -19,32 + 1541: -70,-55 + 1548: -74,-57 + 1549: -74,-56 + 1550: -74,-55 + 1551: -74,-54 + 1552: -74,-53 + 1553: -74,-52 + 1601: 6,-11 + 1602: 6,-10 + 1603: 6,-9 + 1612: 3,-12 + 1613: 3,-11 + 1614: 3,-10 + 1615: 3,-9 + 1616: 3,-8 + 1617: 3,-7 + 1618: 3,-6 + 1628: 29,14 + 1629: 29,15 + 1649: 27,0 + 1650: 27,1 + 1651: 27,2 - node: color: '#FFFFFFFF' id: bushsnowa1 decals: - 1605: -11,41 + 1462: -11,41 - node: color: '#FFFFFFFF' id: bushsnowb3 decals: - 1604: -9,41 + 1461: -9,41 - type: GridAtmosphere version: 2 data: @@ -7768,11 +7533,6 @@ entities: - type: Transform pos: -0.39634466,12.638008 parent: 30 - - uid: 9608 - components: - - type: Transform - pos: -19.30925,-35.362278 - parent: 30 - proto: AirAlarm entities: - uid: 6224 @@ -7859,11 +7619,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-40.5 parent: 30 - - type: DeviceList - devices: - - 9952 - - 11153 - - 11094 - uid: 9671 components: - type: Transform @@ -7876,85 +7631,162 @@ entities: - 7116 - 9686 - 9864 - - uid: 17960 + - uid: 9996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-18.5 + pos: -3.5,-46.5 parent: 30 - type: DeviceList devices: - - 17227 - - 18435 - - 18436 - - 18437 - - uid: 20325 + - 11134 + - 9793 + - 9994 + - 19806 + - uid: 10010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-22.5 + parent: 30 + - type: DeviceList + devices: + - 11180 + - 11192 + - 4353 + - 11188 + - 9301 + - 9300 + - 9769 + - 4241 + - 9782 + - 9618 + - 11189 + - uid: 13957 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-25.5 + pos: -2.5,-42.5 parent: 30 - type: DeviceList devices: - - 20326 - - 18441 - - 18438 - - 18440 - - 18442 - - 18439 - - 17228 - - uid: 20353 + - 19767 + - 19768 + - 9993 + - 11007 + - 19770 + - 19771 + - 8454 + - 8609 + - 7443 + - 7098 + - 10000 + - 7099 + - 7100 + - 11003 + - 19812 + - 19766 + - 19598 + - uid: 13958 components: - type: Transform - pos: -14.5,-45.5 + pos: -19.5,-38.5 parent: 30 - type: DeviceList devices: - - 20354 - - 11262 - - 11263 - - 11264 - - 11114 - - 11163 - - uid: 20356 + - 9897 + - 8297 + - 11005 + - 11009 + - 7226 + - 9884 + - 19562 + - 11280 + - 11007 + - 9993 + - 19768 + - 19767 + - uid: 13966 components: - type: Transform - pos: -9.5,-37.5 + rot: 1.5707963267948966 rad + pos: -14.5,-34.5 parent: 30 - type: DeviceList devices: - - 11343 - - 11344 - - 11345 - - 11340 - - 11341 - - 11342 - - 20355 - - 11155 - - 11098 - - 11099 - - 11154 - - uid: 21740 + - 10042 + - 9903 + - 10043 + - 10022 + - 9899 + - 9908 + - 11011 + - uid: 14365 components: - type: Transform - pos: -16.5,-33.5 + rot: -1.5707963267948966 rad + pos: 24.5,16.5 parent: 30 - type: DeviceList devices: - - 11097 - - 11227 - - 21741 - - uid: 21743 + - 13002 + - 14522 + - 22440 + - 22439 + - 13082 + - 13085 + - 18074 + - 18214 + - 17912 + - 18601 + - 18212 + - 13073 + - 17724 + - 12664 + - 12665 + - 12666 + - 18073 + - uid: 17960 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-33.5 + pos: -47.5,-18.5 parent: 30 - type: DeviceList devices: - - 11176 - - 11107 - - 21744 + - 17227 + - 18435 + - 18436 + - 18437 + - uid: 19570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-51.5 + parent: 30 + - type: DeviceList + devices: + - 8335 + - 7222 + - 11280 + - 9839 + - 7224 + - 8311 + - 9995 + - uid: 20325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-25.5 + parent: 30 + - type: DeviceList + devices: + - 20326 + - 18441 + - 18438 + - 18440 + - 18442 + - 18439 + - 17228 - uid: 21747 components: - type: Transform @@ -7971,21 +7803,6 @@ entities: - 21749 - 11178 - 11179 - - uid: 21754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-27.5 - parent: 30 - - type: DeviceList - devices: - - 21753 - - 9302 - - 9303 - - 9301 - - 9300 - - 11188 - - 11189 - uid: 21755 components: - type: Transform @@ -7994,23 +7811,6 @@ entities: - type: DeviceList devices: - 21756 - - uid: 21757 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 30 - - type: DeviceList - devices: - - 21759 - - 9303 - - 9302 - - 9301 - - 9300 - - 9307 - - 9308 - - 9309 - - 11192 - - 11180 - uid: 21760 components: - type: Transform @@ -8280,17 +8080,6 @@ entities: - 18758 - 18759 - 21843 - - uid: 21844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-62.5 - parent: 30 - - type: DeviceList - devices: - - 18770 - - 18769 - - 21845 - uid: 21846 components: - type: Transform @@ -8879,26 +8668,6 @@ entities: - 22053 - 12959 - 12813 - - uid: 22054 - components: - - type: Transform - pos: 19.5,13.5 - parent: 30 - - type: DeviceList - devices: - - 9161 - - 12665 - - 12664 - - 12666 - - 12858 - - 13391 - - 22056 - - 13078 - - 12983 - - 13085 - - 13002 - - 13086 - - 13003 - uid: 22057 components: - type: Transform @@ -8964,7 +8733,6 @@ entities: - 13080 - 22071 - 13006 - - 9161 - uid: 22073 components: - type: Transform @@ -8975,7 +8743,6 @@ entities: - 320 - 21456 - 22072 - - 3357 - 3358 - uid: 22075 components: @@ -9033,6 +8800,13 @@ entities: - 22084 - 3484 - 3481 +- proto: AirAlarmElectronics + entities: + - uid: 15214 + components: + - type: Transform + pos: 3.6103516,20.451275 + parent: 30 - proto: AirCanister entities: - uid: 2087 @@ -9050,40 +8824,35 @@ entities: - type: Transform pos: 22.5,-13.5 parent: 30 - - uid: 15156 - components: - - type: Transform - pos: 16.5,8.5 - parent: 30 - - uid: 15645 + - uid: 12727 components: - type: Transform - pos: 22.5,-14.5 + pos: -52.5,-64.5 parent: 30 - - uid: 16895 + - uid: 12770 components: - type: Transform - pos: -44.5,25.5 + pos: -52.5,-65.5 parent: 30 - - uid: 18782 + - uid: 12816 components: - type: Transform - pos: -66.5,-65.5 + pos: -52.5,-63.5 parent: 30 - - uid: 18783 + - uid: 15156 components: - type: Transform - pos: -65.5,-65.5 + pos: 16.5,8.5 parent: 30 - - uid: 18784 + - uid: 15645 components: - type: Transform - pos: -64.5,-65.5 + pos: 22.5,-14.5 parent: 30 - - uid: 22767 + - uid: 16895 components: - type: Transform - pos: -27.5,-63.5 + pos: -44.5,25.5 parent: 30 - proto: Airlock entities: @@ -9223,6 +8992,30 @@ entities: - type: Transform pos: 6.5,-30.5 parent: 30 + - uid: 9894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-30.5 + parent: 30 + - uid: 10017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 30 + - uid: 11290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 30 + - uid: 19783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 30 - proto: AirlockAtmosphericsLocked entities: - uid: 8604 @@ -9240,6 +9033,18 @@ entities: - type: Transform pos: 20.5,-20.5 parent: 30 + - uid: 9978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-18.5 + parent: 30 + - uid: 9989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-18.5 + parent: 30 - proto: AirlockBarLocked entities: - uid: 455 @@ -9424,12 +9229,16 @@ entities: parent: 30 - proto: AirlockChiefEngineerGlassLocked entities: - - uid: 9592 + - uid: 870 components: - - type: MetaData - name: CE's Office - type: Transform - pos: -18.5,-37.5 + pos: -7.5,-37.5 + parent: 30 + - uid: 9519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-30.5 parent: 30 - proto: AirlockChiefMedicalOfficerGlassLocked entities: @@ -9502,12 +9311,6 @@ entities: - type: Transform pos: -2.5,37.5 parent: 30 - - uid: 22638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-61.5 - parent: 30 - proto: AirlockCommandLocked entities: - uid: 4927 @@ -9546,12 +9349,20 @@ entities: parent: 30 - proto: AirlockEngineeringGlassLocked entities: - - uid: 9353 + - uid: 4827 components: - - type: MetaData - name: SMES bank - type: Transform - pos: -10.5,-33.5 + pos: -13.5,-32.5 + parent: 30 + - uid: 7125 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 30 + - uid: 7146 + components: + - type: Transform + pos: -11.5,-46.5 parent: 30 - uid: 9463 components: @@ -9560,27 +9371,29 @@ entities: - type: Transform pos: -12.5,-36.5 parent: 30 - - uid: 9934 + - uid: 10767 components: - type: Transform - pos: -0.5,-53.5 + rot: 1.5707963267948966 rad + pos: 0.5,-42.5 parent: 30 - - uid: 9935 + - uid: 10769 components: - type: Transform - pos: -0.5,-49.5 + rot: 1.5707963267948966 rad + pos: -9.5,-44.5 parent: 30 - - uid: 10116 + - uid: 10785 components: - type: Transform - pos: -17.5,-45.5 + rot: 1.5707963267948966 rad + pos: -23.5,-45.5 parent: 30 - - uid: 11177 + - uid: 10788 components: - - type: MetaData - name: SMES Bank - type: Transform - pos: -7.5,-37.5 + rot: 1.5707963267948966 rad + pos: -17.5,-45.5 parent: 30 - uid: 20984 components: @@ -9589,18 +9402,6 @@ entities: - type: Transform pos: 4.5,24.5 parent: 30 - - uid: 22635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-60.5 - parent: 30 - - uid: 22636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-60.5 - parent: 30 - proto: AirlockEngineeringLocked entities: - uid: 204 @@ -9610,6 +9411,11 @@ entities: - type: Transform pos: 1.5,22.5 parent: 30 + - uid: 340 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 30 - uid: 914 components: - type: Transform @@ -9660,27 +9466,11 @@ entities: - type: Transform pos: 1.5,-36.5 parent: 30 - - uid: 9426 - components: - - type: Transform - pos: -20.5,-41.5 - parent: 30 - - uid: 9474 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 30 - - uid: 9577 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 30 - - uid: 9693 + - uid: 10786 components: - - type: MetaData - name: Thermo Electric Generator - type: Transform - pos: -7.5,-42.5 + rot: 1.5707963267948966 rad + pos: -17.5,-49.5 parent: 30 - uid: 11377 components: @@ -9707,27 +9497,11 @@ entities: - type: Transform pos: -62.5,43.5 parent: 30 - - uid: 17912 - components: - - type: Transform - pos: -54.5,-59.5 - parent: 30 - - uid: 18794 - components: - - type: Transform - pos: -64.5,-61.5 - parent: 30 - uid: 18927 components: - type: Transform pos: -39.5,-24.5 parent: 30 - - uid: 22633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-58.5 - parent: 30 - proto: AirlockExternal entities: - uid: 841 @@ -9735,6 +9509,12 @@ entities: - type: Transform pos: -82.5,-60.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6606: + - DoorStatus: Close - uid: 17373 components: - type: Transform @@ -9763,30 +9543,58 @@ entities: - type: Transform pos: 15.5,30.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1826: + - DoorStatus: DoorBolt - uid: 1826 components: - type: Transform pos: 17.5,30.5 parent: 30 - - uid: 22631 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1695: + - DoorStatus: DoorBolt + - uid: 9501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-58.5 + rot: 1.5707963267948966 rad + pos: -21.5,-55.5 parent: 30 - type: DeviceLinkSource linkedPorts: - 22632: + 10789: - DoorStatus: DoorBolt - - uid: 22632 + - uid: 10534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-58.5 + rot: 3.141592653589793 rad + pos: -13.5,-55.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 10789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-57.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-57.5 parent: 30 - type: DeviceLinkSource linkedPorts: - 22631: + 10534: - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: @@ -9878,42 +9686,24 @@ entities: parent: 30 - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 3531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-58.5 - parent: 30 - - uid: 6272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-56.5 - parent: 30 - - uid: 7207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-58.5 - parent: 30 - - uid: 10135 + - uid: 9342 components: - type: Transform - pos: -17.5,-52.5 + rot: 3.141592653589793 rad + pos: 5.5,-44.5 parent: 30 - type: DeviceLinkSource linkedPorts: - 10136: + 10559: - DoorStatus: DoorBolt - - uid: 10136 + - uid: 10559 components: - type: Transform - pos: -17.5,-49.5 + rot: 3.141592653589793 rad + pos: 6.5,-45.5 parent: 30 - - type: DeviceLinkSource - linkedPorts: - 10135: - - DoorStatus: DoorBolt + - type: DeviceLinkSink + invokeCounter: 1 - uid: 20059 components: - type: Transform @@ -9939,6 +9729,12 @@ entities: - type: Transform pos: -63.5,-18.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 17342: + - DoorStatus: DoorBolt - uid: 5391 components: - type: Transform @@ -9948,6 +9744,48 @@ entities: linkedPorts: 5390: - DoorStatus: DoorBolt + - uid: 9654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-54.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 9655: + - DoorStatus: DoorBolt + 9675: + - DoorStatus: DoorBolt + - uid: 9655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-56.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 9654: + - DoorStatus: DoorBolt + 9675: + - DoorStatus: DoorBolt + - uid: 9675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-56.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 9654: + - DoorStatus: DoorBolt + 9655: + - DoorStatus: DoorBolt - uid: 15334 components: - type: Transform @@ -9971,6 +9809,12 @@ entities: - type: Transform pos: -63.5,-20.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 386: + - DoorStatus: DoorBolt - uid: 18018 components: - type: Transform @@ -10065,6 +9909,12 @@ entities: rot: 3.141592653589793 rad pos: 25.5,43.5 parent: 30 + - uid: 11449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,36.5 + parent: 30 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 11864 @@ -10087,6 +9937,12 @@ entities: rot: 3.141592653589793 rad pos: -18.5,46.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1696: + - DoorStatus: DoorBolt - uid: 5390 components: - type: Transform @@ -10101,11 +9957,23 @@ entities: - type: Transform pos: 45.5,16.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15830: + - DoorStatus: DoorBolt - uid: 15830 components: - type: Transform pos: 48.5,16.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15829: + - DoorStatus: DoorBolt - uid: 16278 components: - type: Transform @@ -10132,6 +10000,12 @@ entities: rot: -1.5707963267948966 rad pos: -85.5,-60.5 parent: 30 + - type: DeviceLinkSource + linkedPorts: + 841: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 460 @@ -10271,6 +10145,16 @@ entities: - type: Transform pos: -34.5,-0.5 parent: 30 + - uid: 4098 + components: + - type: Transform + pos: -62.5,-61.5 + parent: 30 + - uid: 4101 + components: + - type: Transform + pos: -61.5,-61.5 + parent: 30 - uid: 6287 components: - type: Transform @@ -10466,35 +10350,25 @@ entities: - type: Transform pos: -59.5,-22.5 parent: 30 - - uid: 18534 - components: - - type: Transform - pos: -57.5,-54.5 - parent: 30 - - uid: 18691 + - uid: 17717 components: - type: Transform - pos: -66.5,-54.5 + pos: -71.5,-59.5 parent: 30 - - uid: 18733 + - uid: 18360 components: - type: Transform pos: -71.5,-60.5 parent: 30 - - uid: 18734 - components: - - type: Transform - pos: -69.5,-58.5 - parent: 30 - - uid: 18814 + - uid: 18534 components: - type: Transform - pos: -59.5,-61.5 + pos: -57.5,-54.5 parent: 30 - - uid: 18815 + - uid: 18691 components: - type: Transform - pos: -58.5,-61.5 + pos: -66.5,-54.5 parent: 30 - uid: 19392 components: @@ -10516,6 +10390,18 @@ entities: - type: Transform pos: -69.5,-54.5 parent: 30 +- proto: AirlockGlassShuttle + entities: + - uid: 9121 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 30 + - uid: 11452 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 30 - proto: AirlockHatchMaintenance entities: - uid: 9957 @@ -10671,17 +10557,6 @@ entities: - type: Transform pos: -26.5,-41.5 parent: 30 - - uid: 9462 - components: - - type: Transform - pos: -12.5,-26.5 - parent: 30 - - uid: 22634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-60.5 - parent: 30 - proto: AirlockMaintGlass entities: - uid: 8303 @@ -10890,10 +10765,11 @@ entities: - type: Transform pos: -60.5,31.5 parent: 30 - - uid: 19687 + - uid: 18992 components: - type: Transform - pos: -19.5,-27.5 + rot: 3.141592653589793 rad + pos: -19.5,-28.5 parent: 30 - uid: 19815 components: @@ -11089,7 +10965,7 @@ entities: pos: -20.5,-5.5 parent: 30 - type: Door - secondsUntilStateChange: -537.51984 + secondsUntilStateChange: -19125.69 state: Opening - type: DeviceLinkSource lastSignals: @@ -11228,6 +11104,12 @@ entities: parent: 30 - proto: AirlockScienceGlassLocked entities: + - uid: 7677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 30 - uid: 12914 components: - type: Transform @@ -11240,16 +11122,6 @@ entities: parent: 30 - proto: AirlockScienceLocked entities: - - uid: 12651 - components: - - type: Transform - pos: 16.5,15.5 - parent: 30 - - uid: 12652 - components: - - type: Transform - pos: 19.5,15.5 - parent: 30 - uid: 12908 components: - type: MetaData @@ -11257,6 +11129,12 @@ entities: - type: Transform pos: 34.5,8.5 parent: 30 + - uid: 14335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,13.5 + parent: 30 - proto: AirlockSecurityGlass entities: - uid: 2312 @@ -11276,6 +11154,12 @@ entities: rot: 3.141592653589793 rad pos: -21.5,46.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5070: + - DoorStatus: DoorBolt - uid: 1756 components: - type: Transform @@ -11408,6 +11292,11 @@ entities: - type: Transform pos: -6.5,14.5 parent: 30 + - uid: 12637 + components: + - type: Transform + pos: -67.5,-62.5 + parent: 30 - proto: AirlockTheatreLocked entities: - uid: 652 @@ -11424,6 +11313,16 @@ entities: parent: 30 - proto: AirSensor entities: + - uid: 4353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 7116 components: - type: Transform @@ -11461,76 +11360,83 @@ entities: deviceLists: - 8262 - 8254 - - uid: 9952 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 30 - - uid: 17227 + - uid: 9994 components: - type: Transform - pos: -46.5,-17.5 + pos: 0.5,-48.5 parent: 30 - - uid: 17228 + - type: DeviceNetwork + deviceLists: + - 9996 + - uid: 9995 components: - type: Transform - pos: -48.5,-23.5 + rot: -1.5707963267948966 rad + pos: -17.5,-51.5 parent: 30 - - uid: 20326 + - type: DeviceNetwork + deviceLists: + - 13965 + - 19570 + - uid: 9999 components: - type: Transform - pos: -56.5,-23.5 + pos: 1.5,-39.5 parent: 30 - - uid: 20354 + - type: DeviceNetwork + deviceLists: + - 19597 + - uid: 10000 components: - type: Transform - pos: -8.5,-44.5 + pos: -8.5,-40.5 parent: 30 - - uid: 20355 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - uid: 17227 components: - type: Transform - pos: -9.5,-39.5 + pos: -46.5,-17.5 parent: 30 - - uid: 20358 + - uid: 17228 components: - type: Transform - pos: -17.5,-40.5 + pos: -48.5,-23.5 parent: 30 - - uid: 21741 + - uid: 18073 components: - type: Transform - pos: -17.5,-34.5 + pos: 20.5,13.5 parent: 30 - - uid: 21744 + - type: DeviceNetwork + deviceLists: + - 14365 + - uid: 19562 components: - type: Transform - pos: -12.5,-33.5 + pos: -17.5,-42.5 parent: 30 - - uid: 21745 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - uid: 20326 components: - type: Transform - pos: 1.5,-40.5 + pos: -56.5,-23.5 parent: 30 - uid: 21749 components: - type: Transform pos: -2.5,-25.5 parent: 30 - - uid: 21753 - components: - - type: Transform - pos: 10.5,-27.5 - parent: 30 - uid: 21756 components: - type: Transform pos: 12.5,-36.5 parent: 30 - - uid: 21759 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 30 - uid: 21761 components: - type: Transform @@ -11626,11 +11532,6 @@ entities: - type: Transform pos: -66.5,-48.5 parent: 30 - - uid: 21845 - components: - - type: Transform - pos: -57.5,-62.5 - parent: 30 - uid: 21847 components: - type: Transform @@ -11856,11 +11757,6 @@ entities: - type: Transform pos: 32.5,19.5 parent: 30 - - uid: 22056 - components: - - type: Transform - pos: 20.5,11.5 - parent: 30 - uid: 22058 components: - type: Transform @@ -11935,17 +11831,10 @@ entities: parent: 30 - proto: AmeController entities: - - uid: 9476 - components: - - type: Transform - pos: -11.5,-27.5 - parent: 30 -- proto: AmeJar - entities: - - uid: 801 + - uid: 11269 components: - type: Transform - pos: -17.490644,-32.439728 + pos: -13.5,-47.5 parent: 30 - proto: AnomalyScanner entities: @@ -12136,8 +12025,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - uid: 7079 components: - type: MetaData @@ -12163,8 +12050,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - uid: 7433 components: - type: MetaData @@ -12183,8 +12068,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - uid: 7610 components: - type: MetaData @@ -12236,6 +12119,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-23.5 parent: 30 + - uid: 8278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-45.5 + parent: 30 - uid: 8363 components: - type: MetaData @@ -12268,16 +12157,6 @@ entities: - type: Transform pos: 0.5,-31.5 parent: 30 - - uid: 9573 - components: - - type: MetaData - name: Engineering APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-38.5 - parent: 30 - - type: Battery - startingCharge: 12000 - uid: 9628 components: - type: MetaData @@ -12286,29 +12165,16 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-2.5 parent: 30 - - uid: 10633 - components: - - type: MetaData - name: Engineering Central APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-38.5 - parent: 30 - - uid: 10641 + - uid: 9934 components: - - type: MetaData - name: AME APC - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-32.5 + pos: -18.5,-30.5 parent: 30 - - uid: 10790 + - uid: 10590 components: - - type: MetaData - name: TEG APC - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-47.5 + pos: -20.5,-53.5 parent: 30 - uid: 10791 components: @@ -12318,6 +12184,11 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-7.5 parent: 30 + - uid: 11014 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 30 - uid: 11808 components: - type: MetaData @@ -12340,13 +12211,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,10.5 parent: 30 - - uid: 12974 - components: - - type: MetaData - name: RND APC - - type: Transform - pos: 18.5,13.5 - parent: 30 - uid: 13096 components: - type: MetaData @@ -12368,6 +12232,12 @@ entities: - type: Transform pos: 15.5,55.5 parent: 30 + - uid: 14364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 30 - uid: 14541 components: - type: MetaData @@ -12409,6 +12279,11 @@ entities: - type: Transform pos: 0.5,85.5 parent: 30 + - uid: 20367 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 30 - uid: 22213 components: - type: MetaData @@ -12424,21 +12299,12 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,10.5 parent: 30 - - uid: 22672 - components: - - type: MetaData - name: Telecomms APC - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-57.5 - parent: 30 - - uid: 22673 +- proto: APCElectronics + entities: + - uid: 15969 components: - - type: MetaData - name: Telecomms Entrance APC - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-60.5 + pos: 3.115302,20.471077 parent: 30 - proto: APCSuperCapacity entities: @@ -12475,6 +12341,41 @@ entities: parent: 30 - proto: AsteroidRock entities: + - uid: 332 + components: + - type: Transform + pos: -61.5,-68.5 + parent: 30 + - uid: 333 + components: + - type: Transform + pos: -60.5,-69.5 + parent: 30 + - uid: 3342 + components: + - type: Transform + pos: -51.5,-67.5 + parent: 30 + - uid: 3343 + components: + - type: Transform + pos: -54.5,-68.5 + parent: 30 + - uid: 3345 + components: + - type: Transform + pos: -53.5,-67.5 + parent: 30 + - uid: 3346 + components: + - type: Transform + pos: -52.5,-67.5 + parent: 30 + - uid: 12854 + components: + - type: Transform + pos: -54.5,-67.5 + parent: 30 - uid: 13747 components: - type: Transform @@ -12655,25 +12556,15 @@ entities: - type: Transform pos: -70.5,-49.5 parent: 30 - - uid: 18183 - components: - - type: Transform - pos: -74.5,-39.5 - parent: 30 - - uid: 18189 - components: - - type: Transform - pos: -53.5,-61.5 - parent: 30 - - uid: 18190 + - uid: 17791 components: - type: Transform - pos: -52.5,-61.5 + pos: -53.5,-68.5 parent: 30 - - uid: 18191 + - uid: 18183 components: - type: Transform - pos: -51.5,-61.5 + pos: -74.5,-39.5 parent: 30 - uid: 18192 components: @@ -12735,61 +12626,11 @@ entities: - type: Transform pos: -50.5,-62.5 parent: 30 - - uid: 18205 - components: - - type: Transform - pos: -51.5,-62.5 - parent: 30 - - uid: 18206 - components: - - type: Transform - pos: -52.5,-62.5 - parent: 30 - - uid: 18207 - components: - - type: Transform - pos: -52.5,-63.5 - parent: 30 - uid: 18208 components: - type: Transform pos: -50.5,-63.5 parent: 30 - - uid: 18210 - components: - - type: Transform - pos: -52.5,-64.5 - parent: 30 - - uid: 18211 - components: - - type: Transform - pos: -52.5,-65.5 - parent: 30 - - uid: 18212 - components: - - type: Transform - pos: -52.5,-66.5 - parent: 30 - - uid: 18213 - components: - - type: Transform - pos: -52.5,-67.5 - parent: 30 - - uid: 18214 - components: - - type: Transform - pos: -51.5,-66.5 - parent: 30 - - uid: 18215 - components: - - type: Transform - pos: -51.5,-65.5 - parent: 30 - - uid: 18216 - components: - - type: Transform - pos: -51.5,-64.5 - parent: 30 - uid: 18217 components: - type: Transform @@ -13000,36 +12841,6 @@ entities: - type: Transform pos: -81.5,-56.5 parent: 30 - - uid: 18354 - components: - - type: Transform - pos: -55.5,-69.5 - parent: 30 - - uid: 18355 - components: - - type: Transform - pos: -56.5,-69.5 - parent: 30 - - uid: 18356 - components: - - type: Transform - pos: -61.5,-69.5 - parent: 30 - - uid: 18357 - components: - - type: Transform - pos: -62.5,-69.5 - parent: 30 - - uid: 18358 - components: - - type: Transform - pos: -62.5,-68.5 - parent: 30 - - uid: 18359 - components: - - type: Transform - pos: -62.5,-67.5 - parent: 30 - uid: 18361 components: - type: Transform @@ -13085,25 +12896,60 @@ entities: - type: Transform pos: -66.5,-68.5 parent: 30 - - uid: 18372 + - uid: 18376 components: - type: Transform - pos: -65.5,-68.5 + pos: -79.5,-65.5 parent: 30 - - uid: 18373 + - uid: 18776 components: - type: Transform - pos: -64.5,-68.5 + pos: -58.5,-69.5 parent: 30 - - uid: 18374 + - uid: 18777 components: - type: Transform - pos: -63.5,-68.5 + pos: -57.5,-69.5 parent: 30 - - uid: 18376 + - uid: 18778 components: - type: Transform - pos: -79.5,-65.5 + pos: -59.5,-69.5 + parent: 30 + - uid: 18779 + components: + - type: Transform + pos: -57.5,-68.5 + parent: 30 + - uid: 18780 + components: + - type: Transform + pos: -58.5,-68.5 + parent: 30 + - uid: 18781 + components: + - type: Transform + pos: -56.5,-68.5 + parent: 30 + - uid: 18782 + components: + - type: Transform + pos: -55.5,-68.5 + parent: 30 + - uid: 18784 + components: + - type: Transform + pos: -59.5,-68.5 + parent: 30 + - uid: 18785 + components: + - type: Transform + pos: -60.5,-68.5 + parent: 30 + - uid: 18798 + components: + - type: Transform + pos: -56.5,-69.5 parent: 30 - uid: 19393 components: @@ -13115,72 +12961,77 @@ entities: - type: Transform pos: -73.5,-38.5 parent: 30 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 380 components: - type: Transform - pos: -59.5,-7.5 + pos: -52.5,-10.5 parent: 30 - - uid: 3707 + - uid: 868 components: - type: Transform + rot: 3.141592653589793 rad pos: 25.5,43.5 parent: 30 - - uid: 9121 - components: - - type: Transform - pos: 38.5,-5.5 - parent: 30 - - uid: 9122 + - uid: 1083 components: - type: Transform + rot: 1.5707963267948966 rad pos: 38.5,-3.5 parent: 30 - - uid: 9123 + - uid: 1475 components: - type: Transform - pos: -16.5,12.5 + rot: 1.5707963267948966 rad + pos: 38.5,-5.5 parent: 30 - - uid: 9124 + - uid: 1490 components: - type: Transform - pos: -19.5,17.5 + rot: -1.5707963267948966 rad + pos: -65.5,23.5 parent: 30 - - uid: 9798 + - uid: 1493 components: - type: Transform - pos: -52.5,-7.5 + rot: -1.5707963267948966 rad + pos: -65.5,15.5 parent: 30 - - uid: 16402 + - uid: 3707 components: - type: Transform - pos: -65.5,23.5 + rot: -1.5707963267948966 rad + pos: -65.5,13.5 parent: 30 - - uid: 16403 + - uid: 11451 components: - type: Transform - pos: -65.5,21.5 + pos: -59.5,-10.5 parent: 30 - - uid: 16404 + - uid: 11453 components: - type: Transform - pos: -65.5,15.5 + rot: -1.5707963267948966 rad + pos: -53.5,36.5 parent: 30 - - uid: 16405 + - uid: 11454 components: - type: Transform - pos: -65.5,13.5 + rot: -1.5707963267948966 rad + pos: -65.5,21.5 parent: 30 - - uid: 20590 +- proto: AtmosDeviceFanTiny + entities: + - uid: 9123 components: - type: Transform - pos: -52.5,2.5 + pos: -16.5,12.5 parent: 30 - - uid: 20591 + - uid: 9124 components: - type: Transform - pos: -59.5,2.5 + pos: -19.5,17.5 parent: 30 - proto: AtmosFixBlockerMarker entities: @@ -13424,18 +13275,11 @@ entities: parent: 30 - proto: Autolathe entities: - - uid: 11276 + - uid: 3125 components: - type: Transform - pos: 3.5,-43.5 + pos: -21.5,-44.5 parent: 30 - - type: MaterialStorage - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - uid: 11726 components: - type: Transform @@ -13495,6 +13339,12 @@ entities: parent: 30 - proto: Barricade entities: + - uid: 3196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 30 - uid: 15531 components: - type: Transform @@ -13515,11 +13365,6 @@ entities: - type: Transform pos: -53.5,42.5 parent: 30 - - uid: 19688 - components: - - type: Transform - pos: -19.5,-26.5 - parent: 30 - uid: 19689 components: - type: Transform @@ -13576,6 +13421,19 @@ entities: - type: Transform pos: -0.5,-10.5 parent: 30 +- proto: BaseComputer + entities: + - uid: 8821 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 30 + - uid: 9592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 30 - proto: BaseGasCondenser entities: - uid: 6731 @@ -13733,6 +13591,11 @@ entities: - type: Transform pos: -51.5,-53.5 parent: 30 + - uid: 18216 + components: + - type: Transform + pos: -69.5,-62.5 + parent: 30 - uid: 21091 components: - type: Transform @@ -13777,14 +13640,6 @@ entities: - type: Transform pos: -17.5,31.5 parent: 30 -- proto: BedsheetCE - entities: - - uid: 9329 - components: - - type: Transform - parent: 9604 - - type: Physics - canCollide: False - proto: BedsheetCMO entities: - uid: 7166 @@ -13905,6 +13760,11 @@ entities: - type: Transform pos: -51.5,-53.5 parent: 30 + - uid: 18786 + components: + - type: Transform + pos: -69.5,-62.5 + parent: 30 - uid: 21092 components: - type: Transform @@ -13990,50 +13850,57 @@ entities: - type: Transform pos: -43.5,16.5 parent: 30 - - uid: 9068 + - uid: 9064 components: - type: Transform - pos: 12.5,-38.5 + pos: -4.5,-58.5 parent: 30 - - uid: 9404 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 9065 components: - type: Transform - pos: -24.5,-45.5 + pos: -3.5,-58.5 parent: 30 - - uid: 9405 + - uid: 9068 components: - type: Transform - pos: -23.5,-45.5 + pos: 12.5,-38.5 parent: 30 - - uid: 9825 + - uid: 9302 components: - type: Transform - pos: -13.5,-59.5 + pos: 2.5,-58.5 parent: 30 - - uid: 9826 + - uid: 9533 components: - type: Transform - pos: -13.5,-58.5 + pos: -16.5,-38.5 parent: 30 - - uid: 9827 + - uid: 9678 components: - type: Transform - pos: -13.5,-57.5 + pos: -2.5,-58.5 parent: 30 - - uid: 9828 + - uid: 9690 components: - type: Transform - pos: -1.5,-59.5 + pos: 1.5,-58.5 parent: 30 - - uid: 9829 + - uid: 9691 components: - type: Transform - pos: -1.5,-58.5 + pos: 3.5,-58.5 parent: 30 - - uid: 9830 + - uid: 11015 components: - type: Transform - pos: -1.5,-57.5 + pos: -18.5,-38.5 + parent: 30 + - uid: 11028 + components: + - type: Transform + pos: -17.5,-38.5 parent: 30 - uid: 11659 components: @@ -14070,16 +13937,11 @@ entities: - type: Transform pos: 36.5,14.5 parent: 30 - - uid: 13751 + - uid: 15990 components: - type: Transform pos: 48.5,25.5 parent: 30 - - uid: 14512 - components: - - type: Transform - pos: 48.5,23.5 - parent: 30 - uid: 16228 components: - type: Transform @@ -14216,38 +14078,38 @@ entities: enabled: False - proto: BookAtmosAirAlarms entities: - - uid: 22308 + - uid: 3347 components: - type: Transform - pos: -60.65072,-63.356808 + pos: -58.671722,-63.148144 parent: 30 - proto: BookAtmosDistro entities: - - uid: 22309 + - uid: 3359 components: - type: Transform - pos: -60.36943,-63.3924 + pos: -58.35984,-63.163 parent: 30 - proto: BookAtmosVentsMore entities: - - uid: 22310 + - uid: 16405 components: - type: Transform - pos: -60.68197,-63.450558 + pos: -58.656876,-63.44517 parent: 30 - proto: BookAtmosWaste entities: - - uid: 22311 + - uid: 3357 components: - type: Transform - pos: -60.353844,-63.575558 + pos: -58.35984,-63.50458 parent: 30 -- proto: BookChefGaming +- proto: BookHowToCookForFortySpaceman entities: - uid: 9948 components: - type: Transform - pos: -15.506373,7.7216425 + pos: -17.483065,5.6789637 parent: 30 - proto: BookRandomStory entities: @@ -14256,23 +14118,6 @@ entities: - type: Transform pos: 8.515235,-13.437349 parent: 30 - - uid: 22306 - components: - - type: Transform - pos: -54.57496,-63.325558 - parent: 30 - - uid: 22307 - components: - - type: Transform - pos: -54.340584,-63.466183 - parent: 30 -- proto: BooksBag - entities: - - uid: 22303 - components: - - type: Transform - pos: -60.525063,-67.28237 - parent: 30 - proto: Bookshelf entities: - uid: 2356 @@ -14327,50 +14172,30 @@ entities: - type: Transform pos: 7.5,-13.5 parent: 30 - - uid: 14970 - components: - - type: Transform - pos: -54.5,-65.5 - parent: 30 - - uid: 15180 - components: - - type: Transform - pos: -55.5,-65.5 - parent: 30 - - uid: 15213 - components: - - type: Transform - pos: -56.5,-65.5 - parent: 30 - - uid: 15214 - components: - - type: Transform - pos: -54.5,-67.5 - parent: 30 - - uid: 15280 + - uid: 10148 components: - type: Transform - pos: -55.5,-67.5 + pos: -60.5,-62.5 parent: 30 - - uid: 15353 + - uid: 10149 components: - type: Transform - pos: -56.5,-67.5 + pos: -58.5,-62.5 parent: 30 - - uid: 15355 + - uid: 12819 components: - type: Transform - pos: -54.5,-62.5 + pos: -59.5,-62.5 parent: 30 - - uid: 15975 + - uid: 14361 components: - type: Transform - pos: -55.5,-62.5 + pos: -58.5,-64.5 parent: 30 - - uid: 16165 + - uid: 14504 components: - type: Transform - pos: -56.5,-63.5 + pos: -67.5,-65.5 parent: 30 - uid: 16177 components: @@ -14412,6 +14237,11 @@ entities: - type: Transform pos: -76.5,-61.5 parent: 30 + - uid: 17544 + components: + - type: Transform + pos: -59.5,-64.5 + parent: 30 - uid: 17669 components: - type: Transform @@ -14432,6 +14262,21 @@ entities: - type: Transform pos: -74.5,-58.5 parent: 30 + - uid: 18773 + components: + - type: Transform + pos: -60.5,-66.5 + parent: 30 + - uid: 18774 + components: + - type: Transform + pos: -58.5,-66.5 + parent: 30 + - uid: 18783 + components: + - type: Transform + pos: -59.5,-66.5 + parent: 30 - uid: 18818 components: - type: Transform @@ -14580,6 +14425,11 @@ entities: parent: 30 - proto: BoxFolderGrey entities: + - uid: 339 + components: + - type: Transform + pos: 16.633371,16.353863 + parent: 30 - uid: 1403 components: - type: Transform @@ -14590,11 +14440,6 @@ entities: - type: Transform pos: -11.490971,34.71304 parent: 30 - - uid: 12865 - components: - - type: Transform - pos: 14.525648,10.557264 - parent: 30 - proto: BoxFolderRed entities: - uid: 1520 @@ -14656,11 +14501,6 @@ entities: - type: Transform pos: -7.4440956,34.21304 parent: 30 - - uid: 9616 - components: - - type: Transform - pos: -17.512093,-35.436672 - parent: 30 - uid: 11253 components: - type: Transform @@ -14671,10 +14511,10 @@ entities: - type: Transform pos: 17.53771,-0.43951988 parent: 30 - - uid: 19424 + - uid: 12842 components: - type: Transform - pos: -60.46691,-65.40645 + pos: -62.622215,-64.76696 parent: 30 - proto: BoxHandcuff entities: @@ -14707,7 +14547,7 @@ entities: - uid: 18788 components: - type: Transform - pos: -63.476974,-62.485996 + pos: -52.499535,-60.446262 parent: 30 - proto: BoxLightMixed entities: @@ -14854,11 +14694,6 @@ entities: parent: 30 - proto: Bucket entities: - - uid: 318 - components: - - type: Transform - pos: -24.461937,5.451811 - parent: 30 - uid: 323 components: - type: Transform @@ -14874,6 +14709,11 @@ entities: - type: Transform pos: -47.45382,68.49689 parent: 30 + - uid: 13049 + components: + - type: Transform + pos: -24.119356,6.357745 + parent: 30 - uid: 19541 components: - type: Transform @@ -14891,6 +14731,49 @@ entities: - type: Transform pos: -15.949732,15.31613 parent: 30 +- proto: ButtonFrameCaution + entities: + - uid: 12380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-47.5 + parent: 30 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 9062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-54.5 + parent: 30 + - uid: 9215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-54.5 + parent: 30 +- proto: ButtonFrameGrey + entities: + - uid: 11138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-38.5 + parent: 30 +- proto: ButtonFrameJanitor + entities: + - uid: 9401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 30 + - uid: 9405 + components: + - type: Transform + pos: 18.5,17.5 + parent: 30 - proto: CableApcExtension entities: - uid: 41 @@ -14903,6 +14786,11 @@ entities: - type: Transform pos: 27.5,20.5 parent: 30 + - uid: 335 + components: + - type: Transform + pos: -67.5,-60.5 + parent: 30 - uid: 408 components: - type: Transform @@ -14913,15 +14801,25 @@ entities: - type: Transform pos: -14.5,20.5 parent: 30 - - uid: 828 + - uid: 773 components: - type: Transform - pos: 30.5,-6.5 + pos: -24.5,-41.5 parent: 30 - - uid: 870 + - uid: 788 components: - type: Transform - pos: -12.5,-55.5 + pos: -22.5,-40.5 + parent: 30 + - uid: 795 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 30 + - uid: 828 + components: + - type: Transform + pos: 30.5,-6.5 parent: 30 - uid: 878 components: @@ -14938,6 +14836,16 @@ entities: - type: Transform pos: -59.5,7.5 parent: 30 + - uid: 908 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 30 + - uid: 915 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 30 - uid: 917 components: - type: Transform @@ -15038,6 +14946,11 @@ entities: - type: Transform pos: -37.5,61.5 parent: 30 + - uid: 3126 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 30 - uid: 3193 components: - type: Transform @@ -16923,31 +16836,6 @@ entities: - type: Transform pos: -26.5,7.5 parent: 30 - - uid: 4126 - components: - - type: Transform - pos: -26.5,6.5 - parent: 30 - - uid: 4127 - components: - - type: Transform - pos: -26.5,6.5 - parent: 30 - - uid: 4128 - components: - - type: Transform - pos: -26.5,5.5 - parent: 30 - - uid: 4129 - components: - - type: Transform - pos: -27.5,5.5 - parent: 30 - - uid: 4130 - components: - - type: Transform - pos: -28.5,5.5 - parent: 30 - uid: 4131 components: - type: Transform @@ -16996,12 +16884,7 @@ entities: - uid: 4140 components: - type: Transform - pos: -25.5,6.5 - parent: 30 - - uid: 4141 - components: - - type: Transform - pos: -24.5,6.5 + pos: 16.5,11.5 parent: 30 - uid: 4142 components: @@ -17808,6 +17691,11 @@ entities: - type: Transform pos: -29.5,-22.5 parent: 30 + - uid: 4444 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 30 - uid: 4569 components: - type: Transform @@ -18858,11 +18746,6 @@ entities: - type: Transform pos: -51.5,55.5 parent: 30 - - uid: 4827 - components: - - type: Transform - pos: -7.5,-55.5 - parent: 30 - uid: 4829 components: - type: Transform @@ -18878,16 +18761,6 @@ entities: - type: Transform pos: -41.5,29.5 parent: 30 - - uid: 4893 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 30 - - uid: 4894 - components: - - type: Transform - pos: -8.5,-55.5 - parent: 30 - uid: 5188 components: - type: Transform @@ -20158,21 +20031,6 @@ entities: - type: Transform pos: 7.5,26.5 parent: 30 - - uid: 6274 - components: - - type: Transform - pos: -3.5,-55.5 - parent: 30 - - uid: 6466 - components: - - type: Transform - pos: -4.5,-55.5 - parent: 30 - - uid: 6467 - components: - - type: Transform - pos: -5.5,-55.5 - parent: 30 - uid: 6648 components: - type: Transform @@ -20448,6 +20306,11 @@ entities: - type: Transform pos: -29.5,-21.5 parent: 30 + - uid: 7107 + components: + - type: Transform + pos: -6.5,-29.5 + parent: 30 - uid: 7138 components: - type: Transform @@ -20458,11 +20321,6 @@ entities: - type: Transform pos: -29.5,-23.5 parent: 30 - - uid: 7225 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 30 - uid: 7418 components: - type: Transform @@ -21423,16 +21281,26 @@ entities: - type: Transform pos: -34.5,-3.5 parent: 30 - - uid: 8253 + - uid: 8266 components: - type: Transform - pos: -11.5,-33.5 + pos: -20.5,-41.5 parent: 30 - uid: 8289 components: - type: Transform pos: -25.5,-23.5 parent: 30 + - uid: 8293 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 30 + - uid: 8294 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 30 - uid: 8302 components: - type: Transform @@ -21473,100 +21341,110 @@ entities: - type: Transform pos: 27.5,-21.5 parent: 30 - - uid: 8819 + - uid: 8800 components: - type: Transform - pos: -9.5,-58.5 + pos: -25.5,-41.5 parent: 30 - - uid: 8820 + - uid: 8807 components: - type: Transform - pos: -10.5,-58.5 + pos: -17.5,-36.5 + parent: 30 + - uid: 8818 + components: + - type: Transform + pos: -18.5,-36.5 parent: 30 - uid: 8822 components: - type: Transform - pos: -11.5,-58.5 + pos: -16.5,-36.5 parent: 30 - - uid: 9422 + - uid: 8823 components: - type: Transform - pos: -24.5,-6.5 + pos: -17.5,-42.5 parent: 30 - - uid: 9611 + - uid: 8824 components: - type: Transform - pos: 1.5,-8.5 + pos: -22.5,-48.5 parent: 30 - - uid: 9635 + - uid: 8825 components: - type: Transform - pos: -41.5,-11.5 + pos: -23.5,-48.5 parent: 30 - - uid: 9636 + - uid: 8835 components: - type: Transform - pos: -41.5,-12.5 + pos: -17.5,-41.5 parent: 30 - - uid: 9653 + - uid: 8836 components: - type: Transform - pos: -6.5,-58.5 + pos: -23.5,-49.5 parent: 30 - - uid: 9654 + - uid: 9406 components: - type: Transform - pos: -4.5,-58.5 + pos: -20.5,-42.5 parent: 30 - - uid: 9655 + - uid: 9421 components: - type: Transform - pos: -5.5,-58.5 + pos: -22.5,-41.5 parent: 30 - - uid: 9656 + - uid: 9422 components: - type: Transform - pos: -7.5,-58.5 + pos: -24.5,-6.5 parent: 30 - - uid: 9665 + - uid: 9567 components: - type: Transform - pos: -41.5,-13.5 + pos: -21.5,-41.5 parent: 30 - - uid: 9666 + - uid: 9611 components: - type: Transform - pos: -34.5,-5.5 + pos: 1.5,-8.5 parent: 30 - - uid: 9667 + - uid: 9619 components: - type: Transform - pos: -35.5,-6.5 + pos: -12.5,-28.5 parent: 30 - - uid: 9668 + - uid: 9635 components: - type: Transform - pos: -36.5,-6.5 + pos: -41.5,-11.5 parent: 30 - - uid: 9677 + - uid: 9636 components: - type: Transform - pos: -2.5,-55.5 + pos: -41.5,-12.5 parent: 30 - - uid: 9678 + - uid: 9665 components: - type: Transform - pos: -6.5,-55.5 + pos: -41.5,-13.5 parent: 30 - - uid: 9679 + - uid: 9666 components: - type: Transform - pos: -11.5,-55.5 + pos: -34.5,-5.5 parent: 30 - - uid: 9690 + - uid: 9667 components: - type: Transform - pos: -10.5,-55.5 + pos: -35.5,-6.5 + parent: 30 + - uid: 9668 + components: + - type: Transform + pos: -36.5,-6.5 parent: 30 - uid: 9698 components: @@ -21583,26 +21461,6 @@ entities: - type: Transform pos: -37.5,-6.5 parent: 30 - - uid: 9821 - components: - - type: Transform - pos: -3.5,-58.5 - parent: 30 - - uid: 9822 - components: - - type: Transform - pos: -8.5,-58.5 - parent: 30 - - uid: 9823 - components: - - type: Transform - pos: -7.5,-56.5 - parent: 30 - - uid: 9824 - components: - - type: Transform - pos: -7.5,-57.5 - parent: 30 - uid: 9851 components: - type: Transform @@ -21633,6 +21491,21 @@ entities: - type: Transform pos: -18.5,-4.5 parent: 30 + - uid: 10001 + components: + - type: Transform + pos: -23.5,-42.5 + parent: 30 + - uid: 10008 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 30 + - uid: 10009 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 30 - uid: 10048 components: - type: Transform @@ -21693,395 +21566,150 @@ entities: - type: Transform pos: -59.5,-8.5 parent: 30 - - uid: 10503 - components: - - type: Transform - pos: -7.5,-52.5 - parent: 30 - - uid: 10536 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 30 - - uid: 10582 + - uid: 10163 components: - type: Transform - pos: -20.5,-38.5 + pos: -24.5,-48.5 parent: 30 - - uid: 10583 + - uid: 10176 components: - type: Transform - pos: -19.5,-38.5 + pos: -23.5,-47.5 parent: 30 - - uid: 10584 + - uid: 10179 components: - type: Transform - pos: -18.5,-38.5 + pos: -17.5,-43.5 parent: 30 - - uid: 10585 + - uid: 10180 components: - type: Transform pos: -17.5,-38.5 parent: 30 - - uid: 10586 - components: - - type: Transform - pos: -18.5,-37.5 - parent: 30 - - uid: 10587 - components: - - type: Transform - pos: -18.5,-36.5 - parent: 30 - - uid: 10588 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 30 - - uid: 10589 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 30 - - uid: 10590 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 30 - - uid: 10591 - components: - - type: Transform - pos: -16.5,-34.5 - parent: 30 - - uid: 10592 - components: - - type: Transform - pos: -18.5,-39.5 - parent: 30 - - uid: 10593 - components: - - type: Transform - pos: -18.5,-40.5 - parent: 30 - - uid: 10594 + - uid: 10181 components: - type: Transform pos: -18.5,-41.5 parent: 30 - - uid: 10595 - components: - - type: Transform - pos: -18.5,-42.5 - parent: 30 - - uid: 10596 - components: - - type: Transform - pos: -18.5,-43.5 - parent: 30 - - uid: 10597 - components: - - type: Transform - pos: -19.5,-42.5 - parent: 30 - - uid: 10598 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 30 - - uid: 10599 - components: - - type: Transform - pos: -21.5,-42.5 - parent: 30 - - uid: 10600 - components: - - type: Transform - pos: -22.5,-42.5 - parent: 30 - - uid: 10601 - components: - - type: Transform - pos: -23.5,-42.5 - parent: 30 - - uid: 10602 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 30 - - uid: 10603 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 30 - - uid: 10604 + - uid: 10182 components: - type: Transform - pos: -23.5,-45.5 + pos: -19.5,-41.5 parent: 30 - - uid: 10605 + - uid: 10192 components: - type: Transform pos: -23.5,-46.5 parent: 30 - - uid: 10606 - components: - - type: Transform - pos: -23.5,-47.5 - parent: 30 - - uid: 10607 + - uid: 10194 components: - type: Transform - pos: -23.5,-48.5 + pos: -23.5,-45.5 parent: 30 - - uid: 10608 + - uid: 10235 components: - type: Transform - pos: -23.5,-49.5 + pos: -3.5,-14.5 parent: 30 - - uid: 10609 + - uid: 10268 components: - type: Transform - pos: -23.5,-50.5 + pos: -16.5,-30.5 parent: 30 - - uid: 10610 + - uid: 10269 components: - type: Transform - pos: -23.5,-41.5 + pos: -18.5,-30.5 parent: 30 - - uid: 10611 + - uid: 10270 components: - type: Transform - pos: -23.5,-40.5 + pos: -20.5,-43.5 parent: 30 - - uid: 10612 + - uid: 10444 components: - type: Transform - pos: -24.5,-40.5 + pos: -17.5,-30.5 parent: 30 - - uid: 10613 + - uid: 10531 components: - type: Transform - pos: -25.5,-40.5 + pos: -15.5,-30.5 parent: 30 - - uid: 10614 + - uid: 10538 components: - type: Transform - pos: -22.5,-40.5 + pos: -20.5,-44.5 parent: 30 - - uid: 10615 + - uid: 10597 components: - type: Transform - pos: -21.5,-40.5 + pos: -19.5,-53.5 parent: 30 - - uid: 10616 + - uid: 10612 components: - type: Transform - pos: -17.5,-43.5 + pos: -14.5,-30.5 parent: 30 - uid: 10617 components: - type: Transform - pos: -17.5,-44.5 - parent: 30 - - uid: 10618 - components: - - type: Transform - pos: -17.5,-45.5 + pos: -17.5,-51.5 parent: 30 - uid: 10619 components: - type: Transform - pos: -17.5,-46.5 - parent: 30 - - uid: 10620 - components: - - type: Transform - pos: -17.5,-47.5 + pos: -20.5,-53.5 parent: 30 - uid: 10621 - components: - - type: Transform - pos: -17.5,-48.5 - parent: 30 - - uid: 10622 - components: - - type: Transform - pos: -17.5,-48.5 - parent: 30 - - uid: 10623 - components: - - type: Transform - pos: -17.5,-49.5 - parent: 30 - - uid: 10624 components: - type: Transform pos: -17.5,-50.5 parent: 30 - - uid: 10625 - components: - - type: Transform - pos: -17.5,-51.5 - parent: 30 - - uid: 10626 + - uid: 10624 components: - type: Transform - pos: -17.5,-52.5 + pos: -23.5,-55.5 parent: 30 - uid: 10627 components: - type: Transform - pos: -17.5,-53.5 - parent: 30 - - uid: 10628 - components: - - type: Transform - pos: -17.5,-54.5 + pos: -23.5,-56.5 parent: 30 - uid: 10629 components: - type: Transform - pos: -17.5,-40.5 - parent: 30 - - uid: 10630 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 30 - - uid: 10631 - components: - - type: Transform - pos: -15.5,-40.5 + pos: -19.5,-52.5 parent: 30 - uid: 10632 components: - type: Transform pos: -9.5,-7.5 parent: 30 - - uid: 10634 - components: - - type: Transform - pos: -12.5,-40.5 - parent: 30 - - uid: 10635 - components: - - type: Transform - pos: -11.5,-40.5 - parent: 30 - - uid: 10636 - components: - - type: Transform - pos: -10.5,-40.5 - parent: 30 - - uid: 10637 - components: - - type: Transform - pos: -9.5,-40.5 - parent: 30 - - uid: 10638 - components: - - type: Transform - pos: -8.5,-40.5 - parent: 30 - - uid: 10639 - components: - - type: Transform - pos: -7.5,-40.5 - parent: 30 - - uid: 10640 - components: - - type: Transform - pos: -7.5,-41.5 - parent: 30 - uid: 10644 components: - type: Transform - pos: -7.5,-44.5 + pos: -19.5,-51.5 parent: 30 - uid: 10645 components: - type: Transform - pos: -8.5,-44.5 - parent: 30 - - uid: 10646 - components: - - type: Transform - pos: -9.5,-44.5 + pos: -17.5,-49.5 parent: 30 - uid: 10647 components: - type: Transform - pos: -10.5,-44.5 - parent: 30 - - uid: 10648 - components: - - type: Transform - pos: -11.5,-44.5 - parent: 30 - - uid: 10649 - components: - - type: Transform - pos: -12.5,-44.5 - parent: 30 - - uid: 10650 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 30 - - uid: 10651 - components: - - type: Transform - pos: -13.5,-45.5 + pos: -11.5,-57.5 parent: 30 - uid: 10652 components: - type: Transform - pos: -13.5,-46.5 - parent: 30 - - uid: 10653 - components: - - type: Transform - pos: -13.5,-47.5 - parent: 30 - - uid: 10654 - components: - - type: Transform - pos: -13.5,-48.5 - parent: 30 - - uid: 10655 - components: - - type: Transform - pos: -13.5,-49.5 - parent: 30 - - uid: 10656 - components: - - type: Transform - pos: -13.5,-50.5 - parent: 30 - - uid: 10657 - components: - - type: Transform - pos: -13.5,-51.5 + pos: -13.5,-31.5 parent: 30 - uid: 10658 components: - type: Transform - pos: -13.5,-52.5 - parent: 30 - - uid: 10659 - components: - - type: Transform - pos: -13.5,-53.5 - parent: 30 - - uid: 10660 - components: - - type: Transform - pos: -13.5,-54.5 - parent: 30 - - uid: 10661 - components: - - type: Transform - pos: -13.5,-55.5 + pos: -11.5,-58.5 parent: 30 - uid: 10662 components: @@ -22123,85 +21751,45 @@ entities: - type: Transform pos: -63.5,23.5 parent: 30 - - uid: 10679 - components: - - type: Transform - pos: -1.5,-55.5 - parent: 30 - - uid: 10680 - components: - - type: Transform - pos: -1.5,-53.5 - parent: 30 - - uid: 10681 - components: - - type: Transform - pos: -1.5,-52.5 - parent: 30 - - uid: 10682 - components: - - type: Transform - pos: -1.5,-54.5 - parent: 30 - - uid: 10683 - components: - - type: Transform - pos: -1.5,-51.5 - parent: 30 - - uid: 10684 - components: - - type: Transform - pos: -1.5,-50.5 - parent: 30 - - uid: 10685 - components: - - type: Transform - pos: -1.5,-49.5 - parent: 30 - - uid: 10686 - components: - - type: Transform - pos: -1.5,-48.5 - parent: 30 - - uid: 10687 + - uid: 10672 components: - type: Transform - pos: -1.5,-47.5 + pos: -11.5,-29.5 parent: 30 - - uid: 10689 + - uid: 10673 components: - type: Transform - pos: -1.5,-45.5 + pos: -8.5,-29.5 parent: 30 - uid: 10690 components: - type: Transform - pos: -2.5,-44.5 + pos: -17.5,-55.5 parent: 30 - uid: 10691 components: - type: Transform - pos: -3.5,-44.5 + pos: -16.5,-55.5 parent: 30 - uid: 10692 components: - type: Transform - pos: -1.5,-44.5 + pos: -18.5,-55.5 parent: 30 - uid: 10693 components: - type: Transform - pos: -4.5,-44.5 + pos: -15.5,-55.5 parent: 30 - - uid: 10694 + - uid: 10695 components: - type: Transform - pos: -6.5,-44.5 + pos: -23.5,-57.5 parent: 30 - - uid: 10695 + - uid: 10696 components: - type: Transform - pos: -5.5,-44.5 + pos: -23.5,-58.5 parent: 30 - uid: 10717 components: @@ -22243,21 +21831,6 @@ entities: - type: Transform pos: 1.5,-37.5 parent: 30 - - uid: 10725 - components: - - type: Transform - pos: 1.5,-38.5 - parent: 30 - - uid: 10726 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 30 - - uid: 10727 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 30 - uid: 10728 components: - type: Transform @@ -22311,7 +21884,7 @@ entities: - uid: 10740 components: - type: Transform - pos: 2.5,-20.5 + pos: -10.5,-37.5 parent: 30 - uid: 10744 components: @@ -22348,100 +21921,10 @@ entities: - type: Transform pos: -2.5,-25.5 parent: 30 - - uid: 10751 - components: - - type: Transform - pos: -3.5,-29.5 - parent: 30 - - uid: 10752 - components: - - type: Transform - pos: -4.5,-29.5 - parent: 30 - - uid: 10753 - components: - - type: Transform - pos: -5.5,-29.5 - parent: 30 - - uid: 10754 - components: - - type: Transform - pos: -6.5,-29.5 - parent: 30 - uid: 10755 components: - type: Transform - pos: -7.5,-29.5 - parent: 30 - - uid: 10756 - components: - - type: Transform - pos: -8.5,-29.5 - parent: 30 - - uid: 10757 - components: - - type: Transform - pos: -9.5,-29.5 - parent: 30 - - uid: 10758 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 30 - - uid: 10759 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 30 - - uid: 10760 - components: - - type: Transform - pos: -12.5,-29.5 - parent: 30 - - uid: 10761 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 30 - - uid: 10762 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 30 - - uid: 10763 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 30 - - uid: 10764 - components: - - type: Transform - pos: -15.5,-29.5 - parent: 30 - - uid: 10765 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 30 - - uid: 10766 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 30 - - uid: 10767 - components: - - type: Transform - pos: -12.5,-28.5 - parent: 30 - - uid: 10768 - components: - - type: Transform - pos: -12.5,-27.5 - parent: 30 - - uid: 10769 - components: - - type: Transform - pos: -12.5,-26.5 + pos: -14.5,-55.5 parent: 30 - uid: 10770 components: @@ -22518,80 +22001,15 @@ entities: - type: Transform pos: -21.5,-25.5 parent: 30 - - uid: 10785 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 30 - - uid: 10786 - components: - - type: Transform - pos: -12.5,-31.5 - parent: 30 - - uid: 10787 - components: - - type: Transform - pos: -12.5,-32.5 - parent: 30 - - uid: 10788 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 30 - - uid: 10789 - components: - - type: Transform - pos: -12.5,-34.5 - parent: 30 - uid: 10792 components: - type: Transform pos: -10.5,-7.5 parent: 30 - - uid: 10793 - components: - - type: Transform - pos: -9.5,-33.5 - parent: 30 - - uid: 10794 - components: - - type: Transform - pos: -8.5,-33.5 - parent: 30 - - uid: 10795 - components: - - type: Transform - pos: -7.5,-33.5 - parent: 30 - uid: 10796 components: - type: Transform - pos: -6.5,-33.5 - parent: 30 - - uid: 10797 - components: - - type: Transform - pos: -5.5,-33.5 - parent: 30 - - uid: 10798 - components: - - type: Transform - pos: -7.5,-30.5 - parent: 30 - - uid: 10799 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 30 - - uid: 10800 - components: - - type: Transform - pos: -7.5,-28.5 - parent: 30 - - uid: 10801 - components: - - type: Transform - pos: -7.5,-27.5 + pos: -13.5,-55.5 parent: 30 - uid: 10802 components: @@ -23378,210 +22796,120 @@ entities: - type: Transform pos: 24.5,-35.5 parent: 30 - - uid: 11039 - components: - - type: Transform - pos: -9.5,-34.5 - parent: 30 - - uid: 11040 - components: - - type: Transform - pos: -9.5,-35.5 - parent: 30 - - uid: 11041 - components: - - type: Transform - pos: -9.5,-36.5 - parent: 30 - - uid: 11042 - components: - - type: Transform - pos: -5.5,-34.5 - parent: 30 - - uid: 11043 - components: - - type: Transform - pos: -5.5,-35.5 - parent: 30 - - uid: 11044 - components: - - type: Transform - pos: -5.5,-36.5 - parent: 30 - - uid: 11045 - components: - - type: Transform - pos: -6.5,-36.5 - parent: 30 - - uid: 11046 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 30 - - uid: 11047 - components: - - type: Transform - pos: -5.5,-40.5 - parent: 30 - - uid: 11048 - components: - - type: Transform - pos: -6.5,-40.5 - parent: 30 - - uid: 11049 - components: - - type: Transform - pos: -4.5,-40.5 - parent: 30 - - uid: 11050 - components: - - type: Transform - pos: -3.5,-40.5 - parent: 30 - - uid: 11051 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 30 - - uid: 11052 - components: - - type: Transform - pos: -1.5,-40.5 - parent: 30 - - uid: 11053 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 30 - - uid: 11054 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 30 - - uid: 11055 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 30 - - uid: 11056 - components: - - type: Transform - pos: 2.5,-40.5 - parent: 30 - - uid: 11057 + - uid: 11098 components: - type: Transform - pos: 1.5,-41.5 + pos: -13.5,-30.5 parent: 30 - - uid: 11058 + - uid: 11099 components: - type: Transform - pos: 1.5,-42.5 + pos: -17.5,-37.5 parent: 30 - - uid: 11059 + - uid: 11101 components: - type: Transform - pos: 1.5,-42.5 + pos: -12.5,-55.5 parent: 30 - - uid: 11060 + - uid: 11128 components: - type: Transform - pos: 1.5,-43.5 + pos: -12.5,-34.5 parent: 30 - - uid: 11061 + - uid: 11231 components: - type: Transform - pos: 1.5,-44.5 + pos: 41.5,17.5 parent: 30 - - uid: 11062 + - uid: 11239 components: - type: Transform - pos: 2.5,-43.5 + pos: 17.5,-37.5 parent: 30 - - uid: 11063 + - uid: 11240 components: - type: Transform - pos: 3.5,-43.5 + pos: 18.5,-37.5 parent: 30 - - uid: 11064 + - uid: 11241 components: - type: Transform - pos: -2.5,-39.5 + pos: 19.5,-37.5 parent: 30 - - uid: 11065 + - uid: 11242 components: - type: Transform - pos: -2.5,-38.5 + pos: 20.5,-37.5 parent: 30 - - uid: 11066 + - uid: 11243 components: - type: Transform - pos: -9.5,-39.5 + pos: 21.5,-37.5 parent: 30 - - uid: 11067 + - uid: 11244 components: - type: Transform - pos: -12.5,-39.5 + pos: 22.5,-37.5 parent: 30 - - uid: 11068 + - uid: 11300 components: - type: Transform - pos: -12.5,-38.5 + pos: -18.5,-51.5 parent: 30 - - uid: 11069 + - uid: 11301 components: - type: Transform - pos: -12.5,-37.5 + pos: -20.5,-55.5 parent: 30 - - uid: 11070 + - uid: 11305 components: - type: Transform - pos: -15.5,-41.5 + pos: -17.5,-48.5 parent: 30 - - uid: 11071 + - uid: 11306 components: - type: Transform - pos: -15.5,-42.5 + pos: -17.5,-40.5 parent: 30 - - uid: 11231 + - uid: 11311 components: - type: Transform - pos: 41.5,17.5 + pos: -6.5,-30.5 parent: 30 - - uid: 11239 + - uid: 11312 components: - type: Transform - pos: 17.5,-37.5 + pos: -19.5,-54.5 parent: 30 - - uid: 11240 + - uid: 11332 components: - type: Transform - pos: 18.5,-37.5 + pos: 1.5,-9.5 parent: 30 - - uid: 11241 + - uid: 11335 components: - type: Transform - pos: 19.5,-37.5 + pos: -21.5,-55.5 parent: 30 - - uid: 11242 + - uid: 11339 components: - type: Transform - pos: 20.5,-37.5 + pos: -17.5,-47.5 parent: 30 - - uid: 11243 + - uid: 11341 components: - type: Transform - pos: 21.5,-37.5 + pos: -19.5,-55.5 parent: 30 - - uid: 11244 + - uid: 11342 components: - type: Transform - pos: 22.5,-37.5 + pos: -22.5,-55.5 parent: 30 - - uid: 11332 + - uid: 11343 components: - type: Transform - pos: 1.5,-9.5 + pos: -17.5,-39.5 parent: 30 - uid: 11350 components: @@ -24688,11 +24016,6 @@ entities: - type: Transform pos: -41.5,25.5 parent: 30 - - uid: 12297 - components: - - type: Transform - pos: -7.5,-54.5 - parent: 30 - uid: 12307 components: - type: Transform @@ -25288,11 +24611,6 @@ entities: - type: Transform pos: 24.5,34.5 parent: 30 - - uid: 12442 - components: - - type: Transform - pos: -0.5,-47.5 - parent: 30 - uid: 12444 components: - type: Transform @@ -25303,10 +24621,15 @@ entities: - type: Transform pos: 31.5,31.5 parent: 30 - - uid: 12663 + - uid: 12668 components: - type: Transform - pos: -7.5,-53.5 + pos: -68.5,-60.5 + parent: 30 + - uid: 12680 + components: + - type: Transform + pos: -69.5,-60.5 parent: 30 - uid: 12832 components: @@ -25318,16 +24641,6 @@ entities: - type: Transform pos: 25.5,20.5 parent: 30 - - uid: 12961 - components: - - type: Transform - pos: 18.5,13.5 - parent: 30 - - uid: 12973 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - uid: 13169 components: - type: Transform @@ -25663,11 +24976,6 @@ entities: - type: Transform pos: 14.5,11.5 parent: 30 - - uid: 13241 - components: - - type: Transform - pos: 13.5,11.5 - parent: 30 - uid: 13242 components: - type: Transform @@ -27713,6 +27021,11 @@ entities: - type: Transform pos: 23.5,-0.5 parent: 30 + - uid: 17725 + components: + - type: Transform + pos: 13.5,11.5 + parent: 30 - uid: 17811 components: - type: Transform @@ -27788,11 +27101,41 @@ entities: - type: Transform pos: -45.5,-25.5 parent: 30 + - uid: 18085 + components: + - type: Transform + pos: 16.5,13.5 + parent: 30 - uid: 18126 components: - type: Transform pos: -79.5,-57.5 parent: 30 + - uid: 18814 + components: + - type: Transform + pos: 16.5,12.5 + parent: 30 + - uid: 18820 + components: + - type: Transform + pos: -23.5,7.5 + parent: 30 + - uid: 18827 + components: + - type: Transform + pos: -24.5,7.5 + parent: 30 + - uid: 18831 + components: + - type: Transform + pos: -25.5,7.5 + parent: 30 + - uid: 18833 + components: + - type: Transform + pos: -27.5,7.5 + parent: 30 - uid: 18970 components: - type: Transform @@ -28743,90 +28086,20 @@ entities: - type: Transform pos: -58.5,-60.5 parent: 30 - - uid: 19178 - components: - - type: Transform - pos: -58.5,-62.5 - parent: 30 - - uid: 19179 - components: - - type: Transform - pos: -58.5,-63.5 - parent: 30 - - uid: 19180 - components: - - type: Transform - pos: -58.5,-61.5 - parent: 30 - - uid: 19181 - components: - - type: Transform - pos: -58.5,-64.5 - parent: 30 - - uid: 19182 - components: - - type: Transform - pos: -58.5,-65.5 - parent: 30 - - uid: 19183 - components: - - type: Transform - pos: -58.5,-66.5 - parent: 30 - - uid: 19184 - components: - - type: Transform - pos: -58.5,-67.5 - parent: 30 - - uid: 19185 - components: - - type: Transform - pos: -58.5,-68.5 - parent: 30 - - uid: 19186 - components: - - type: Transform - pos: -57.5,-66.5 - parent: 30 - uid: 19187 components: - type: Transform - pos: -56.5,-66.5 + pos: -13.5,-34.5 parent: 30 - uid: 19188 components: - type: Transform - pos: -55.5,-66.5 + pos: -13.5,-32.5 parent: 30 - uid: 19189 components: - type: Transform - pos: -59.5,-63.5 - parent: 30 - - uid: 19190 - components: - - type: Transform - pos: -60.5,-63.5 - parent: 30 - - uid: 19191 - components: - - type: Transform - pos: -57.5,-64.5 - parent: 30 - - uid: 19192 - components: - - type: Transform - pos: -56.5,-64.5 - parent: 30 - - uid: 19193 - components: - - type: Transform - pos: -55.5,-64.5 - parent: 30 - - uid: 19194 - components: - - type: Transform - pos: -54.5,-64.5 + pos: -13.5,-33.5 parent: 30 - uid: 19195 components: @@ -29008,70 +28281,10 @@ entities: - type: Transform pos: -55.5,-59.5 parent: 30 - - uid: 19231 - components: - - type: Transform - pos: -54.5,-59.5 - parent: 30 - - uid: 19232 - components: - - type: Transform - pos: -64.5,-60.5 - parent: 30 - - uid: 19233 - components: - - type: Transform - pos: -64.5,-61.5 - parent: 30 - - uid: 19234 - components: - - type: Transform - pos: -64.5,-62.5 - parent: 30 - - uid: 19235 - components: - - type: Transform - pos: -64.5,-63.5 - parent: 30 - - uid: 19236 - components: - - type: Transform - pos: -64.5,-64.5 - parent: 30 - - uid: 19237 - components: - - type: Transform - pos: -64.5,-65.5 - parent: 30 - - uid: 19238 - components: - - type: Transform - pos: -63.5,-64.5 - parent: 30 - - uid: 19239 - components: - - type: Transform - pos: -62.5,-64.5 - parent: 30 - uid: 19240 components: - type: Transform - pos: -65.5,-63.5 - parent: 30 - - uid: 19241 - components: - - type: Transform - pos: -67.5,-63.5 - parent: 30 - - uid: 19242 - components: - - type: Transform - pos: -66.5,-63.5 - parent: 30 - - uid: 19243 - components: - - type: Transform - pos: -68.5,-63.5 + pos: -11.5,-55.5 parent: 30 - uid: 19244 components: @@ -29718,16 +28931,6 @@ entities: - type: Transform pos: -70.5,-60.5 parent: 30 - - uid: 19373 - components: - - type: Transform - pos: -70.5,-59.5 - parent: 30 - - uid: 19374 - components: - - type: Transform - pos: -70.5,-58.5 - parent: 30 - uid: 19375 components: - type: Transform @@ -29813,16 +29016,6 @@ entities: - type: Transform pos: -50.5,43.5 parent: 30 - - uid: 19597 - components: - - type: Transform - pos: -25.5,-41.5 - parent: 30 - - uid: 19598 - components: - - type: Transform - pos: -26.5,-41.5 - parent: 30 - uid: 19599 components: - type: Transform @@ -29908,50 +29101,110 @@ entities: - type: Transform pos: -29.5,-34.5 parent: 30 - - uid: 19709 + - uid: 19796 components: - type: Transform - pos: -19.5,-34.5 + pos: -12.5,-29.5 parent: 30 - - uid: 19710 + - uid: 19797 components: - type: Transform - pos: -18.5,-34.5 + pos: -38.5,62.5 parent: 30 - - uid: 19781 + - uid: 19828 components: - type: Transform - pos: -1.5,-46.5 + pos: -7.5,-29.5 parent: 30 - - uid: 19794 + - uid: 19829 components: - type: Transform - pos: -1.5,-45.5 + pos: -10.5,-29.5 parent: 30 - - uid: 19795 + - uid: 19832 components: - type: Transform - pos: -13.5,-38.5 + pos: -10.5,-38.5 parent: 30 - - uid: 19796 + - uid: 19833 components: - type: Transform - pos: -14.5,-38.5 + pos: -10.5,-39.5 parent: 30 - - uid: 19797 + - uid: 19834 components: - type: Transform - pos: -38.5,62.5 + pos: -12.5,-39.5 parent: 30 - - uid: 19801 + - uid: 19835 components: - type: Transform - pos: -13.5,-32.5 + pos: -12.5,-40.5 parent: 30 - - uid: 19802 + - uid: 19837 components: - type: Transform - pos: -14.5,-32.5 + pos: -12.5,-41.5 + parent: 30 + - uid: 19838 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 30 + - uid: 19839 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 30 + - uid: 19842 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 30 + - uid: 19845 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 30 + - uid: 19846 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 30 + - uid: 19847 + components: + - type: Transform + pos: -12.5,-47.5 + parent: 30 + - uid: 19848 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 30 + - uid: 19849 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 30 + - uid: 19850 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 30 + - uid: 19851 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 30 + - uid: 19852 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 30 + - uid: 19853 + components: + - type: Transform + pos: -11.5,-39.5 parent: 30 - uid: 20163 components: @@ -30448,50 +29701,320 @@ entities: - type: Transform pos: 0.5,66.5 parent: 30 + - uid: 20320 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 30 + - uid: 20321 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 30 + - uid: 20322 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 30 + - uid: 20323 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 30 + - uid: 20324 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 30 + - uid: 20327 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 30 + - uid: 20328 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 30 + - uid: 20334 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 30 + - uid: 20343 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 30 + - uid: 20344 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 30 + - uid: 20346 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 30 + - uid: 20353 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 30 + - uid: 20354 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 30 + - uid: 20355 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 30 + - uid: 20356 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 30 + - uid: 20357 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 30 + - uid: 20358 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 30 + - uid: 20359 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 30 + - uid: 20361 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 30 + - uid: 20362 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 30 - uid: 20363 components: - type: Transform - pos: -0.5,-49.5 + pos: 0.5,-40.5 parent: 30 - uid: 20364 components: - type: Transform - pos: 0.5,-49.5 + pos: 1.5,-40.5 parent: 30 - uid: 20365 components: - type: Transform - pos: 1.5,-49.5 + pos: 1.5,-39.5 parent: 30 - uid: 20366 components: - type: Transform - pos: 1.5,-51.5 + pos: 1.5,-38.5 parent: 30 - - uid: 20367 + - uid: 20368 components: - type: Transform - pos: 1.5,-50.5 + pos: 1.5,-42.5 parent: 30 - - uid: 20368 + - uid: 20396 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 30 + - uid: 20397 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 30 + - uid: 20399 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 30 + - uid: 20409 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 30 + - uid: 20410 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 30 + - uid: 20411 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 30 + - uid: 20412 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 30 + - uid: 20413 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 30 + - uid: 20414 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 30 + - uid: 20415 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 30 + - uid: 20416 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 30 + - uid: 20417 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 30 + - uid: 20418 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 30 + - uid: 20419 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 30 + - uid: 20420 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 30 + - uid: 20421 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 30 + - uid: 20422 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 30 + - uid: 20423 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 30 + - uid: 20424 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 30 + - uid: 20425 + components: + - type: Transform + pos: -1.5,-48.5 + parent: 30 + - uid: 20426 + components: + - type: Transform + pos: -2.5,-48.5 + parent: 30 + - uid: 20427 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 30 + - uid: 20428 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 30 + - uid: 20429 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 30 + - uid: 20430 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 30 + - uid: 20431 + components: + - type: Transform + pos: -3.5,-52.5 + parent: 30 + - uid: 20440 + components: + - type: Transform + pos: -2.5,-52.5 + parent: 30 + - uid: 20450 + components: + - type: Transform + pos: -1.5,-52.5 + parent: 30 + - uid: 20462 + components: + - type: Transform + pos: -0.5,-52.5 + parent: 30 + - uid: 20463 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 30 + - uid: 20464 components: - type: Transform pos: 1.5,-52.5 parent: 30 - - uid: 20369 + - uid: 20465 components: - type: Transform - pos: 1.5,-53.5 + pos: 2.5,-52.5 parent: 30 - - uid: 20370 + - uid: 20466 components: - type: Transform - pos: 1.5,-54.5 + pos: 3.5,-52.5 parent: 30 - - uid: 20371 + - uid: 20467 components: - type: Transform - pos: 0.5,-54.5 + pos: 3.5,-51.5 + parent: 30 + - uid: 20468 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 30 + - uid: 20469 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 30 + - uid: 20470 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 30 + - uid: 20474 + components: + - type: Transform + pos: 2.5,-48.5 parent: 30 - uid: 20504 components: @@ -30558,6 +30081,56 @@ entities: - type: Transform pos: -33.5,-35.5 parent: 30 + - uid: 20518 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 30 + - uid: 20527 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 30 + - uid: 20528 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 30 + - uid: 20538 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 30 + - uid: 20539 + components: + - type: Transform + pos: -0.5,-53.5 + parent: 30 + - uid: 20544 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 30 + - uid: 20545 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 30 + - uid: 20562 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 30 + - uid: 20569 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 30 + - uid: 20570 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 30 - uid: 20582 components: - type: Transform @@ -30578,6 +30151,41 @@ entities: - type: Transform pos: -59.5,4.5 parent: 30 + - uid: 20590 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 30 + - uid: 20591 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 30 + - uid: 20613 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 30 + - uid: 20617 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 30 + - uid: 20618 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 30 + - uid: 20619 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 30 + - uid: 20620 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 30 - uid: 21007 components: - type: Transform @@ -31088,276 +30696,6 @@ entities: - type: Transform pos: 1.5,10.5 parent: 30 - - uid: 22706 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 30 - - uid: 22707 - components: - - type: Transform - pos: -34.5,-57.5 - parent: 30 - - uid: 22708 - components: - - type: Transform - pos: -34.5,-58.5 - parent: 30 - - uid: 22709 - components: - - type: Transform - pos: -34.5,-59.5 - parent: 30 - - uid: 22710 - components: - - type: Transform - pos: -34.5,-60.5 - parent: 30 - - uid: 22711 - components: - - type: Transform - pos: -34.5,-61.5 - parent: 30 - - uid: 22712 - components: - - type: Transform - pos: -34.5,-62.5 - parent: 30 - - uid: 22713 - components: - - type: Transform - pos: -34.5,-63.5 - parent: 30 - - uid: 22714 - components: - - type: Transform - pos: -35.5,-60.5 - parent: 30 - - uid: 22715 - components: - - type: Transform - pos: -36.5,-60.5 - parent: 30 - - uid: 22716 - components: - - type: Transform - pos: -36.5,-61.5 - parent: 30 - - uid: 22717 - components: - - type: Transform - pos: -37.5,-61.5 - parent: 30 - - uid: 22718 - components: - - type: Transform - pos: -38.5,-61.5 - parent: 30 - - uid: 22719 - components: - - type: Transform - pos: -39.5,-61.5 - parent: 30 - - uid: 22720 - components: - - type: Transform - pos: -39.5,-60.5 - parent: 30 - - uid: 22721 - components: - - type: Transform - pos: -40.5,-60.5 - parent: 30 - - uid: 22722 - components: - - type: Transform - pos: -41.5,-60.5 - parent: 30 - - uid: 22723 - components: - - type: Transform - pos: -39.5,-59.5 - parent: 30 - - uid: 22724 - components: - - type: Transform - pos: -38.5,-59.5 - parent: 30 - - uid: 22725 - components: - - type: Transform - pos: -37.5,-59.5 - parent: 30 - - uid: 22726 - components: - - type: Transform - pos: -36.5,-59.5 - parent: 30 - - uid: 22727 - components: - - type: Transform - pos: -41.5,-59.5 - parent: 30 - - uid: 22728 - components: - - type: Transform - pos: -41.5,-58.5 - parent: 30 - - uid: 22729 - components: - - type: Transform - pos: -41.5,-61.5 - parent: 30 - - uid: 22730 - components: - - type: Transform - pos: -41.5,-62.5 - parent: 30 - - uid: 22731 - components: - - type: Transform - pos: -36.5,-58.5 - parent: 30 - - uid: 22732 - components: - - type: Transform - pos: -36.5,-62.5 - parent: 30 - - uid: 22733 - components: - - type: Transform - pos: -39.5,-62.5 - parent: 30 - - uid: 22734 - components: - - type: Transform - pos: -39.5,-58.5 - parent: 30 - - uid: 22735 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 30 - - uid: 22736 - components: - - type: Transform - pos: -29.5,-60.5 - parent: 30 - - uid: 22737 - components: - - type: Transform - pos: -29.5,-61.5 - parent: 30 - - uid: 22738 - components: - - type: Transform - pos: -29.5,-62.5 - parent: 30 - - uid: 22739 - components: - - type: Transform - pos: -29.5,-63.5 - parent: 30 - - uid: 22740 - components: - - type: Transform - pos: -30.5,-63.5 - parent: 30 - - uid: 22741 - components: - - type: Transform - pos: -29.5,-59.5 - parent: 30 - - uid: 22742 - components: - - type: Transform - pos: -29.5,-58.5 - parent: 30 - - uid: 22743 - components: - - type: Transform - pos: -29.5,-57.5 - parent: 30 - - uid: 22744 - components: - - type: Transform - pos: -30.5,-57.5 - parent: 30 - - uid: 22745 - components: - - type: Transform - pos: -30.5,-60.5 - parent: 30 - - uid: 22746 - components: - - type: Transform - pos: -31.5,-60.5 - parent: 30 - - uid: 22747 - components: - - type: Transform - pos: -28.5,-58.5 - parent: 30 - - uid: 22748 - components: - - type: Transform - pos: -26.5,-58.5 - parent: 30 - - uid: 22749 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 30 - - uid: 22750 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 30 - - uid: 22751 - components: - - type: Transform - pos: -27.5,-58.5 - parent: 30 - - uid: 22752 - components: - - type: Transform - pos: -26.5,-59.5 - parent: 30 - - uid: 22753 - components: - - type: Transform - pos: -26.5,-60.5 - parent: 30 - - uid: 22754 - components: - - type: Transform - pos: -26.5,-62.5 - parent: 30 - - uid: 22755 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 30 - - uid: 22756 - components: - - type: Transform - pos: -24.5,-58.5 - parent: 30 - - uid: 22757 - components: - - type: Transform - pos: -23.5,-58.5 - parent: 30 - - uid: 22758 - components: - - type: Transform - pos: -22.5,-58.5 - parent: 30 - - uid: 22759 - components: - - type: Transform - pos: -21.5,-58.5 - parent: 30 - proto: CableApcStack entities: - uid: 1637 @@ -31370,11 +30708,6 @@ entities: - type: Transform pos: -36.516556,-12.325844 parent: 30 - - uid: 9605 - components: - - type: Transform - pos: -15.653,-34.268528 - parent: 30 - uid: 10259 components: - type: Transform @@ -31390,15 +30723,15 @@ entities: - type: Transform pos: -42.554832,27.618874 parent: 30 - - uid: 11310 + - uid: 11024 components: - type: Transform - pos: -11.510529,-35.15977 + pos: -5.583432,-34.527874 parent: 30 - uid: 18792 components: - type: Transform - pos: -66.4926,-62.50162 + pos: -55.006935,-63.112835 parent: 30 - uid: 20302 components: @@ -31412,15 +30745,10 @@ entities: parent: 30 - proto: CableHV entities: - - uid: 829 - components: - - type: Transform - pos: -20.5,-56.5 - parent: 30 - - uid: 833 + - uid: 867 components: - type: Transform - pos: -20.5,-57.5 + pos: -17.5,-47.5 parent: 30 - uid: 933 components: @@ -31442,6 +30770,16 @@ entities: - type: Transform pos: -46.5,8.5 parent: 30 + - uid: 2403 + components: + - type: Transform + pos: -55.5,-60.5 + parent: 30 + - uid: 3152 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 30 - uid: 3187 components: - type: Transform @@ -31452,6 +30790,11 @@ entities: - type: Transform pos: -47.5,9.5 parent: 30 + - uid: 3221 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 30 - uid: 3532 components: - type: Transform @@ -31632,10 +30975,15 @@ entities: - type: Transform pos: -44.5,18.5 parent: 30 - - uid: 4444 + - uid: 4406 components: - type: Transform - pos: -20.5,-58.5 + pos: -3.5,-44.5 + parent: 30 + - uid: 4412 + components: + - type: Transform + pos: -20.5,-41.5 parent: 30 - uid: 4456 components: @@ -32387,11 +31735,6 @@ entities: - type: Transform pos: -22.5,43.5 parent: 30 - - uid: 5240 - components: - - type: Transform - pos: -24.5,-58.5 - parent: 30 - uid: 5507 components: - type: Transform @@ -32637,21 +31980,6 @@ entities: - type: Transform pos: 12.5,42.5 parent: 30 - - uid: 5635 - components: - - type: Transform - pos: -23.5,-58.5 - parent: 30 - - uid: 5722 - components: - - type: Transform - pos: -22.5,-58.5 - parent: 30 - - uid: 6095 - components: - - type: Transform - pos: -21.5,-58.5 - parent: 30 - uid: 6387 components: - type: Transform @@ -32752,10 +32080,70 @@ entities: - type: Transform pos: 19.5,31.5 parent: 30 + - uid: 6467 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 30 + - uid: 7096 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 30 + - uid: 7097 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 30 + - uid: 7101 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 30 + - uid: 7104 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 30 + - uid: 7105 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 30 - uid: 7106 components: - type: Transform - pos: -7.5,-45.5 + pos: -1.5,-39.5 + parent: 30 + - uid: 7108 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 30 + - uid: 7109 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 30 + - uid: 7207 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 30 + - uid: 7208 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 30 + - uid: 7219 + components: + - type: Transform + pos: -10.5,-51.5 + parent: 30 + - uid: 7220 + components: + - type: Transform + pos: -16.5,-35.5 parent: 30 - uid: 7615 components: @@ -33272,260 +32660,165 @@ entities: - type: Transform pos: -0.5,-11.5 parent: 30 - - uid: 7965 + - uid: 8232 components: - type: Transform - pos: -7.5,-46.5 + pos: -16.5,-28.5 parent: 30 - - uid: 8225 + - uid: 8233 components: - type: Transform - pos: -7.5,-47.5 + pos: -15.5,-28.5 parent: 30 - - uid: 8230 + - uid: 8235 components: - type: Transform - pos: -7.5,-48.5 + pos: -15.5,-30.5 parent: 30 - - uid: 8231 + - uid: 8236 components: - type: Transform - pos: -7.5,-49.5 + pos: -15.5,-29.5 parent: 30 - - uid: 8232 + - uid: 8253 components: - type: Transform - pos: -7.5,-50.5 + pos: -13.5,-30.5 parent: 30 - - uid: 8402 + - uid: 8256 components: - type: Transform - pos: 3.5,-13.5 + pos: -14.5,-30.5 parent: 30 - - uid: 9293 + - uid: 8337 components: - type: Transform - pos: 3.5,-37.5 + pos: -12.5,-40.5 parent: 30 - - uid: 9484 + - uid: 8402 components: - type: Transform - pos: -8.5,-33.5 + pos: 3.5,-13.5 parent: 30 - - uid: 9485 + - uid: 8606 components: - type: Transform - pos: -7.5,-33.5 + pos: -7.5,-43.5 parent: 30 - - uid: 9486 + - uid: 8798 components: - type: Transform - pos: -6.5,-33.5 + pos: -13.5,-33.5 parent: 30 - - uid: 9490 + - uid: 8801 components: - type: Transform - pos: -8.5,-35.5 + pos: -10.5,-39.5 parent: 30 - - uid: 9491 + - uid: 9400 components: - type: Transform - pos: -7.5,-35.5 + pos: -20.5,-55.5 parent: 30 - - uid: 9492 + - uid: 9404 components: - type: Transform - pos: -6.5,-35.5 + pos: -19.5,-52.5 parent: 30 - - uid: 9493 + - uid: 9420 components: - type: Transform - pos: -8.5,-34.5 + pos: -15.5,-40.5 parent: 30 - - uid: 9494 + - uid: 9427 components: - type: Transform - pos: -6.5,-34.5 + pos: -23.5,-58.5 parent: 30 - - uid: 9495 + - uid: 9429 components: - type: Transform - pos: -7.5,-34.5 + pos: -23.5,-56.5 parent: 30 - - uid: 9499 + - uid: 9430 components: - type: Transform - pos: -9.5,-33.5 + pos: -6.5,-44.5 parent: 30 - - uid: 9500 + - uid: 9437 components: - type: Transform - pos: -7.5,-36.5 + pos: -23.5,-55.5 parent: 30 - - uid: 9501 + - uid: 9438 components: - type: Transform - pos: -7.5,-37.5 + pos: -22.5,-55.5 parent: 30 - - uid: 9502 + - uid: 9462 components: - type: Transform - pos: -7.5,-38.5 + pos: -5.5,-42.5 parent: 30 - - uid: 9503 + - uid: 9465 components: - type: Transform - pos: -6.5,-38.5 + pos: -8.5,-44.5 parent: 30 - - uid: 9504 + - uid: 9469 components: - type: Transform - pos: -5.5,-38.5 + pos: -9.5,-44.5 parent: 30 - - uid: 9505 + - uid: 9474 components: - type: Transform - pos: -4.5,-38.5 + pos: -12.5,-46.5 parent: 30 - - uid: 9506 + - uid: 9475 components: - type: Transform - pos: -3.5,-38.5 + pos: -11.5,-44.5 parent: 30 - - uid: 9507 + - uid: 9476 components: - type: Transform - pos: -10.5,-33.5 + pos: -12.5,-48.5 parent: 30 - - uid: 9508 + - uid: 9479 components: - type: Transform - pos: -11.5,-33.5 + pos: -16.5,-43.5 parent: 30 - - uid: 9509 + - uid: 9480 components: - type: Transform - pos: -12.5,-33.5 + pos: -13.5,-43.5 parent: 30 - - uid: 9510 + - uid: 9493 components: - type: Transform - pos: -12.5,-34.5 + pos: -17.5,-43.5 parent: 30 - - uid: 9511 + - uid: 9500 components: - type: Transform - pos: -12.5,-35.5 + pos: -15.5,-36.5 parent: 30 - uid: 9512 components: - type: Transform pos: -12.5,-36.5 parent: 30 - - uid: 9513 - components: - - type: Transform - pos: -12.5,-37.5 - parent: 30 - - uid: 9514 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 30 - - uid: 9515 - components: - - type: Transform - pos: -12.5,-40.5 - parent: 30 - - uid: 9516 - components: - - type: Transform - pos: -12.5,-39.5 - parent: 30 - - uid: 9517 - components: - - type: Transform - pos: -12.5,-32.5 - parent: 30 - - uid: 9518 - components: - - type: Transform - pos: -12.5,-31.5 - parent: 30 - - uid: 9519 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 30 - - uid: 9520 - components: - - type: Transform - pos: -12.5,-29.5 - parent: 30 - uid: 9521 components: - type: Transform - pos: -11.5,-29.5 + pos: -11.5,-51.5 parent: 30 - uid: 9522 components: - type: Transform - pos: -9.5,-29.5 - parent: 30 - - uid: 9523 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 30 - - uid: 9524 - components: - - type: Transform - pos: -8.5,-29.5 - parent: 30 - - uid: 9525 - components: - - type: Transform - pos: -7.5,-29.5 - parent: 30 - - uid: 9526 - components: - - type: Transform - pos: -6.5,-29.5 - parent: 30 - - uid: 9527 - components: - - type: Transform - pos: -5.5,-29.5 - parent: 30 - - uid: 9528 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 30 - - uid: 9529 - components: - - type: Transform - pos: -2.5,-38.5 - parent: 30 - - uid: 9530 - components: - - type: Transform - pos: -1.5,-38.5 - parent: 30 - - uid: 9531 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 30 - - uid: 9532 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 30 - - uid: 9533 - components: - - type: Transform - pos: 1.5,-38.5 + pos: -16.5,-34.5 parent: 30 - uid: 9534 components: @@ -33672,15 +32965,30 @@ entities: - type: Transform pos: -2.5,-15.5 parent: 30 - - uid: 9571 + - uid: 9568 components: - type: Transform - pos: 2.5,-38.5 + pos: -14.5,-40.5 parent: 30 - - uid: 9572 + - uid: 9570 components: - type: Transform - pos: 3.5,-38.5 + pos: -7.5,-42.5 + parent: 30 + - uid: 9576 + components: + - type: Transform + pos: -25.5,-41.5 + parent: 30 + - uid: 9577 + components: + - type: Transform + pos: -1.5,-44.5 + parent: 30 + - uid: 9578 + components: + - type: Transform + pos: -21.5,-41.5 parent: 30 - uid: 9594 components: @@ -33692,260 +33000,365 @@ entities: - type: Transform pos: 3.5,-10.5 parent: 30 - - uid: 9793 + - uid: 9620 components: - type: Transform - pos: -12.5,-42.5 + pos: 1.5,-38.5 parent: 30 - - uid: 9795 + - uid: 9621 components: - type: Transform - pos: -17.5,-41.5 + pos: -0.5,-39.5 parent: 30 - - uid: 9839 + - uid: 9622 components: - type: Transform - pos: -7.5,-44.5 + pos: 0.5,-39.5 parent: 30 - - uid: 9999 + - uid: 9623 components: - type: Transform - pos: -17.5,-42.5 + pos: 1.5,-39.5 parent: 30 - - uid: 10151 + - uid: 9703 components: - type: Transform - pos: -13.5,-40.5 + pos: -5.5,-43.5 parent: 30 - - uid: 10152 + - uid: 9789 components: - type: Transform - pos: -14.5,-40.5 + pos: -0.5,-50.5 + parent: 30 + - uid: 9808 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 30 + - uid: 9814 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 30 + - uid: 9830 + components: + - type: Transform + pos: -6.5,-41.5 + parent: 30 + - uid: 9875 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 30 + - uid: 9880 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 30 + - uid: 9895 + components: + - type: Transform + pos: -22.5,-41.5 + parent: 30 + - uid: 9937 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 30 + - uid: 9945 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 30 + - uid: 9950 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 30 + - uid: 9952 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 30 + - uid: 9987 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 30 + - uid: 10087 + components: + - type: Transform + pos: -17.5,-60.5 + parent: 30 + - uid: 10090 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 30 + - uid: 10138 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 30 + - uid: 10142 + components: + - type: Transform + pos: -14.5,-60.5 + parent: 30 + - uid: 10144 + components: + - type: Transform + pos: -19.5,-60.5 parent: 30 - uid: 10153 components: - type: Transform - pos: -15.5,-40.5 + pos: -19.5,-55.5 parent: 30 - uid: 10154 components: - type: Transform - pos: -16.5,-40.5 + pos: -19.5,-53.5 parent: 30 - - uid: 10155 + - uid: 10156 components: - type: Transform - pos: -17.5,-40.5 + pos: -19.5,-47.5 parent: 30 - - uid: 10156 + - uid: 10164 components: - type: Transform - pos: -7.5,-43.5 + pos: -18.5,-60.5 parent: 30 - - uid: 10157 + - uid: 10189 components: - type: Transform - pos: -7.5,-42.5 + pos: -54.5,-62.5 parent: 30 - - uid: 10158 + - uid: 10204 components: - type: Transform - pos: -7.5,-41.5 + pos: -0.5,-47.5 parent: 30 - - uid: 10159 + - uid: 10211 components: - type: Transform - pos: -7.5,-40.5 + pos: -0.5,-46.5 parent: 30 - - uid: 10160 + - uid: 10271 components: - type: Transform - pos: -8.5,-40.5 + pos: -18.5,-46.5 parent: 30 - - uid: 10161 + - uid: 10274 components: - type: Transform - pos: -9.5,-40.5 + pos: -21.5,-55.5 parent: 30 - - uid: 10162 + - uid: 10510 components: - type: Transform - pos: -10.5,-40.5 + pos: -12.5,-43.5 parent: 30 - - uid: 10163 + - uid: 10529 components: - type: Transform - pos: -11.5,-40.5 + pos: -7.5,-44.5 parent: 30 - - uid: 10164 + - uid: 10530 components: - type: Transform - pos: -17.5,-43.5 + pos: -12.5,-44.5 parent: 30 - - uid: 10165 + - uid: 10537 + components: + - type: Transform + pos: -19.5,-46.5 + parent: 30 + - uid: 10539 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 30 + - uid: 10540 + components: + - type: Transform + pos: -12.5,-47.5 + parent: 30 + - uid: 10541 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 30 + - uid: 10542 components: - type: Transform pos: -17.5,-44.5 parent: 30 - - uid: 10166 + - uid: 10543 components: - type: Transform - pos: -17.5,-45.5 + pos: -14.5,-43.5 parent: 30 - - uid: 10167 + - uid: 10544 components: - type: Transform - pos: -17.5,-46.5 + pos: -16.5,-36.5 parent: 30 - - uid: 10168 + - uid: 10547 components: - type: Transform - pos: -17.5,-47.5 + pos: -4.5,-44.5 parent: 30 - - uid: 10169 + - uid: 10586 components: - type: Transform - pos: -17.5,-48.5 + pos: -19.5,-54.5 parent: 30 - - uid: 10170 + - uid: 10588 components: - type: Transform - pos: -17.5,-49.5 + pos: -15.5,-60.5 parent: 30 - - uid: 10171 + - uid: 10599 components: - type: Transform - pos: -17.5,-50.5 + pos: -19.5,-48.5 parent: 30 - - uid: 10172 + - uid: 10601 components: - type: Transform - pos: -17.5,-51.5 + pos: -12.5,-45.5 parent: 30 - - uid: 10173 + - uid: 10611 components: - type: Transform - pos: -17.5,-52.5 + pos: -5.5,-44.5 parent: 30 - - uid: 10174 + - uid: 10628 components: - type: Transform - pos: -17.5,-53.5 + pos: -21.5,-58.5 parent: 30 - - uid: 10175 + - uid: 10631 components: - type: Transform - pos: -17.5,-54.5 + pos: -22.5,-58.5 parent: 30 - - uid: 10176 + - uid: 10633 components: - type: Transform - pos: -17.5,-55.5 + pos: -20.5,-59.5 parent: 30 - - uid: 10177 + - uid: 10634 components: - type: Transform - pos: -17.5,-56.5 + pos: -20.5,-58.5 parent: 30 - - uid: 10178 + - uid: 10638 components: - type: Transform - pos: -17.5,-57.5 + pos: -17.5,-45.5 parent: 30 - - uid: 10179 + - uid: 10694 components: - type: Transform - pos: -17.5,-58.5 + pos: -17.5,-50.5 parent: 30 - - uid: 10180 + - uid: 10725 components: - type: Transform - pos: -17.5,-59.5 + pos: -17.5,-51.5 parent: 30 - - uid: 10181 + - uid: 10754 components: - type: Transform - pos: -17.5,-60.5 + pos: -17.5,-49.5 parent: 30 - - uid: 10182 + - uid: 11066 components: - type: Transform - pos: -17.5,-61.5 + pos: -19.5,-41.5 parent: 30 - - uid: 10183 + - uid: 11070 components: - type: Transform - pos: -17.5,-62.5 + pos: -0.5,-44.5 parent: 30 - - uid: 10184 + - uid: 11078 components: - type: Transform - pos: -17.5,-63.5 + pos: -12.5,-37.5 parent: 30 - - uid: 10185 + - uid: 11082 components: - type: Transform - pos: -17.5,-64.5 + pos: -12.5,-38.5 parent: 30 - - uid: 10535 + - uid: 11084 components: - type: Transform - pos: -16.5,-51.5 + pos: -8.5,-39.5 parent: 30 - - uid: 10670 + - uid: 11096 components: - type: Transform - pos: -20.5,-55.5 + pos: -18.5,-41.5 parent: 30 - - uid: 10671 + - uid: 11097 components: - type: Transform - pos: -21.5,-55.5 + pos: -11.5,-39.5 parent: 30 - - uid: 10672 + - uid: 11103 components: - type: Transform - pos: -22.5,-55.5 + pos: -12.5,-35.5 parent: 30 - - uid: 10673 + - uid: 11114 components: - type: Transform - pos: -22.5,-54.5 + pos: -16.5,-39.5 parent: 30 - - uid: 10674 + - uid: 11120 components: - type: Transform - pos: -22.5,-53.5 + pos: -13.5,-40.5 parent: 30 - - uid: 10675 + - uid: 11124 components: - type: Transform - pos: -22.5,-52.5 + pos: -0.5,-49.5 parent: 30 - - uid: 10676 + - uid: 11142 components: - type: Transform - pos: -22.5,-51.5 + pos: -18.5,-51.5 parent: 30 - - uid: 10677 + - uid: 11143 components: - type: Transform - pos: -22.5,-50.5 + pos: -19.5,-51.5 parent: 30 - - uid: 10678 + - uid: 11277 components: - type: Transform - pos: -22.5,-49.5 + pos: -6.5,-42.5 parent: 30 - - uid: 10688 + - uid: 11291 components: - type: Transform - pos: -22.5,-48.5 + pos: -0.5,-45.5 parent: 30 - - uid: 10696 + - uid: 11307 components: - type: Transform - pos: -22.5,-47.5 + pos: -16.5,-40.5 + parent: 30 + - uid: 11337 + components: + - type: Transform + pos: -12.5,-39.5 parent: 30 - uid: 11378 components: @@ -34137,6 +33550,26 @@ entities: - type: Transform pos: 3.5,-12.5 parent: 30 + - uid: 12213 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 30 + - uid: 12443 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 30 + - uid: 12814 + components: + - type: Transform + pos: -53.5,-62.5 + parent: 30 + - uid: 13083 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 30 - uid: 13842 components: - type: Transform @@ -35862,6 +35295,11 @@ entities: - type: Transform pos: 46.5,31.5 parent: 30 + - uid: 16129 + components: + - type: Transform + pos: -55.5,-62.5 + parent: 30 - uid: 16265 components: - type: Transform @@ -36937,21 +36375,6 @@ entities: - type: Transform pos: -55.5,-48.5 parent: 30 - - uid: 17884 - components: - - type: Transform - pos: -52.5,-59.5 - parent: 30 - - uid: 17885 - components: - - type: Transform - pos: -53.5,-59.5 - parent: 30 - - uid: 17886 - components: - - type: Transform - pos: -54.5,-59.5 - parent: 30 - uid: 17887 components: - type: Transform @@ -37007,6 +36430,16 @@ entities: - type: Transform pos: -55.5,-49.5 parent: 30 + - uid: 17910 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 30 + - uid: 17911 + components: + - type: Transform + pos: -53.5,-60.5 + parent: 30 - uid: 17913 components: - type: Transform @@ -37242,45 +36675,35 @@ entities: - type: Transform pos: -52.5,-43.5 parent: 30 - - uid: 18796 - components: - - type: Transform - pos: -69.5,-63.5 - parent: 30 - - uid: 18797 - components: - - type: Transform - pos: -68.5,-62.5 - parent: 30 - - uid: 18798 + - uid: 18766 components: - type: Transform - pos: -69.5,-62.5 + pos: -56.5,-65.5 parent: 30 - - uid: 18799 + - uid: 18767 components: - type: Transform - pos: -67.5,-62.5 + pos: -56.5,-64.5 parent: 30 - - uid: 18800 + - uid: 18768 components: - type: Transform - pos: -65.5,-62.5 + pos: -53.5,-61.5 parent: 30 - - uid: 18801 + - uid: 18795 components: - type: Transform - pos: -64.5,-62.5 + pos: -55.5,-63.5 parent: 30 - - uid: 18802 + - uid: 18799 components: - type: Transform - pos: -64.5,-61.5 + pos: -56.5,-63.5 parent: 30 - - uid: 18803 + - uid: 18800 components: - type: Transform - pos: -64.5,-60.5 + pos: -56.5,-62.5 parent: 30 - uid: 18804 components: @@ -37327,6 +36750,11 @@ entities: - type: Transform pos: -56.5,-59.5 parent: 30 + - uid: 18924 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 30 - uid: 18926 components: - type: Transform @@ -37402,6 +36830,31 @@ entities: - type: Transform pos: -54.5,-42.5 parent: 30 + - uid: 19243 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 30 + - uid: 19424 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 30 + - uid: 19785 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 30 + - uid: 19801 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 30 + - uid: 19802 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 30 - uid: 19816 components: - type: Transform @@ -37452,51 +36905,6 @@ entities: - type: Transform pos: -26.5,-41.5 parent: 30 - - uid: 20409 - components: - - type: Transform - pos: -25.5,-41.5 - parent: 30 - - uid: 20410 - components: - - type: Transform - pos: -24.5,-41.5 - parent: 30 - - uid: 20411 - components: - - type: Transform - pos: -23.5,-41.5 - parent: 30 - - uid: 20412 - components: - - type: Transform - pos: -23.5,-42.5 - parent: 30 - - uid: 20413 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 30 - - uid: 20414 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 30 - - uid: 20415 - components: - - type: Transform - pos: -23.5,-45.5 - parent: 30 - - uid: 20416 - components: - - type: Transform - pos: -23.5,-46.5 - parent: 30 - - uid: 20417 - components: - - type: Transform - pos: -22.5,-46.5 - parent: 30 - uid: 21289 components: - type: Transform @@ -37552,61 +36960,6 @@ entities: - type: Transform pos: 0.5,84.5 parent: 30 - - uid: 22660 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 30 - - uid: 22661 - components: - - type: Transform - pos: -26.5,-58.5 - parent: 30 - - uid: 22662 - components: - - type: Transform - pos: -26.5,-59.5 - parent: 30 - - uid: 22663 - components: - - type: Transform - pos: -26.5,-60.5 - parent: 30 - - uid: 22664 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 30 - - uid: 22665 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 30 - - uid: 22666 - components: - - type: Transform - pos: -25.5,-62.5 - parent: 30 - - uid: 22667 - components: - - type: Transform - pos: -25.5,-63.5 - parent: 30 - - uid: 22668 - components: - - type: Transform - pos: -26.5,-63.5 - parent: 30 - - uid: 22669 - components: - - type: Transform - pos: -27.5,-63.5 - parent: 30 - - uid: 22670 - components: - - type: Transform - pos: -27.5,-62.5 - parent: 30 - proto: CableHVStack entities: - uid: 1639 @@ -37614,10 +36967,10 @@ entities: - type: Transform pos: -29.80019,33.583 parent: 30 - - uid: 9607 + - uid: 10203 components: - type: Transform - pos: -15.37175,-34.518528 + pos: -24.57955,-44.498714 parent: 30 - uid: 10314 components: @@ -37634,10 +36987,10 @@ entities: - type: Transform pos: -42.242332,27.415749 parent: 30 - - uid: 11312 + - uid: 11025 components: - type: Transform - pos: 1.5133002,-44.49842 + pos: -5.405215,-34.750645 parent: 30 - uid: 15972 components: @@ -37646,6 +36999,16 @@ entities: parent: 30 - proto: CableMV entities: + - uid: 845 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 30 + - uid: 866 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 30 - uid: 948 components: - type: Transform @@ -38416,26 +37779,6 @@ entities: - type: Transform pos: -23.5,6.5 parent: 30 - - uid: 4098 - components: - - type: Transform - pos: -24.5,6.5 - parent: 30 - - uid: 4099 - components: - - type: Transform - pos: -25.5,6.5 - parent: 30 - - uid: 4100 - components: - - type: Transform - pos: -26.5,6.5 - parent: 30 - - uid: 4101 - components: - - type: Transform - pos: -26.5,6.5 - parent: 30 - uid: 4102 components: - type: Transform @@ -38671,6 +38014,16 @@ entities: - type: Transform pos: -5.5,12.5 parent: 30 + - uid: 4426 + components: + - type: Transform + pos: -24.5,7.5 + parent: 30 + - uid: 4455 + components: + - type: Transform + pos: -25.5,7.5 + parent: 30 - uid: 4512 components: - type: Transform @@ -39566,6 +38919,11 @@ entities: - type: Transform pos: -13.5,-7.5 parent: 30 + - uid: 7449 + components: + - type: Transform + pos: -23.5,7.5 + parent: 30 - uid: 7481 components: - type: Transform @@ -39776,16 +39134,6 @@ entities: - type: Transform pos: -24.5,-6.5 parent: 30 - - uid: 8004 - components: - - type: Transform - pos: -4.5,-47.5 - parent: 30 - - uid: 8005 - components: - - type: Transform - pos: -7.5,-46.5 - parent: 30 - uid: 8045 components: - type: Transform @@ -39816,11 +39164,6 @@ entities: - type: Transform pos: -25.5,-5.5 parent: 30 - - uid: 8137 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 30 - uid: 8138 components: - type: Transform @@ -39831,10 +39174,25 @@ entities: - type: Transform pos: -28.5,-5.5 parent: 30 - - uid: 8606 + - uid: 8251 components: - type: Transform - pos: 3.5,-37.5 + pos: -15.5,-40.5 + parent: 30 + - uid: 8837 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 30 + - uid: 9047 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 30 + - uid: 9048 + components: + - type: Transform + pos: -20.5,-43.5 parent: 30 - uid: 9055 components: @@ -39926,210 +39284,120 @@ entities: - type: Transform pos: -30.5,-13.5 parent: 30 - - uid: 10269 - components: - - type: Transform - pos: -17.5,-51.5 - parent: 30 - - uid: 10270 - components: - - type: Transform - pos: -17.5,-52.5 - parent: 30 - - uid: 10271 - components: - - type: Transform - pos: -17.5,-53.5 - parent: 30 - - uid: 10272 - components: - - type: Transform - pos: -17.5,-54.5 - parent: 30 - - uid: 10273 - components: - - type: Transform - pos: -17.5,-55.5 - parent: 30 - - uid: 10274 - components: - - type: Transform - pos: -17.5,-56.5 - parent: 30 - - uid: 10275 - components: - - type: Transform - pos: -17.5,-57.5 - parent: 30 - - uid: 10276 - components: - - type: Transform - pos: -17.5,-58.5 - parent: 30 - - uid: 10277 - components: - - type: Transform - pos: -17.5,-59.5 - parent: 30 - - uid: 10278 - components: - - type: Transform - pos: -17.5,-60.5 - parent: 30 - - uid: 10279 - components: - - type: Transform - pos: -17.5,-61.5 - parent: 30 - - uid: 10280 - components: - - type: Transform - pos: -17.5,-62.5 - parent: 30 - - uid: 10281 - components: - - type: Transform - pos: -17.5,-63.5 - parent: 30 - - uid: 10282 - components: - - type: Transform - pos: -17.5,-64.5 - parent: 30 - - uid: 10534 - components: - - type: Transform - pos: -16.5,-51.5 - parent: 30 - - uid: 10537 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 30 - - uid: 10538 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 30 - - uid: 10539 - components: - - type: Transform - pos: 1.5,-38.5 - parent: 30 - - uid: 10540 + - uid: 9927 components: - type: Transform - pos: 0.5,-38.5 + pos: -16.5,-28.5 parent: 30 - - uid: 10541 + - uid: 9935 components: - type: Transform - pos: -0.5,-38.5 + pos: -16.5,-29.5 parent: 30 - - uid: 10542 + - uid: 10143 components: - type: Transform - pos: -1.5,-38.5 + pos: -23.5,-55.5 parent: 30 - - uid: 10543 + - uid: 10155 components: - type: Transform - pos: -1.5,-38.5 + pos: -17.5,-48.5 parent: 30 - - uid: 10544 + - uid: 10157 components: - type: Transform - pos: -2.5,-38.5 + pos: -22.5,-60.5 parent: 30 - - uid: 10545 + - uid: 10158 components: - type: Transform - pos: -3.5,-38.5 + pos: -21.5,-60.5 parent: 30 - - uid: 10546 + - uid: 10159 components: - type: Transform - pos: -4.5,-38.5 + pos: -20.5,-53.5 parent: 30 - - uid: 10547 + - uid: 10161 components: - type: Transform - pos: -20.5,-38.5 + pos: -20.5,-42.5 parent: 30 - - uid: 10548 + - uid: 10162 components: - type: Transform - pos: -19.5,-38.5 + pos: -18.5,-41.5 parent: 30 - - uid: 10549 + - uid: 10165 components: - type: Transform - pos: -18.5,-38.5 + pos: -23.5,-57.5 parent: 30 - - uid: 10550 + - uid: 10168 components: - type: Transform - pos: -17.5,-38.5 + pos: -17.5,-50.5 parent: 30 - - uid: 10551 + - uid: 10169 components: - type: Transform - pos: -16.5,-38.5 + pos: -17.5,-51.5 parent: 30 - - uid: 10552 + - uid: 10177 components: - type: Transform - pos: -15.5,-38.5 + pos: -20.5,-41.5 parent: 30 - - uid: 10553 + - uid: 10178 components: - type: Transform - pos: -14.5,-38.5 + pos: -16.5,-40.5 parent: 30 - - uid: 10554 + - uid: 10183 components: - type: Transform - pos: -13.5,-38.5 + pos: -17.5,-41.5 parent: 30 - - uid: 10555 + - uid: 10184 components: - type: Transform - pos: -12.5,-38.5 + pos: -20.5,-45.5 parent: 30 - - uid: 10556 + - uid: 10187 components: - type: Transform - pos: -11.5,-38.5 + pos: -53.5,-60.5 parent: 30 - - uid: 10557 + - uid: 10207 components: - type: Transform - pos: -10.5,-38.5 + pos: -55.5,-62.5 parent: 30 - - uid: 10558 + - uid: 10209 components: - type: Transform - pos: -9.5,-38.5 + pos: -53.5,-62.5 parent: 30 - - uid: 10559 + - uid: 10210 components: - type: Transform - pos: -8.5,-38.5 + pos: -53.5,-61.5 parent: 30 - - uid: 10560 + - uid: 10441 components: - type: Transform - pos: -7.5,-38.5 + pos: -18.5,-30.5 parent: 30 - - uid: 10561 + - uid: 10532 components: - type: Transform - pos: -6.5,-38.5 + pos: -17.5,-30.5 parent: 30 - - uid: 10562 + - uid: 10533 components: - type: Transform - pos: -5.5,-38.5 + pos: -16.5,-30.5 parent: 30 - uid: 10563 components: @@ -40226,16 +39494,186 @@ entities: - type: Transform pos: 9.5,-30.5 parent: 30 - - uid: 10642 + - uid: 10594 components: - type: Transform - pos: -7.5,-40.5 + pos: -16.5,-41.5 parent: 30 - - uid: 10643 + - uid: 10595 + components: + - type: Transform + pos: -24.5,-60.5 + parent: 30 + - uid: 10596 + components: + - type: Transform + pos: -24.5,-62.5 + parent: 30 + - uid: 10600 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 30 + - uid: 10602 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 30 + - uid: 10605 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 30 + - uid: 10615 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 30 + - uid: 10616 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 30 + - uid: 10618 + components: + - type: Transform + pos: -23.5,-56.5 + parent: 30 + - uid: 10620 + components: + - type: Transform + pos: -23.5,-58.5 + parent: 30 + - uid: 10625 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 30 + - uid: 10626 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 30 + - uid: 10630 + components: + - type: Transform + pos: -24.5,-61.5 + parent: 30 + - uid: 10646 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 30 + - uid: 10675 components: - type: Transform pos: -7.5,-39.5 parent: 30 + - uid: 10679 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 30 + - uid: 10681 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 30 + - uid: 10683 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 30 + - uid: 10684 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 30 + - uid: 10685 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 30 + - uid: 10686 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 30 + - uid: 10687 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 30 + - uid: 10688 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 30 + - uid: 11064 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 30 + - uid: 11158 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 30 + - uid: 11227 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 30 + - uid: 11257 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 30 + - uid: 11263 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 30 + - uid: 11268 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 30 + - uid: 11302 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 30 + - uid: 11304 + components: + - type: Transform + pos: -20.5,-55.5 + parent: 30 + - uid: 11313 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 30 + - uid: 11333 + components: + - type: Transform + pos: -22.5,-55.5 + parent: 30 + - uid: 11334 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 30 + - uid: 11344 + components: + - type: Transform + pos: -23.5,-60.5 + parent: 30 + - uid: 11464 + components: + - type: Transform + pos: -68.5,-60.5 + parent: 30 - uid: 11534 components: - type: Transform @@ -40666,25 +40104,40 @@ entities: - type: Transform pos: -10.5,-7.5 parent: 30 - - uid: 12380 + - uid: 12651 components: - type: Transform - pos: -0.5,-47.5 + pos: 21.5,11.5 parent: 30 - - uid: 12443 + - uid: 12652 components: - type: Transform - pos: -1.5,-47.5 + pos: 20.5,11.5 parent: 30 - - uid: 12860 + - uid: 12654 components: - type: Transform - pos: 21.5,12.5 + pos: 19.5,11.5 + parent: 30 + - uid: 12696 + components: + - type: Transform + pos: -69.5,-60.5 parent: 30 - uid: 12862 components: - type: Transform - pos: 20.5,12.5 + pos: 16.5,11.5 + parent: 30 + - uid: 12865 + components: + - type: Transform + pos: 16.5,12.5 + parent: 30 + - uid: 13075 + components: + - type: Transform + pos: -54.5,-62.5 parent: 30 - uid: 13099 components: @@ -41034,28 +40487,13 @@ entities: - uid: 13211 components: - type: Transform - pos: 19.5,12.5 - parent: 30 - - uid: 13283 - components: - - type: Transform - pos: 18.5,13.5 + pos: 18.5,11.5 parent: 30 - uid: 13307 components: - type: Transform pos: 26.5,20.5 parent: 30 - - uid: 13319 - components: - - type: Transform - pos: -2.5,-47.5 - parent: 30 - - uid: 13331 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - uid: 13369 components: - type: Transform @@ -41081,6 +40519,26 @@ entities: - type: Transform pos: 15.5,55.5 parent: 30 + - uid: 13972 + components: + - type: Transform + pos: -17.5,-52.5 + parent: 30 + - uid: 14345 + components: + - type: Transform + pos: 17.5,11.5 + parent: 30 + - uid: 14441 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 30 + - uid: 14523 + components: + - type: Transform + pos: -55.5,-60.5 + parent: 30 - uid: 14542 components: - type: Transform @@ -41146,11 +40604,6 @@ entities: - type: Transform pos: 48.5,20.5 parent: 30 - - uid: 14590 - components: - - type: Transform - pos: -7.5,-43.5 - parent: 30 - uid: 14731 components: - type: Transform @@ -41331,45 +40784,15 @@ entities: - type: Transform pos: 32.5,44.5 parent: 30 - - uid: 14808 - components: - - type: Transform - pos: -7.5,-44.5 - parent: 30 - - uid: 14827 - components: - - type: Transform - pos: -7.5,-45.5 - parent: 30 - - uid: 14828 - components: - - type: Transform - pos: -6.5,-47.5 - parent: 30 - - uid: 14848 - components: - - type: Transform - pos: -3.5,-47.5 - parent: 30 - - uid: 14868 - components: - - type: Transform - pos: -7.5,-42.5 - parent: 30 - - uid: 14895 - components: - - type: Transform - pos: -5.5,-47.5 - parent: 30 - - uid: 14915 + - uid: 16128 components: - type: Transform - pos: -7.5,-41.5 + pos: 23.5,-4.5 parent: 30 - - uid: 16128 + - uid: 16404 components: - type: Transform - pos: 23.5,-4.5 + pos: -56.5,-62.5 parent: 30 - uid: 16420 components: @@ -41381,10 +40804,10 @@ entities: - type: Transform pos: 23.5,-6.5 parent: 30 - - uid: 17593 + - uid: 17785 components: - type: Transform - pos: -7.5,-47.5 + pos: -56.5,-65.5 parent: 30 - uid: 18118 components: @@ -41396,20 +40819,20 @@ entities: - type: Transform pos: 16.5,47.5 parent: 30 - - uid: 18859 + - uid: 18189 components: - type: Transform - pos: -52.5,-59.5 + pos: -56.5,-64.5 parent: 30 - - uid: 18860 + - uid: 18190 components: - type: Transform - pos: -53.5,-59.5 + pos: -56.5,-63.5 parent: 30 - - uid: 18861 + - uid: 18207 components: - type: Transform - pos: -54.5,-59.5 + pos: 16.5,13.5 parent: 30 - uid: 18862 components: @@ -41491,21 +40914,6 @@ entities: - type: Transform pos: -68.5,-58.5 parent: 30 - - uid: 18878 - components: - - type: Transform - pos: -69.5,-58.5 - parent: 30 - - uid: 18879 - components: - - type: Transform - pos: -70.5,-58.5 - parent: 30 - - uid: 18880 - components: - - type: Transform - pos: -70.5,-59.5 - parent: 30 - uid: 18881 components: - type: Transform @@ -41881,6 +41289,31 @@ entities: - type: Transform pos: -59.5,-26.5 parent: 30 + - uid: 19182 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 30 + - uid: 19235 + components: + - type: Transform + pos: -17.5,-53.5 + parent: 30 + - uid: 19412 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 30 + - uid: 19421 + components: + - type: Transform + pos: -20.5,-54.5 + parent: 30 + - uid: 19422 + components: + - type: Transform + pos: -17.5,-54.5 + parent: 30 - uid: 19494 components: - type: Transform @@ -42001,31 +41434,6 @@ entities: - type: Transform pos: -8.5,-13.5 parent: 30 - - uid: 19828 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 30 - - uid: 19829 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 30 - - uid: 19830 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 30 - - uid: 19831 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 30 - - uid: 19832 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 30 - uid: 20157 components: - type: Transform @@ -42066,75 +41474,20 @@ entities: - type: Transform pos: 30.5,6.5 parent: 30 - - uid: 20418 - components: - - type: Transform - pos: -22.5,-46.5 - parent: 30 - - uid: 20419 - components: - - type: Transform - pos: -23.5,-46.5 - parent: 30 - - uid: 20420 - components: - - type: Transform - pos: -23.5,-45.5 - parent: 30 - - uid: 20421 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 30 - - uid: 20422 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 30 - - uid: 20423 - components: - - type: Transform - pos: -23.5,-42.5 - parent: 30 - - uid: 20424 - components: - - type: Transform - pos: -22.5,-42.5 - parent: 30 - - uid: 20425 - components: - - type: Transform - pos: -21.5,-42.5 - parent: 30 - - uid: 20426 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 30 - - uid: 20427 - components: - - type: Transform - pos: -19.5,-42.5 - parent: 30 - - uid: 20428 - components: - - type: Transform - pos: -18.5,-42.5 - parent: 30 - - uid: 20429 + - uid: 20369 components: - type: Transform - pos: -18.5,-41.5 + pos: 1.5,-40.5 parent: 30 - - uid: 20430 + - uid: 20370 components: - type: Transform - pos: -18.5,-40.5 + pos: 1.5,-41.5 parent: 30 - - uid: 20431 + - uid: 20371 components: - type: Transform - pos: -18.5,-39.5 + pos: 1.5,-42.5 parent: 30 - uid: 20893 components: @@ -42656,166 +42009,6 @@ entities: - type: Transform pos: 3.5,10.5 parent: 30 - - uid: 22674 - components: - - type: Transform - pos: -27.5,-62.5 - parent: 30 - - uid: 22675 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 30 - - uid: 22676 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 30 - - uid: 22677 - components: - - type: Transform - pos: -26.5,-60.5 - parent: 30 - - uid: 22678 - components: - - type: Transform - pos: -26.5,-59.5 - parent: 30 - - uid: 22679 - components: - - type: Transform - pos: -27.5,-59.5 - parent: 30 - - uid: 22680 - components: - - type: Transform - pos: -27.5,-58.5 - parent: 30 - - uid: 22681 - components: - - type: Transform - pos: -28.5,-58.5 - parent: 30 - - uid: 22682 - components: - - type: Transform - pos: -29.5,-58.5 - parent: 30 - - uid: 22683 - components: - - type: Transform - pos: -29.5,-59.5 - parent: 30 - - uid: 22684 - components: - - type: Transform - pos: -29.5,-60.5 - parent: 30 - - uid: 22685 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 30 - - uid: 22686 - components: - - type: Transform - pos: -30.5,-60.5 - parent: 30 - - uid: 22687 - components: - - type: Transform - pos: -31.5,-60.5 - parent: 30 - - uid: 22688 - components: - - type: Transform - pos: -32.5,-60.5 - parent: 30 - - uid: 22689 - components: - - type: Transform - pos: -33.5,-60.5 - parent: 30 - - uid: 22690 - components: - - type: Transform - pos: -34.5,-60.5 - parent: 30 - - uid: 22691 - components: - - type: Transform - pos: -34.5,-59.5 - parent: 30 - - uid: 22692 - components: - - type: Transform - pos: -34.5,-58.5 - parent: 30 - - uid: 22693 - components: - - type: Transform - pos: -34.5,-57.5 - parent: 30 - - uid: 22694 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 30 - - uid: 22695 - components: - - type: Transform - pos: -32.5,-59.5 - parent: 30 - - uid: 22696 - components: - - type: Transform - pos: -32.5,-58.5 - parent: 30 - - uid: 22697 - components: - - type: Transform - pos: -32.5,-57.5 - parent: 30 - - uid: 22698 - components: - - type: Transform - pos: -32.5,-61.5 - parent: 30 - - uid: 22699 - components: - - type: Transform - pos: -32.5,-62.5 - parent: 30 - - uid: 22700 - components: - - type: Transform - pos: -32.5,-63.5 - parent: 30 - - uid: 22701 - components: - - type: Transform - pos: -31.5,-59.5 - parent: 30 - - uid: 22702 - components: - - type: Transform - pos: -33.5,-59.5 - parent: 30 - - uid: 22703 - components: - - type: Transform - pos: -33.5,-61.5 - parent: 30 - - uid: 22704 - components: - - type: Transform - pos: -31.5,-61.5 - parent: 30 - - uid: 22705 - components: - - type: Transform - pos: -30.5,-61.5 - parent: 30 - proto: CableMVStack entities: - uid: 1638 @@ -42823,10 +42016,10 @@ entities: - type: Transform pos: -30.17519,33.583 parent: 30 - - uid: 9606 + - uid: 10202 components: - type: Transform - pos: -15.528,-34.377903 + pos: -24.846876,-44.33535 parent: 30 - uid: 10260 components: @@ -42843,10 +42036,18 @@ entities: - type: Transform pos: -42.382957,27.540749 parent: 30 - - uid: 11311 + - uid: 10751 + components: + - type: Transform + pos: -5.4943237,-34.631832 + parent: 30 +- proto: CableMVStack10 + entities: + - uid: 10151 components: - type: Transform - pos: 1.2945502,-44.37342 + rot: 3.141592653589793 rad + pos: -24.347925,-59.731403 parent: 30 - proto: CableTerminal entities: @@ -42860,33 +42061,48 @@ entities: canCollide: False - type: Fixtures fixtures: {} - - uid: 9487 + - uid: 8419 components: - type: Transform - pos: -6.5,-33.5 + rot: 3.141592653589793 rad + pos: -15.5,-29.5 parent: 30 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - - uid: 9488 + - uid: 9412 components: - type: Transform - pos: -8.5,-33.5 + rot: -1.5707963267948966 rad + pos: -18.5,-46.5 parent: 30 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - - uid: 9489 + - uid: 9418 components: - type: Transform - pos: -7.5,-33.5 + rot: 3.141592653589793 rad + pos: -5.5,-44.5 + parent: 30 + - uid: 9451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-44.5 + parent: 30 + - uid: 9499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-34.5 + parent: 30 + - uid: 10503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-44.5 + parent: 30 + - uid: 11340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-35.5 parent: 30 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - uid: 15296 components: - type: Transform @@ -42913,11 +42129,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,84.5 parent: 30 - - uid: 22671 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 30 - proto: CandyBowl entities: - uid: 10047 @@ -42949,11 +42160,6 @@ entities: - type: Transform pos: 2.6220274,21.009964 parent: 30 - - uid: 22441 - components: - - type: Transform - pos: 2.452661,20.541075 - parent: 30 - proto: CarbonDioxideCanister entities: - uid: 8772 @@ -42971,10 +42177,10 @@ entities: - type: Transform pos: 19.5,-17.5 parent: 30 - - uid: 10430 + - uid: 9657 components: - type: Transform - pos: -14.5,-47.5 + pos: -5.5,-50.5 parent: 30 - proto: Carpet entities: @@ -43497,76 +42703,6 @@ entities: - type: Transform pos: -79.5,-49.5 parent: 30 - - uid: 19401 - components: - - type: Transform - pos: -59.5,-68.5 - parent: 30 - - uid: 19402 - components: - - type: Transform - pos: -59.5,-67.5 - parent: 30 - - uid: 19403 - components: - - type: Transform - pos: -59.5,-66.5 - parent: 30 - - uid: 19404 - components: - - type: Transform - pos: -59.5,-65.5 - parent: 30 - - uid: 19405 - components: - - type: Transform - pos: -59.5,-64.5 - parent: 30 - - uid: 19406 - components: - - type: Transform - pos: -59.5,-63.5 - parent: 30 - - uid: 19407 - components: - - type: Transform - pos: -59.5,-62.5 - parent: 30 - - uid: 19408 - components: - - type: Transform - pos: -58.5,-68.5 - parent: 30 - - uid: 19409 - components: - - type: Transform - pos: -58.5,-67.5 - parent: 30 - - uid: 19410 - components: - - type: Transform - pos: -58.5,-66.5 - parent: 30 - - uid: 19411 - components: - - type: Transform - pos: -58.5,-65.5 - parent: 30 - - uid: 19412 - components: - - type: Transform - pos: -58.5,-64.5 - parent: 30 - - uid: 19413 - components: - - type: Transform - pos: -58.5,-63.5 - parent: 30 - - uid: 19414 - components: - - type: Transform - pos: -58.5,-62.5 - parent: 30 - uid: 19478 components: - type: Transform @@ -44301,23 +43437,35 @@ entities: parent: 30 - proto: CarpetOrange entities: - - uid: 8294 + - uid: 4099 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-35.5 + pos: -66.5,-63.5 parent: 30 - - uid: 8297 + - uid: 4100 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-36.5 + pos: -66.5,-62.5 parent: 30 - - uid: 8298 + - uid: 4128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-34.5 + pos: -65.5,-64.5 + parent: 30 + - uid: 4129 + components: + - type: Transform + pos: -65.5,-63.5 + parent: 30 + - uid: 4130 + components: + - type: Transform + pos: -65.5,-62.5 + parent: 30 + - uid: 9492 + components: + - type: Transform + pos: -6.5,-33.5 parent: 30 - uid: 9720 components: @@ -44339,6 +43487,26 @@ entities: - type: Transform pos: -42.5,-13.5 parent: 30 + - uid: 9976 + components: + - type: Transform + pos: -63.5,-63.5 + parent: 30 + - uid: 10227 + components: + - type: Transform + pos: -61.5,-65.5 + parent: 30 + - uid: 10742 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 30 + - uid: 11020 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 30 - uid: 11619 components: - type: Transform @@ -44359,6 +43527,46 @@ entities: - type: Transform pos: 24.5,0.5 parent: 30 + - uid: 12771 + components: + - type: Transform + pos: -62.5,-65.5 + parent: 30 + - uid: 12772 + components: + - type: Transform + pos: -61.5,-63.5 + parent: 30 + - uid: 12809 + components: + - type: Transform + pos: -61.5,-64.5 + parent: 30 + - uid: 12820 + components: + - type: Transform + pos: -63.5,-64.5 + parent: 30 + - uid: 14360 + components: + - type: Transform + pos: -66.5,-64.5 + parent: 30 + - uid: 14473 + components: + - type: Transform + pos: -63.5,-65.5 + parent: 30 + - uid: 14474 + components: + - type: Transform + pos: -62.5,-64.5 + parent: 30 + - uid: 14478 + components: + - type: Transform + pos: -62.5,-63.5 + parent: 30 - proto: CarpetPink entities: - uid: 15267 @@ -44774,11 +43982,6 @@ entities: - type: Transform pos: -58.5,-8.5 parent: 30 - - uid: 4987 - components: - - type: Transform - pos: -20.5,-58.5 - parent: 30 - uid: 5068 components: - type: Transform @@ -44901,20 +44104,22 @@ entities: - type: Transform pos: 27.5,-18.5 parent: 30 - - uid: 7443 + - uid: 7975 components: - type: Transform - pos: -19.5,-58.5 + pos: 24.5,-18.5 parent: 30 - - uid: 7444 + - uid: 8455 components: - type: Transform - pos: -18.5,-58.5 + rot: -1.5707963267948966 rad + pos: -8.5,-44.5 parent: 30 - - uid: 7975 + - uid: 8526 components: - type: Transform - pos: 24.5,-18.5 + rot: 3.141592653589793 rad + pos: -6.5,-43.5 parent: 30 - uid: 8538 components: @@ -44971,96 +44176,125 @@ entities: - type: Transform pos: -5.5,-14.5 parent: 30 - - uid: 9213 + - uid: 9219 components: - type: Transform - pos: -5.5,-15.5 + pos: -5.5,-21.5 parent: 30 - - uid: 9214 + - uid: 9221 components: - type: Transform - pos: -5.5,-16.5 + pos: -5.5,-22.5 parent: 30 - - uid: 9215 + - uid: 9263 components: - type: Transform - pos: -5.5,-17.5 + pos: 25.5,-18.5 parent: 30 - - uid: 9216 + - uid: 9478 components: - type: Transform - pos: -5.5,-18.5 + pos: -12.5,-48.5 parent: 30 - - uid: 9217 + - uid: 9484 components: - type: Transform - pos: -5.5,-19.5 + rot: 3.141592653589793 rad + pos: -5.5,-43.5 parent: 30 - - uid: 9218 + - uid: 9518 components: - type: Transform - pos: -5.5,-20.5 + pos: -5.5,-18.5 parent: 30 - - uid: 9219 + - uid: 9520 components: - type: Transform - pos: -5.5,-21.5 + pos: -11.5,-51.5 parent: 30 - - uid: 9221 + - uid: 9563 components: - type: Transform - pos: -5.5,-22.5 + pos: -10.5,-51.5 parent: 30 - - uid: 9263 + - uid: 9569 components: - type: Transform - pos: 25.5,-18.5 + rot: -1.5707963267948966 rad + pos: -6.5,-44.5 parent: 30 - - uid: 9563 + - uid: 9571 components: - type: Transform - pos: -12.5,-29.5 + rot: -1.5707963267948966 rad + pos: -4.5,-44.5 parent: 30 - - uid: 9564 + - uid: 9613 components: - type: Transform - pos: -11.5,-29.5 + pos: -5.5,-17.5 parent: 30 - - uid: 9565 + - uid: 9615 components: - type: Transform - pos: -10.5,-29.5 + pos: -5.5,-19.5 parent: 30 - - uid: 9566 + - uid: 9616 components: - type: Transform - pos: -9.5,-29.5 + pos: -5.5,-20.5 parent: 30 - - uid: 9567 + - uid: 9704 components: - type: Transform - pos: -8.5,-29.5 + pos: -5.5,-16.5 parent: 30 - - uid: 9568 + - uid: 9705 components: - type: Transform - pos: -7.5,-29.5 + pos: -5.5,-15.5 parent: 30 - - uid: 9569 + - uid: 9799 components: - type: Transform - pos: -6.5,-29.5 + pos: -40.5,-24.5 parent: 30 - - uid: 9799 + - uid: 9821 components: - type: Transform - pos: -40.5,-24.5 + rot: 3.141592653589793 rad + pos: -0.5,-46.5 parent: 30 - uid: 9831 components: - type: Transform pos: -41.5,-24.5 parent: 30 + - uid: 9888 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 30 + - uid: 9889 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 30 + - uid: 9938 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 30 + - uid: 9939 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 30 + - uid: 9985 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 30 - uid: 10073 components: - type: Transform @@ -45076,6 +44310,107 @@ entities: - type: Transform pos: -48.5,-8.5 parent: 30 + - uid: 10659 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 30 + - uid: 10660 + components: + - type: Transform + pos: -22.5,-55.5 + parent: 30 + - uid: 10670 + components: + - type: Transform + pos: -22.5,-56.5 + parent: 30 + - uid: 10671 + components: + - type: Transform + pos: -10.5,-55.5 + parent: 30 + - uid: 10689 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 30 + - uid: 11093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-45.5 + parent: 30 + - uid: 11094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-44.5 + parent: 30 + - uid: 11121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-44.5 + parent: 30 + - uid: 11148 + components: + - type: Transform + pos: -23.5,-55.5 + parent: 30 + - uid: 11149 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 30 + - uid: 11150 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 30 + - uid: 11151 + components: + - type: Transform + pos: -12.5,-55.5 + parent: 30 + - uid: 11152 + components: + - type: Transform + pos: -13.5,-55.5 + parent: 30 + - uid: 11153 + components: + - type: Transform + pos: -11.5,-57.5 + parent: 30 + - uid: 11154 + components: + - type: Transform + pos: -12.5,-56.5 + parent: 30 + - uid: 11273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-44.5 + parent: 30 + - uid: 11274 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 30 + - uid: 11287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-44.5 + parent: 30 + - uid: 11288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-44.5 + parent: 30 - uid: 11314 components: - type: Transform @@ -45256,6 +44591,17 @@ entities: - type: Transform pos: 37.5,-18.5 parent: 30 + - uid: 13903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-43.5 + parent: 30 + - uid: 14848 + components: + - type: Transform + pos: -23.5,-56.5 + parent: 30 - uid: 14869 components: - type: Transform @@ -47089,6 +46435,16 @@ entities: - type: Transform pos: -59.5,23.5 parent: 30 + - uid: 18994 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 30 + - uid: 19241 + components: + - type: Transform + pos: -11.5,-55.5 + parent: 30 - uid: 19591 components: - type: Transform @@ -47449,46 +46805,6 @@ entities: - type: Transform pos: -0.5,58.5 parent: 30 - - uid: 22647 - components: - - type: Transform - pos: -22.5,-58.5 - parent: 30 - - uid: 22648 - components: - - type: Transform - pos: -23.5,-58.5 - parent: 30 - - uid: 22760 - components: - - type: Transform - pos: -25.5,-63.5 - parent: 30 - - uid: 22761 - components: - - type: Transform - pos: -26.5,-63.5 - parent: 30 - - uid: 22762 - components: - - type: Transform - pos: -27.5,-63.5 - parent: 30 - - uid: 22763 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 30 - - uid: 22764 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 30 - - uid: 22765 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 30 - proto: Chair entities: - uid: 586 @@ -47932,6 +47248,42 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-4.5 parent: 30 + - uid: 10125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-39.5 + parent: 30 + - uid: 10127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-40.5 + parent: 30 + - uid: 10195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-41.5 + parent: 30 + - uid: 10196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-40.5 + parent: 30 + - uid: 10197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-39.5 + parent: 30 + - uid: 10198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-41.5 + parent: 30 - uid: 11360 components: - type: Transform @@ -48628,22 +47980,10 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-34.5 parent: 30 - - uid: 8251 - components: - - type: Transform - pos: -16.5,-28.5 - parent: 30 - - uid: 8300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-39.5 - parent: 30 - - uid: 9047 + - uid: 9060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-36.5 + pos: 4.095898,-45.486774 parent: 30 - uid: 9126 components: @@ -48657,20 +47997,28 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-27.5 parent: 30 - - uid: 9446 + - uid: 9677 components: - type: Transform - pos: -23.5,-40.5 + pos: 2.8055086,-45.39959 parent: 30 - - uid: 11304 + - uid: 9964 components: - type: Transform - pos: -16.5,-43.5 + rot: 3.141592653589793 rad + pos: -8.548677,-35.341038 parent: 30 - - uid: 11305 + - uid: 10095 components: - type: Transform - pos: 1.5,-43.5 + rot: -1.5707963267948966 rad + pos: -16.516525,-31.38681 + parent: 30 + - uid: 10764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.450798,-48.444862 parent: 30 - uid: 11569 components: @@ -48718,12 +48066,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,12.5 parent: 30 - - uid: 12831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,12.5 - parent: 30 - uid: 16157 components: - type: Transform @@ -48740,6 +48082,11 @@ entities: - type: Transform pos: -60.5,44.5 parent: 30 + - uid: 18995 + components: + - type: Transform + pos: -24.534996,-43.467594 + parent: 30 - uid: 20274 components: - type: Transform @@ -48781,20 +48128,19 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,20.5 parent: 30 - - uid: 22834 +- proto: ChairOfficeLight + entities: + - uid: 318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-62.5 + pos: 18.503437,14.498728 parent: 30 - - uid: 22837 + - uid: 334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-58.5 + rot: 1.5707963267948966 rad + pos: -66.47906,-63.39059 parent: 30 -- proto: ChairOfficeLight - entities: - uid: 2111 components: - type: Transform @@ -48894,6 +48240,12 @@ entities: rot: 3.141592653589793 rad pos: 18.5,23.5 parent: 30 + - uid: 14048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.504675,15.6658 + parent: 30 - proto: ChairWood entities: - uid: 562 @@ -48979,6 +48331,24 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,40.5 parent: 30 + - uid: 10229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.447754,-64.514534 + parent: 30 + - uid: 10230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.457657,-64.514534 + parent: 30 + - uid: 10232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.427956,-65.45017 + parent: 30 - uid: 13673 components: - type: Transform @@ -49141,12 +48511,6 @@ entities: rot: -1.5707963267948966 rad pos: -81.5,-44.5 parent: 30 - - uid: 17789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-63.5 - parent: 30 - uid: 18078 components: - type: Transform @@ -49162,16 +48526,6 @@ entities: - type: Transform pos: -58.5,-48.5 parent: 30 - - uid: 19422 - components: - - type: Transform - pos: -60.5,-66.5 - parent: 30 - - uid: 19423 - components: - - type: Transform - pos: -60.5,-64.5 - parent: 30 - uid: 19464 components: - type: Transform @@ -49539,29 +48893,23 @@ entities: - 0 - proto: ClosetChefFilled entities: - - uid: 64 + - uid: 18188 components: - type: Transform - pos: -17.5,5.5 + pos: -16.5,5.5 + parent: 30 +- proto: ClosetEmergency + entities: + - uid: 9869 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 30 + - uid: 13975 + components: + - type: Transform + pos: -15.5,-50.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetEmergencyFilledRandom entities: - uid: 893 @@ -49758,29 +49106,11 @@ entities: - type: Transform pos: -37.5,-5.5 parent: 30 - - uid: 11267 + - uid: 11456 components: - type: Transform - pos: -18.5,-51.5 + pos: -52.5,37.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11750 components: - type: Transform @@ -49827,6 +49157,16 @@ entities: - 0 - 0 - 0 + - uid: 12817 + components: + - type: Transform + pos: -53.5,-65.5 + parent: 30 + - uid: 14049 + components: + - type: Transform + pos: 14.5,10.5 + parent: 30 - uid: 15549 components: - type: Transform @@ -50034,29 +49374,11 @@ entities: - 0 - 0 - 0 - - uid: 18785 + - uid: 19242 components: - type: Transform - pos: -67.5,-65.5 + pos: -13.5,-35.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 19394 components: - type: Transform @@ -50154,52 +49476,6 @@ entities: - 0 - 0 - 0 - - uid: 22654 - components: - - type: Transform - pos: -23.5,-57.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 22840 - components: - - type: Transform - pos: -27.5,-57.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetFireFilled entities: - uid: 1277 @@ -50294,6 +49570,11 @@ entities: - 0 - 0 - 0 + - uid: 9067 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 30 - uid: 9242 components: - type: Transform @@ -50340,75 +49621,21 @@ entities: - 0 - 0 - 0 - - uid: 9996 + - uid: 10562 components: - type: Transform - pos: -4.5,-43.5 + pos: 1.5,-43.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9997 + - uid: 11069 components: - type: Transform - pos: -5.5,-43.5 + pos: 3.5,-37.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10094 + - uid: 11285 components: - type: Transform - pos: 3.5,-39.5 + pos: -6.5,-38.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11752 components: - type: Transform @@ -50432,29 +49659,6 @@ entities: - 0 - 0 - 0 - - uid: 12771 - components: - - type: Transform - pos: 18.5,16.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13340 components: - type: Transform @@ -50524,33 +49728,15 @@ entities: - 0 - 0 - 0 - - uid: 22224 + - uid: 17726 components: - type: Transform - pos: 33.5,20.5 + pos: 13.5,12.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 22841 + - uid: 22224 components: - type: Transform - pos: -25.5,-57.5 + pos: 33.5,20.5 parent: 30 - type: EntityStorage air: @@ -50893,102 +50079,30 @@ entities: - 0 - proto: ClosetRadiationSuitFilled entities: - - uid: 9993 + - uid: 9058 components: - type: Transform - pos: -1.5,-43.5 + pos: 4.5,-43.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9994 + - uid: 9246 components: - type: Transform - pos: -2.5,-43.5 + pos: 3.5,-43.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9995 + - uid: 10049 components: - type: Transform - pos: -3.5,-43.5 + pos: -15.5,-48.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11246 + - uid: 11062 components: - type: Transform - pos: -1.5,-35.5 + pos: -15.5,-46.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12770 + - uid: 11246 components: - type: Transform - pos: 17.5,16.5 + pos: -1.5,-35.5 parent: 30 - type: EntityStorage air: @@ -51031,52 +50145,11 @@ entities: - 0 - 0 - 0 - - uid: 21459 - components: - - type: Transform - pos: 0.5,-37.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21460 + - uid: 14333 components: - type: Transform - pos: 2.5,-37.5 + pos: 12.5,12.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetSteelBase entities: - uid: 7040 @@ -51141,29 +50214,6 @@ entities: - 0 - 0 - 0 - - uid: 16172 - components: - - type: Transform - pos: 52.5,24.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16213 components: - type: Transform @@ -51287,22 +50337,24 @@ entities: - type: Transform pos: -32.460716,58.62153 parent: 30 -- proto: ClothingBeltUtilityFilled +- proto: ClothingBeltUtilityEngineering entities: - - uid: 1630 + - uid: 8298 components: - type: Transform - pos: -28.53513,29.598625 + pos: -5.4889383,-38.35511 parent: 30 - - uid: 8337 + - uid: 11172 components: - type: Transform - pos: -4.5536795,-38.356297 + pos: -9.825792,-47.53879 parent: 30 - - uid: 11334 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 1630 components: - type: Transform - pos: -17.525967,-28.59756 + pos: -28.53513,29.598625 parent: 30 - proto: ClothingEyesEyepatch entities: @@ -51333,10 +50385,10 @@ entities: - type: Transform pos: 24.515018,11.567955 parent: 30 - - uid: 19524 + - uid: 18355 components: - type: Transform - pos: -57.565453,-65.51947 + pos: -58.808327,-65.48881 parent: 30 - uid: 19696 components: @@ -51378,31 +50430,16 @@ entities: parent: 30 - proto: ClothingEyesGlassesMeson entities: - - uid: 9437 - components: - - type: Transform - pos: -23.481958,-39.312622 - parent: 30 - - uid: 9438 + - uid: 9370 components: - type: Transform - pos: -23.481958,-39.468872 + pos: -2.4337187,-46.09784 parent: 30 - uid: 9440 components: - type: Transform pos: 5.538602,-23.326946 parent: 30 - - uid: 9618 - components: - - type: Transform - pos: -18.387093,-35.233547 - parent: 30 - - uid: 10009 - components: - - type: Transform - pos: -13.542964,-45.357754 - parent: 30 - uid: 22447 components: - type: Transform @@ -51427,27 +50464,27 @@ entities: parent: 30 - proto: ClothingEyesGlassesThermal entities: - - uid: 9441 + - uid: 9397 components: - type: Transform - pos: 5.522977,-23.530071 + pos: -2.5034692,-46.307095 parent: 30 - - uid: 10010 + - uid: 9441 components: - type: Transform - pos: -13.542964,-45.170254 + pos: 5.522977,-23.530071 parent: 30 - proto: ClothingEyesHudDiagnostic entities: - - uid: 11291 + - uid: 11115 components: - type: Transform - pos: -15.509655,-44.429184 + pos: -9.615068,-41.346893 parent: 30 - - uid: 11292 + - uid: 11116 components: - type: Transform - pos: -15.509655,-44.241684 + pos: -9.388378,-41.503834 parent: 30 - proto: ClothingEyesHudSecurity entities: @@ -51506,10 +50543,10 @@ entities: - type: Transform pos: -29.37888,29.583 parent: 30 - - uid: 9444 + - uid: 19401 components: - type: Transform - pos: -24.364544,-39.42136 + pos: -24.731133,-50.435394 parent: 30 - proto: ClothingHandsGlovesFingerless entities: @@ -51862,20 +50899,10 @@ entities: - type: Transform pos: 16.616007,29.472477 parent: 30 - - uid: 7751 - components: - - type: Transform - pos: -4.5693045,-38.59067 - parent: 30 - - uid: 7771 - components: - - type: Transform - pos: -4.3505545,-38.46567 - parent: 30 - - uid: 11337 + - uid: 8295 components: - type: Transform - pos: -17.479092,-30.706936 + pos: -5.4715004,-38.529488 parent: 30 - uid: 18177 components: @@ -51929,10 +50956,10 @@ entities: parent: 30 - proto: ClothingNeckCloakTrans entities: - - uid: 18360 + - uid: 3344 components: - type: Transform - pos: -64.42011,-67.461174 + pos: -56.501534,-67.426544 parent: 30 - proto: ClothingNeckHeadphones entities: @@ -51955,6 +50982,11 @@ entities: parent: 30 - proto: ClothingNeckScarfStripedGreen entities: + - uid: 3360 + components: + - type: Transform + pos: -66.40864,-64.41052 + parent: 30 - uid: 16211 components: - type: Transform @@ -51965,11 +50997,6 @@ entities: - type: Transform pos: -38.49321,0.5225295 parent: 30 - - uid: 19430 - components: - - type: Transform - pos: -57.52941,-67.45332 - parent: 30 - uid: 21488 components: - type: Transform @@ -52220,15 +51247,15 @@ entities: parent: 30 - proto: ClothingOuterVestHazard entities: - - uid: 11335 + - uid: 11258 components: - type: Transform - pos: -17.557217,-31.269436 + pos: -8.974306,-47.528893 parent: 30 - - uid: 11336 + - uid: 11262 components: - type: Transform - pos: -17.385342,-31.456936 + pos: -9.241632,-47.33087 parent: 30 - proto: ClothingOuterVestWeb entities: @@ -52291,10 +51318,10 @@ entities: - type: Transform pos: -3.4180164,22.487759 parent: 30 - - uid: 11268 + - uid: 4895 components: - type: Transform - pos: -16.51538,-50.461685 + pos: -19.595419,-50.39677 parent: 30 - proto: ClothingShoesBootsPerformer entities: @@ -52670,10 +51697,10 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-16.5 parent: 30 - - uid: 9588 + - uid: 9407 components: - type: Transform - pos: -18.5,-34.5 + pos: -8.5,-33.5 parent: 30 - uid: 9673 components: @@ -52686,17 +51713,23 @@ entities: - type: Transform pos: -42.5,-11.5 parent: 30 - - uid: 12854 + - uid: 14359 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,10.5 + pos: 17.5,10.5 parent: 30 - - uid: 12929 + - uid: 14509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,10.5 + rot: 3.141592653589793 rad + pos: -66.5,-65.5 + parent: 30 + - uid: 14524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-65.5 parent: 30 - uid: 15363 components: @@ -52792,6 +51825,12 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,31.5 parent: 30 + - uid: 18544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,10.5 + parent: 30 - uid: 19463 components: - type: Transform @@ -52879,12 +51918,6 @@ entities: - type: Transform pos: -61.5,-20.5 parent: 30 - - uid: 22806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-58.5 - parent: 30 - proto: ComputerAnalysisConsole entities: - uid: 15282 @@ -53000,11 +52033,11 @@ entities: - type: Transform pos: -14.5,-14.5 parent: 30 - - uid: 22804 + - uid: 9596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-62.5 + rot: 3.141592653589793 rad + pos: -16.5,-32.5 parent: 30 - proto: ComputerCriminalRecords entities: @@ -53059,11 +52092,6 @@ entities: parent: 30 - proto: ComputerFrame entities: - - uid: 10213 - components: - - type: Transform - pos: -22.5,-68.5 - parent: 30 - uid: 20279 components: - type: Transform @@ -53142,10 +52170,23 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,43.5 parent: 30 - - uid: 11271 + - uid: 8525 components: - type: Transform - pos: -7.5,-35.5 + rot: 1.5707963267948966 rad + pos: -9.5,-33.5 + parent: 30 + - uid: 10200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-44.5 + parent: 30 + - uid: 10589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-45.5 parent: 30 - proto: ComputerRadar entities: @@ -53156,12 +52197,6 @@ entities: parent: 30 - proto: ComputerResearchAndDevelopment entities: - - uid: 490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 30 - uid: 5816 components: - type: Transform @@ -53227,10 +52262,11 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,44.5 parent: 30 - - uid: 11270 + - uid: 7225 components: - type: Transform - pos: -5.5,-38.5 + rot: -1.5707963267948966 rad + pos: -6.5,-45.5 parent: 30 - uid: 15966 components: @@ -53278,12 +52314,6 @@ entities: - type: Transform pos: -30.5,49.5 parent: 30 - - uid: 22805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-63.5 - parent: 30 - proto: ComputerSurveillanceCameraMonitor entities: - uid: 1073 @@ -53329,10 +52359,11 @@ entities: parent: 30 - proto: ComputerTechnologyDiskTerminal entities: - - uid: 12814 + - uid: 17885 components: - type: Transform - pos: 20.5,12.5 + rot: 3.141592653589793 rad + pos: 20.5,10.5 parent: 30 - proto: ComputerTelevision entities: @@ -53343,25 +52374,25 @@ entities: parent: 30 - proto: ContainmentFieldGenerator entities: - - uid: 9413 + - uid: 18859 components: - type: Transform - pos: -23.5,-49.5 + pos: -18.5,-35.5 parent: 30 - - uid: 9414 + - uid: 19414 components: - type: Transform - pos: -23.5,-50.5 + pos: -17.5,-34.5 parent: 30 - - uid: 9415 + - uid: 19417 components: - type: Transform - pos: -22.5,-50.5 + pos: -17.5,-35.5 parent: 30 - - uid: 9416 + - uid: 19418 components: - type: Transform - pos: -22.5,-49.5 + pos: -18.5,-34.5 parent: 30 - proto: ConveyorBelt entities: @@ -53473,54 +52504,57 @@ entities: - type: Transform pos: 35.5,-17.5 parent: 30 - - uid: 14522 + - uid: 12943 components: - type: Transform - pos: 48.5,25.5 + rot: -1.5707963267948966 rad + pos: 53.5,24.5 parent: 30 - - uid: 14523 + - uid: 12944 components: - type: Transform - pos: 48.5,24.5 + rot: -1.5707963267948966 rad + pos: 52.5,24.5 parent: 30 - - uid: 14524 + - uid: 12961 components: - type: Transform - pos: 48.5,23.5 + rot: -1.5707963267948966 rad + pos: 51.5,24.5 parent: 30 - - uid: 14525 + - uid: 12973 components: - type: Transform - pos: 48.5,22.5 + pos: 50.5,24.5 parent: 30 - - uid: 14526 + - uid: 12983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,22.5 + rot: 3.141592653589793 rad + pos: 48.5,23.5 parent: 30 - - uid: 14527 + - uid: 13034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,22.5 + rot: 3.141592653589793 rad + pos: 48.5,24.5 parent: 30 - - uid: 14528 + - uid: 13048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,22.5 + rot: 3.141592653589793 rad + pos: 48.5,25.5 parent: 30 - - uid: 14529 + - uid: 16126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,22.5 + pos: 35.5,-15.5 parent: 30 - - uid: 16126 + - uid: 18374 components: - type: Transform - pos: 35.5,-15.5 + rot: -1.5707963267948966 rad + pos: 50.5,23.5 parent: 30 - proto: CornSeeds entities: @@ -53538,6 +52572,11 @@ entities: parent: 30 - proto: CrateArtifactContainer entities: + - uid: 17790 + components: + - type: Transform + pos: 41.5,12.5 + parent: 30 - uid: 22272 components: - type: Transform @@ -53585,12 +52624,28 @@ entities: - type: Transform pos: 23.5,-3.5 parent: 30 +- proto: CrateEngineeringAMEJar + entities: + - uid: 18993 + components: + - type: Transform + pos: -13.5,-48.5 + parent: 30 + - type: Lock + locked: False - proto: CrateEngineeringAMEShielding entities: - - uid: 9478 + - uid: 19186 components: - type: Transform - pos: -16.5,-32.5 + pos: -13.5,-49.5 + parent: 30 +- proto: CrateEngineeringCableBulk + entities: + - uid: 3520 + components: + - type: Transform + pos: -43.5,19.5 parent: 30 - type: EntityStorage air: @@ -53598,8 +52653,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 2.0214376 - - 7.6044564 + - 3.4430928 + - 12.952587 - 0 - 0 - 0 @@ -53610,12 +52665,24 @@ entities: - 0 - 0 - 0 -- proto: CrateEngineeringCableBulk - entities: - - uid: 3520 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 7840 components: - type: Transform - pos: -43.5,19.5 + pos: -37.5,-3.5 + parent: 30 + - uid: 10765 + components: + - type: Transform + pos: -25.5,-47.5 + parent: 30 + - uid: 16813 + components: + - type: Transform + pos: -54.5,41.5 parent: 30 - type: EntityStorage air: @@ -53639,15 +52706,10 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 7840 - components: - - type: Transform - pos: -37.5,-3.5 - parent: 30 - - uid: 9578 + - uid: 22442 components: - type: Transform - pos: -22.5,-44.5 + pos: 5.5,20.5 parent: 30 - type: EntityStorage air: @@ -53667,14 +52729,19 @@ entities: - 0 - 0 - 0 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 16813 +- proto: CrateEngineeringCableHV + entities: + - uid: 10201 components: - type: Transform - pos: -54.5,41.5 + pos: -5.5,-45.5 + parent: 30 +- proto: CrateEngineeringCableLV + entities: + - uid: 19629 + components: + - type: Transform + pos: -31.5,-38.5 parent: 30 - type: EntityStorage air: @@ -53698,166 +52765,6 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 20467 - components: - - type: Transform - pos: 3.5,-44.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 22442 - components: - - type: Transform - pos: 5.5,20.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringCableHV - entities: - - uid: 10219 - components: - - type: Transform - pos: -10.5,-68.5 - parent: 30 -- proto: CrateEngineeringCableLV - entities: - - uid: 19629 - components: - - type: Transform - pos: -31.5,-38.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage -- proto: CrateEngineeringCableMV - entities: - - uid: 10220 - components: - - type: Transform - pos: -9.5,-68.5 - parent: 30 -- proto: CrateEngineeringSingularityCollector - entities: - - uid: 10216 - components: - - type: Transform - pos: -13.5,-68.5 - parent: 30 - - uid: 10217 - components: - - type: Transform - pos: -12.5,-68.5 - parent: 30 - - uid: 10218 - components: - - type: Transform - pos: -11.5,-68.5 - parent: 30 -- proto: CrateEngineeringSingularityContainment - entities: - - uid: 11299 - components: - - type: Transform - pos: -16.5,-48.5 - parent: 30 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringTeslaCoil - entities: - - uid: 20617 - components: - - type: Transform - pos: -12.5,-69.5 - parent: 30 -- proto: CrateEngineeringTeslaGenerator - entities: - - uid: 9475 - components: - - type: Transform - pos: -13.5,-69.5 - parent: 30 -- proto: CrateEngineeringTeslaGroundingRod - entities: - - uid: 20618 - components: - - type: Transform - pos: -11.5,-69.5 - parent: 30 - proto: CrateFilledSpawner entities: - uid: 3505 @@ -53977,31 +52884,6 @@ entities: - type: Transform pos: 17.5,18.5 parent: 30 -- proto: CrateNPCCow - entities: - - uid: 494 - components: - - type: Transform - pos: -16.5,5.5 - parent: 30 - - type: EntityStorage - air: - volume: 800 - immutable: False - temperature: 293.14987 - moles: - - 13.772371 - - 51.81035 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateNPCHamlet entities: - uid: 4350 @@ -54196,10 +53078,10 @@ entities: available: False - proto: Crowbar entities: - - uid: 12836 + - uid: 18695 components: - type: Transform - pos: 16.474464,12.551813 + pos: 17.494757,13.487526 parent: 30 - proto: CrowbarRed entities: @@ -54223,11 +53105,6 @@ entities: - type: Transform pos: 11.455861,34.475574 parent: 30 - - uid: 11301 - components: - - type: Transform - pos: -18.417063,-48.52035 - parent: 30 - uid: 11738 components: - type: Transform @@ -54349,13 +53226,6 @@ entities: rot: 1.5707963267948966 rad pos: -74.382675,-63.392025 parent: 30 -- proto: DefaultStationBeaconAME - entities: - - uid: 20527 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 30 - proto: DefaultStationBeaconAnomalyGenerator entities: - uid: 20529 @@ -54440,13 +53310,6 @@ entities: - type: Transform pos: 15.5,-4.5 parent: 30 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 20538 - components: - - type: Transform - pos: -18.5,-36.5 - parent: 30 - proto: DefaultStationBeaconChapel entities: - uid: 20543 @@ -54510,6 +53373,13 @@ entities: - type: Transform pos: 1.5,-33.5 parent: 30 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 11455 + components: + - type: Transform + pos: -52.5,36.5 + parent: 30 - proto: DefaultStationBeaconEVAStorage entities: - uid: 20552 @@ -54552,13 +53422,6 @@ entities: - type: Transform pos: -51.5,31.5 parent: 30 -- proto: DefaultStationBeaconLibrary - entities: - - uid: 20544 - components: - - type: Transform - pos: -57.5,-66.5 - parent: 30 - proto: DefaultStationBeaconMedbay entities: - uid: 8026 @@ -54585,13 +53448,6 @@ entities: - type: Transform pos: -48.5,64.5 parent: 30 -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 20562 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 30 - proto: DefaultStationBeaconQMRoom entities: - uid: 20563 @@ -54672,20 +53528,6 @@ entities: - type: Transform pos: 4.5,22.5 parent: 30 -- proto: DefaultStationBeaconTEG - entities: - - uid: 20569 - components: - - type: Transform - pos: -7.5,-51.5 - parent: 30 -- proto: DefaultStationBeaconTelecoms - entities: - - uid: 20570 - components: - - type: Transform - pos: -35.5,-60.5 - parent: 30 - proto: DefaultStationBeaconToolRoom entities: - uid: 20574 @@ -54818,17 +53660,27 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-5.5 parent: 30 - - uid: 8454 + - uid: 11022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-58.5 + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 parent: 30 - - uid: 11022 + - uid: 11283 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-0.5 + pos: -13.5,-39.5 + parent: 30 + - uid: 11284 + components: + - type: Transform + pos: -23.5,-40.5 + parent: 30 + - uid: 12641 + components: + - type: Transform + pos: -24.5,13.5 parent: 30 - uid: 12784 components: @@ -54909,41 +53761,6 @@ entities: - type: Transform pos: 1.5,-29.5 parent: 30 - - uid: 13958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 30 - - uid: 13959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-41.5 - parent: 30 - - uid: 13960 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 30 - - uid: 13977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-40.5 - parent: 30 - - uid: 13978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-42.5 - parent: 30 - - uid: 13979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-42.5 - parent: 30 - uid: 13991 components: - type: Transform @@ -54983,12 +53800,6 @@ entities: - type: Transform pos: -21.5,6.5 parent: 30 - - uid: 14051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,6.5 - parent: 30 - uid: 14054 components: - type: Transform @@ -55127,40 +53938,12 @@ entities: rot: 3.141592653589793 rad pos: 13.5,15.5 parent: 30 - - uid: 14334 - components: - - type: Transform - pos: 23.5,15.5 - parent: 30 - - uid: 14335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,14.5 - parent: 30 - - uid: 14336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,14.5 - parent: 30 - uid: 14348 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,8.5 parent: 30 - - uid: 14357 - components: - - type: Transform - pos: 13.5,12.5 - parent: 30 - - uid: 14358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,11.5 - parent: 30 - uid: 14379 components: - type: Transform @@ -55207,6 +53990,12 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-9.5 parent: 30 + - uid: 14456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 30 - uid: 14465 components: - type: Transform @@ -55261,6 +54050,18 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,34.5 parent: 30 + - uid: 19429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 30 + - uid: 19505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-46.5 + parent: 30 - uid: 19701 components: - type: Transform @@ -55388,17 +54189,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,64.5 parent: 30 - - uid: 22599 - components: - - type: Transform - pos: -17.5,-47.5 - parent: 30 - - uid: 22618 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-58.5 - parent: 30 - proto: DisposalJunction entities: - uid: 6948 @@ -55412,6 +54202,12 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-9.5 parent: 30 + - uid: 9617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 30 - uid: 13878 components: - type: Transform @@ -55424,24 +54220,12 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-6.5 parent: 30 - - uid: 13901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 30 - uid: 13910 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 30 - - uid: 13957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-40.5 - parent: 30 - uid: 14018 components: - type: Transform @@ -55460,6 +54244,12 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,2.5 parent: 30 + - uid: 14047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 30 - uid: 14053 components: - type: Transform @@ -55492,12 +54282,6 @@ entities: - type: Transform pos: -32.5,46.5 parent: 30 - - uid: 14333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,15.5 - parent: 30 - proto: DisposalJunctionFlipped entities: - uid: 7252 @@ -55592,12 +54376,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,16.5 parent: 30 - - uid: 14345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 30 - uid: 14375 components: - type: Transform @@ -55624,8 +54402,44 @@ entities: - type: Transform pos: -35.5,37.5 parent: 30 + - uid: 19427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-42.5 + parent: 30 + - uid: 19765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-39.5 + parent: 30 - proto: DisposalPipe entities: + - uid: 925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-43.5 + parent: 30 + - uid: 1938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-42.5 + parent: 30 + - uid: 3118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-42.5 + parent: 30 + - uid: 3155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-42.5 + parent: 30 - uid: 5299 components: - type: Transform @@ -55856,6 +54670,18 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-9.5 parent: 30 + - uid: 9746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 30 + - uid: 9891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 30 - uid: 11018 components: - type: Transform @@ -55876,12 +54702,42 @@ entities: - type: Transform pos: 4.5,-3.5 parent: 30 + - uid: 11155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-45.5 + parent: 30 + - uid: 11162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-43.5 + parent: 30 + - uid: 11170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-44.5 + parent: 30 + - uid: 11349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-42.5 + parent: 30 - uid: 11447 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-9.5 parent: 30 + - uid: 12297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-42.5 + parent: 30 - uid: 12678 components: - type: Transform @@ -55918,11 +54774,28 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,23.5 parent: 30 - - uid: 13083 + - uid: 12840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-40.5 + pos: 52.5,23.5 + parent: 30 + - uid: 13077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,9.5 + parent: 30 + - uid: 13081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,14.5 + parent: 30 + - uid: 13331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,11.5 parent: 30 - uid: 13800 components: @@ -56406,12 +55279,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-17.5 parent: 30 - - uid: 13903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-18.5 - parent: 30 - uid: 13905 components: - type: Transform @@ -56644,155 +55511,24 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-36.5 parent: 30 - - uid: 13952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-37.5 - parent: 30 - - uid: 13953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-39.5 - parent: 30 - - uid: 13954 + - uid: 13961 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-38.5 parent: 30 - - uid: 13956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-40.5 - parent: 30 - - uid: 13961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-40.5 - parent: 30 - uid: 13962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-40.5 - parent: 30 - - uid: 13963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-40.5 - parent: 30 - - uid: 13964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-40.5 - parent: 30 - - uid: 13965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-40.5 - parent: 30 - - uid: 13966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-40.5 - parent: 30 - - uid: 13967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-40.5 - parent: 30 - - uid: 13968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-40.5 - parent: 30 - - uid: 13969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-40.5 - parent: 30 - - uid: 13970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-40.5 - parent: 30 - - uid: 13971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-40.5 - parent: 30 - - uid: 13972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-40.5 - parent: 30 - - uid: 13973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-40.5 - parent: 30 - - uid: 13974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-40.5 - parent: 30 - - uid: 13975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-40.5 - parent: 30 - - uid: 13976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-40.5 - parent: 30 - - uid: 13981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-43.5 - parent: 30 - - uid: 13982 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-42.5 - parent: 30 - - uid: 13983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-42.5 + pos: 0.5,-39.5 parent: 30 - - uid: 13984 + - uid: 13963 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-42.5 parent: 30 - - uid: 13985 - components: - - type: Transform - pos: -17.5,-41.5 - parent: 30 - uid: 13993 components: - type: Transform @@ -57021,41 +55757,23 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,6.5 parent: 30 - - uid: 14043 - components: - - type: Transform - pos: -25.5,12.5 - parent: 30 - uid: 14044 components: - type: Transform - pos: -25.5,11.5 + rot: 3.141592653589793 rad + pos: -24.5,8.5 parent: 30 - uid: 14045 components: - type: Transform - pos: -25.5,10.5 + rot: 3.141592653589793 rad + pos: -24.5,7.5 parent: 30 - uid: 14046 components: - type: Transform - pos: -25.5,9.5 - parent: 30 - - uid: 14047 - components: - - type: Transform - pos: -25.5,8.5 - parent: 30 - - uid: 14048 - components: - - type: Transform - pos: -25.5,7.5 - parent: 30 - - uid: 14049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,6.5 + rot: 1.5707963267948966 rad + pos: 19.5,15.5 parent: 30 - uid: 14050 components: @@ -58312,18 +57030,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,15.5 parent: 30 - - uid: 14329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 30 - - uid: 14330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 30 - uid: 14331 components: - type: Transform @@ -58384,54 +57090,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,8.5 parent: 30 - - uid: 14359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 30 - - uid: 14360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,11.5 - parent: 30 - - uid: 14361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 30 - - uid: 14362 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,11.5 - parent: 30 - - uid: 14363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,11.5 - parent: 30 - - uid: 14364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,11.5 - parent: 30 - - uid: 14365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,11.5 - parent: 30 - - uid: 14366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,11.5 - parent: 30 - uid: 14367 components: - type: Transform @@ -58715,6 +57373,12 @@ entities: - type: Transform pos: -11.5,-1.5 parent: 30 + - uid: 14436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,10.5 + parent: 30 - uid: 14438 components: - type: Transform @@ -58757,6 +57421,18 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-7.5 parent: 30 + - uid: 14458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,11.5 + parent: 30 + - uid: 14459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 30 - uid: 14463 components: - type: Transform @@ -58910,6 +57586,100 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,37.5 parent: 30 + - uid: 17808 + components: + - type: Transform + pos: 52.5,22.5 + parent: 30 + - uid: 19430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-39.5 + parent: 30 + - uid: 19431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-39.5 + parent: 30 + - uid: 19438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-39.5 + parent: 30 + - uid: 19441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 30 + - uid: 19473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-39.5 + parent: 30 + - uid: 19474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-39.5 + parent: 30 + - uid: 19475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-39.5 + parent: 30 + - uid: 19490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-39.5 + parent: 30 + - uid: 19524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-37.5 + parent: 30 + - uid: 19631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-39.5 + parent: 30 + - uid: 19638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-39.5 + parent: 30 + - uid: 19639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-39.5 + parent: 30 + - uid: 19640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-39.5 + parent: 30 + - uid: 19687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-42.5 + parent: 30 + - uid: 19688 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 30 - uid: 19703 components: - type: Transform @@ -58921,6 +57691,42 @@ entities: - type: Transform pos: -22.5,-35.5 parent: 30 + - uid: 19709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-42.5 + parent: 30 + - uid: 19710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-40.5 + parent: 30 + - uid: 19724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-40.5 + parent: 30 + - uid: 19772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-44.5 + parent: 30 + - uid: 19773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-42.5 + parent: 30 + - uid: 19774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-41.5 + parent: 30 - uid: 22109 components: - type: Transform @@ -59508,104 +58314,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,64.5 parent: 30 - - uid: 22600 - components: - - type: Transform - pos: -17.5,-48.5 - parent: 30 - - uid: 22601 - components: - - type: Transform - pos: -17.5,-49.5 - parent: 30 - - uid: 22602 - components: - - type: Transform - pos: -17.5,-50.5 - parent: 30 - - uid: 22603 - components: - - type: Transform - pos: -17.5,-51.5 - parent: 30 - - uid: 22604 - components: - - type: Transform - pos: -17.5,-52.5 - parent: 30 - - uid: 22605 - components: - - type: Transform - pos: -17.5,-53.5 - parent: 30 - - uid: 22606 - components: - - type: Transform - pos: -17.5,-54.5 - parent: 30 - - uid: 22607 - components: - - type: Transform - pos: -17.5,-55.5 - parent: 30 - - uid: 22608 - components: - - type: Transform - pos: -17.5,-56.5 - parent: 30 - - uid: 22609 - components: - - type: Transform - pos: -17.5,-57.5 - parent: 30 - - uid: 22610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-58.5 - parent: 30 - - uid: 22611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-58.5 - parent: 30 - - uid: 22612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-58.5 - parent: 30 - - uid: 22613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-58.5 - parent: 30 - - uid: 22614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-58.5 - parent: 30 - - uid: 22615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-58.5 - parent: 30 - - uid: 22616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-58.5 - parent: 30 - - uid: 22617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-58.5 - parent: 30 - proto: DisposalTrunk entities: - uid: 356 @@ -59649,6 +58357,18 @@ entities: - type: Transform pos: -19.5,-4.5 parent: 30 + - uid: 9753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 30 + - uid: 11171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-45.5 + parent: 30 - uid: 11226 components: - type: Transform @@ -59667,30 +58387,12 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,0.5 parent: 30 - - uid: 13902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-18.5 - parent: 30 - uid: 13911 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-29.5 parent: 30 - - uid: 13955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-40.5 - parent: 30 - - uid: 13980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-44.5 - parent: 30 - uid: 13986 components: - type: Transform @@ -59714,11 +58416,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,5.5 parent: 30 - - uid: 13990 - components: - - type: Transform - pos: -25.5,13.5 - parent: 30 - uid: 14076 components: - type: Transform @@ -59793,12 +58490,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,14.5 parent: 30 - - uid: 14356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,12.5 - parent: 30 - uid: 14377 components: - type: Transform @@ -59827,15 +58518,21 @@ entities: - type: Transform pos: -7.5,-8.5 parent: 30 + - uid: 14449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,13.5 + parent: 30 - uid: 14453 components: - type: Transform pos: -21.5,-0.5 parent: 30 - - uid: 14534 + - uid: 14460 components: - type: Transform - pos: 52.5,22.5 + pos: 18.5,16.5 parent: 30 - uid: 16078 components: @@ -59848,6 +58545,23 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,37.5 parent: 30 + - uid: 17794 + components: + - type: Transform + pos: 52.5,24.5 + parent: 30 + - uid: 19428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-40.5 + parent: 30 + - uid: 19523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-46.5 + parent: 30 - uid: 19700 components: - type: Transform @@ -59872,6 +58586,11 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-34.5 parent: 30 + - uid: 19781 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 30 - uid: 22187 components: - type: Transform @@ -59890,17 +58609,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,64.5 parent: 30 - - uid: 22598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-47.5 - parent: 30 - - uid: 22619 - components: - - type: Transform - pos: -26.5,-57.5 - parent: 30 - proto: DisposalUnit entities: - uid: 343 @@ -59983,13 +58691,6 @@ entities: - type: Transform pos: -24.5,53.5 parent: 30 - - uid: 5238 - components: - - type: MetaData - name: Telecomms Tube - - type: Transform - pos: -18.5,-47.5 - parent: 30 - uid: 5686 components: - type: Transform @@ -60055,30 +58756,30 @@ entities: - type: Transform pos: -18.5,-22.5 parent: 30 - - uid: 8504 + - uid: 7229 components: - type: Transform - pos: 6.5,-0.5 + pos: -25.5,-40.5 parent: 30 - - uid: 9187 + - uid: 8296 components: - type: Transform - pos: 7.5,-29.5 + pos: -13.5,-45.5 parent: 30 - - uid: 9234 + - uid: 8300 components: - type: Transform - pos: 3.5,-40.5 + pos: -4.5,-38.5 parent: 30 - - uid: 9316 + - uid: 8504 components: - type: Transform - pos: 14.5,-18.5 + pos: 6.5,-0.5 parent: 30 - - uid: 9428 + - uid: 9187 components: - type: Transform - pos: -21.5,-44.5 + pos: 7.5,-29.5 parent: 30 - uid: 10985 components: @@ -60090,11 +58791,6 @@ entities: - type: Transform pos: 19.5,0.5 parent: 30 - - uid: 12772 - components: - - type: Transform - pos: 12.5,12.5 - parent: 30 - uid: 12773 components: - type: Transform @@ -60105,6 +58801,11 @@ entities: - type: Transform pos: 20.5,23.5 parent: 30 + - uid: 13078 + components: + - type: Transform + pos: 18.5,16.5 + parent: 30 - uid: 14217 components: - type: Transform @@ -60120,6 +58821,11 @@ entities: - type: Transform pos: 32.5,39.5 parent: 30 + - uid: 19407 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 30 - uid: 19699 components: - type: Transform @@ -60140,11 +58846,6 @@ entities: - type: Transform pos: 2.5,64.5 parent: 30 - - uid: 22620 - components: - - type: Transform - pos: -26.5,-57.5 - parent: 30 - proto: DisposalYJunction entities: - uid: 6965 @@ -60153,12 +58854,24 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-9.5 parent: 30 + - uid: 13283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 30 - uid: 14077 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 30 + - uid: 19725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-42.5 + parent: 30 - proto: DogBed entities: - uid: 2007 @@ -60205,6 +58918,11 @@ entities: - type: Transform pos: -27.536026,33.455597 parent: 30 + - uid: 15074 + components: + - type: Transform + pos: 3.1450052,20.758205 + parent: 30 - uid: 15078 components: - type: Transform @@ -60215,6 +58933,11 @@ entities: - type: Transform pos: 19.593287,54.456036 parent: 30 + - uid: 15355 + components: + - type: Transform + pos: 3.6301537,20.758205 + parent: 30 - proto: DoorRemoteSecurity entities: - uid: 2429 @@ -60286,10 +59009,10 @@ entities: parent: 30 - proto: DresserChiefEngineerFilled entities: - - uid: 11614 + - uid: 10741 components: - type: Transform - pos: -15.5,-36.5 + pos: -5.5,-33.5 parent: 30 - proto: DresserChiefMedicalOfficerFilled entities: @@ -60598,32 +59321,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 19638 - components: - - type: Transform - pos: -16.5,-38.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 19639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-28.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 19640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-49.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 19654 components: - type: Transform @@ -60799,15 +59496,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 21261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 21331 components: - type: Transform @@ -60834,14 +59522,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 21377 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 21378 components: - type: Transform @@ -60976,80 +59656,27 @@ entities: parent: 30 - proto: Emitter entities: - - uid: 9409 + - uid: 10654 components: - type: Transform - pos: -25.5,-49.5 + pos: -13.5,-60.5 parent: 30 - - uid: 9412 + - uid: 13319 components: - type: Transform - pos: -25.5,-50.5 + rot: 3.141592653589793 rad + pos: -21.5,-74.5 parent: 30 -- proto: EncryptionKeyCargo - entities: - - uid: 22622 - components: - - type: Transform - parent: 22621 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand - entities: - - uid: 22815 - components: - - type: Transform - parent: 22814 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon - entities: - - uid: 22817 - components: - - type: Transform - parent: 22816 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering - entities: - - uid: 22823 - components: - - type: Transform - parent: 22822 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedical - entities: - - uid: 22828 - components: - - type: Transform - parent: 22827 - - type: Physics - canCollide: False -- proto: EncryptionKeyScience - entities: - - uid: 22826 - components: - - type: Transform - parent: 22825 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 22813 + - uid: 18861 components: - type: Transform - parent: 22812 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 22830 + pos: -19.5,-34.5 + parent: 30 + - uid: 19416 components: - type: Transform - parent: 22829 - - type: Physics - canCollide: False + pos: -19.5,-35.5 + parent: 30 - proto: ExosuitFabricator entities: - uid: 12799 @@ -61166,36 +59793,11 @@ entities: - type: Transform pos: -26.5,-42.5 parent: 30 - - uid: 9613 - components: - - type: Transform - pos: -14.5,-35.5 - parent: 30 - uid: 9614 components: - type: Transform pos: -4.5,-27.5 parent: 30 - - uid: 9769 - components: - - type: Transform - pos: -15.5,-49.5 - parent: 30 - - uid: 10013 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 30 - - uid: 10014 - components: - - type: Transform - pos: -14.5,-44.5 - parent: 30 - - uid: 12809 - components: - - type: Transform - pos: 20.5,13.5 - parent: 30 - uid: 15868 components: - type: Transform @@ -61216,6 +59818,11 @@ entities: - type: Transform pos: -51.5,22.5 parent: 30 + - uid: 17685 + components: + - type: Transform + pos: 19.5,16.5 + parent: 30 - uid: 21381 components: - type: Transform @@ -61258,6 +59865,21 @@ entities: parent: 30 - type: FaxMachine name: Law Office + - uid: 10199 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 30 + - type: FaxMachine + destinationAddress: Engineering + name: Engineering + - uid: 14477 + components: + - type: Transform + pos: -62.5,-65.5 + parent: 30 + - type: FaxMachine + destinationAddress: Library - uid: 21701 components: - type: Transform @@ -61300,13 +59922,6 @@ entities: parent: 30 - type: FaxMachine name: Psych - - uid: 22435 - components: - - type: Transform - pos: -57.5,-63.5 - parent: 30 - - type: FaxMachine - name: Library - proto: FaxMachineCaptain entities: - uid: 22275 @@ -61369,6 +59984,11 @@ entities: - type: Transform pos: 2.5,34.5 parent: 30 + - uid: 9490 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 30 - uid: 11017 components: - type: Transform @@ -61376,18 +59996,32 @@ entities: parent: 30 - proto: filingCabinetRandom entities: - - uid: 21370 + - uid: 8234 components: - type: Transform - pos: -21.5,32.5 + pos: -15.5,-31.5 parent: 30 - - uid: 22833 + - uid: 21370 components: - type: Transform - pos: -29.5,-63.5 + pos: -21.5,32.5 parent: 30 - proto: FireAlarm entities: + - uid: 829 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 30 + - type: DeviceList + devices: + - 4353 + - 9301 + - 9300 + - 9769 + - 4241 + - 9782 + - 9618 - uid: 1980 components: - type: Transform @@ -61467,69 +60101,80 @@ entities: devices: - 7960 - 7116 - - uid: 17226 + - uid: 13959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-16.5 + rot: 3.141592653589793 rad + pos: -3.5,-42.5 parent: 30 - type: DeviceList devices: - - 17227 - - 15117 - - 15116 - - 13644 - - uid: 20334 + - 19812 + - 19766 + - 19598 + - 10000 + - 11011 + - 19767 + - 19768 + - 9993 + - 11007 + - 19770 + - 19771 + - 11281 + - 11003 + - uid: 13964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-45.5 + pos: -20.5,-38.5 parent: 30 - type: DeviceList devices: - - 20354 - - 11262 - - 11263 - - 11264 - - uid: 20357 + - 19562 + - 11280 + - 11005 + - 11009 + - 19767 + - 19768 + - 11007 + - 9993 + - uid: 13965 components: - type: Transform - pos: -4.5,-37.5 + rot: -1.5707963267948966 rad + pos: -14.5,-52.5 parent: 30 - type: DeviceList devices: - - 11343 - - 11344 - - 11345 - - 11340 - - 11341 - - 11342 - - 20355 - - uid: 21739 + - 11280 + - 9839 + - 9995 + - uid: 17226 components: - type: Transform - pos: -16.5,-37.5 + rot: 1.5707963267948966 rad + pos: -47.5,-16.5 parent: 30 - type: DeviceList devices: - - 11340 - - 11341 - - 11342 - - 20358 - - uid: 21746 + - 17227 + - 15117 + - 15116 + - 13644 + - uid: 19597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-41.5 + rot: 1.5707963267948966 rad + pos: -0.5,-38.5 parent: 30 - type: DeviceList devices: - - 21745 - - 11343 - - 11344 - - 11345 - - 9305 + - 9999 + - 19812 + - 19766 + - 19598 + - 19806 - 9304 + - 9305 - 9306 - uid: 21748 components: @@ -61545,34 +60190,6 @@ entities: - 8626 - 7731 - 21749 - - uid: 21752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-28.5 - parent: 30 - - type: DeviceList - devices: - - 21753 - - 9302 - - 9303 - - 9301 - - 9300 - - uid: 21758 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 30 - - type: DeviceList - devices: - - 21759 - - 9303 - - 9302 - - 9301 - - 9300 - - 9307 - - 9308 - - 9309 - uid: 21769 components: - type: Transform @@ -62188,13 +60805,11 @@ entities: parent: 30 - type: DeviceList devices: - - 9161 - 12665 - 12664 - 12666 - 12858 - 13391 - - 22056 - uid: 22060 components: - type: Transform @@ -62341,10 +60956,10 @@ entities: - type: Transform pos: 23.339325,-11.410534 parent: 30 - - uid: 18795 + - uid: 12811 components: - type: Transform - pos: -62.63935,-64.45475 + pos: -52.242584,-60.55653 parent: 30 - uid: 20301 components: @@ -62551,24 +61166,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,27.5 parent: 30 - - uid: 11262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-43.5 - parent: 30 - - uid: 11263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-43.5 - parent: 30 - - uid: 11264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-43.5 - parent: 30 - uid: 20347 components: - type: Transform @@ -62603,18 +61200,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-45.5 parent: 30 - - uid: 20361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-62.5 - parent: 30 - - uid: 20362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-62.5 - parent: 30 - uid: 20383 components: - type: Transform @@ -62654,12 +61239,18 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,7.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 22440 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,8.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - proto: FirelockElectronics entities: - uid: 1642 @@ -62672,6 +61263,11 @@ entities: - type: Transform pos: -28.192276,33.564972 parent: 30 + - uid: 14846 + components: + - type: Transform + pos: 2.6400542,20.579987 + parent: 30 - uid: 19627 components: - type: Transform @@ -62947,6 +61543,16 @@ entities: - type: Transform pos: -37.5,35.5 parent: 30 + - uid: 4241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 4842 components: - type: Transform @@ -63257,11 +61863,6 @@ entities: - type: Transform pos: -3.5,-21.5 parent: 30 - - uid: 9161 - components: - - type: Transform - pos: 14.5,13.5 - parent: 30 - uid: 9202 components: - type: Transform @@ -63272,36 +61873,43 @@ entities: - type: Transform pos: 11.5,-30.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 9301 components: - type: Transform pos: 10.5,-30.5 parent: 30 - - uid: 9302 - components: - - type: Transform - pos: 10.5,-26.5 - parent: 30 - - uid: 9303 - components: - - type: Transform - pos: 11.5,-26.5 - parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 9304 components: - type: Transform pos: 1.5,-35.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 19597 - uid: 9305 components: - type: Transform pos: 0.5,-35.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 19597 - uid: 9306 components: - type: Transform pos: 2.5,-35.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 19597 - uid: 9307 components: - type: Transform @@ -63327,11 +61935,50 @@ entities: - type: Transform pos: -0.5,-2.5 parent: 30 + - uid: 9618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 9669 components: - type: Transform pos: -10.5,-8.5 parent: 30 + - uid: 9769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 + - uid: 9782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 + - uid: 9839 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - 13965 - uid: 9914 components: - type: Transform @@ -63342,6 +61989,17 @@ entities: - type: Transform pos: -35.5,-28.5 parent: 30 + - uid: 9993 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - 13957 + - 13959 - uid: 10394 components: - type: Transform @@ -63352,40 +62010,81 @@ entities: - type: Transform pos: -40.5,8.5 parent: 30 - - uid: 11275 + - uid: 11003 components: - type: Transform - pos: 18.5,24.5 + pos: -7.5,-37.5 parent: 30 - - uid: 11340 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - uid: 11005 components: - type: Transform - pos: -14.5,-41.5 + pos: -23.5,-45.5 parent: 30 - - uid: 11341 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - uid: 11007 components: - type: Transform - pos: -14.5,-40.5 + pos: -14.5,-43.5 parent: 30 - - uid: 11342 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - 13957 + - 13959 + - uid: 11009 components: - type: Transform - pos: -14.5,-39.5 + pos: -26.5,-41.5 parent: 30 - - uid: 11343 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - uid: 11011 components: - type: Transform - pos: -0.5,-41.5 + pos: -12.5,-36.5 parent: 30 - - uid: 11344 + - type: DeviceNetwork + deviceLists: + - 13966 + - 13959 + - uid: 11275 components: - type: Transform - pos: -0.5,-40.5 + pos: 18.5,24.5 parent: 30 - - uid: 11345 + - uid: 11280 components: - type: Transform - pos: -0.5,-39.5 + pos: -17.5,-45.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - 13965 + - 13958 + - 13964 + - uid: 11281 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13959 + - uid: 11282 + components: + - type: Transform + pos: -2.5,-36.5 parent: 30 - uid: 11705 components: @@ -63472,21 +62171,39 @@ entities: - type: Transform pos: 21.5,17.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 12665 components: - type: Transform pos: 22.5,17.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 12666 components: - type: Transform pos: 23.5,17.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 12858 components: - type: Transform pos: 30.5,7.5 parent: 30 + - uid: 13073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 13391 components: - type: Transform @@ -63582,6 +62299,24 @@ entities: - type: Transform pos: -52.5,11.5 parent: 30 + - uid: 17724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,16.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - uid: 17912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 18069 components: - type: Transform @@ -63592,16 +62327,118 @@ entities: - type: Transform pos: -74.5,-55.5 parent: 30 + - uid: 18212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - uid: 18601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,11.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 19590 components: - type: Transform pos: -29.5,-37.5 parent: 30 + - uid: 19598 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - 19597 + - uid: 19630 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 30 - uid: 19741 components: - type: Transform pos: -20.5,-25.5 parent: 30 + - uid: 19766 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - 19597 + - uid: 19767 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - 13957 + - 13959 + - uid: 19768 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - 13957 + - 13959 + - uid: 19770 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - uid: 19771 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - uid: 19806 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19597 + - 9996 + - uid: 19812 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - 19597 - uid: 20051 components: - type: Transform @@ -63738,10 +62575,10 @@ entities: - type: Transform pos: -32.45644,29.55175 parent: 30 - - uid: 9445 + - uid: 14828 components: - type: Transform - pos: -23.99604,-39.42414 + pos: -21.50836,-48.326485 parent: 30 - uid: 15978 components: @@ -63803,11 +62640,6 @@ entities: - type: Transform pos: -39.51754,18.309746 parent: 30 - - uid: 22433 - components: - - type: Transform - pos: 0.84980106,-44.601856 - parent: 30 - uid: 22434 components: - type: Transform @@ -63845,6 +62677,22 @@ entities: parent: 30 - type: Fixtures fixtures: {} + - uid: 10592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-47.5 + parent: 30 + - type: Fixtures + fixtures: {} + - uid: 14330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 30 + - type: Fixtures + fixtures: {} - uid: 20458 components: - type: Transform @@ -63873,13 +62721,6 @@ entities: parent: 30 - type: Fixtures fixtures: {} - - uid: 22542 - components: - - type: Transform - pos: 18.5,14.5 - parent: 30 - - type: Fixtures - fixtures: {} - proto: FloorTileItemEighties entities: - uid: 15081 @@ -64084,11 +62925,6 @@ entities: - type: Transform pos: 46.4532,20.604744 parent: 30 - - uid: 16163 - components: - - type: Transform - pos: 52.484413,22.604744 - parent: 30 - proto: FoodBoxDonut entities: - uid: 2168 @@ -64435,19 +63271,19 @@ entities: - uid: 491 components: - type: Transform - pos: -14.547203,7.8102264 + pos: -15.331403,8.303028 parent: 30 - proto: GasAnalyzer entities: - - uid: 9443 + - uid: 9369 components: - type: Transform - pos: 5.410018,-23.577772 + pos: -2.4162815,-45.696774 parent: 30 - - uid: 10011 + - uid: 9443 components: - type: Transform - pos: -13.400943,-44.52121 + pos: 5.410018,-23.577772 parent: 30 - uid: 13344 components: @@ -64470,7 +63306,7 @@ entities: pos: -32.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasMinerCarbonDioxide entities: - uid: 8691 @@ -64565,36 +63401,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,16.5 parent: 30 - - uid: 3125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-57.5 - parent: 30 - - uid: 3126 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-58.5 - parent: 30 - - uid: 3221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-59.5 - parent: 30 - - uid: 7099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-57.5 - parent: 30 - - uid: 7100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-58.5 - parent: 30 - uid: 8566 components: - type: Transform @@ -64650,12 +63456,20 @@ entities: parent: 30 - type: AtmosPipeColor color: '#947507FF' - - uid: 9622 + - uid: 9218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-59.5 + rot: 3.141592653589793 rad + pos: 2.5,-56.5 + parent: 30 + - uid: 9293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-56.5 parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 12869 components: - type: Transform @@ -64674,29 +63488,11 @@ entities: parent: 30 - proto: GasPipeBend entities: - - uid: 866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-59.5 - parent: 30 - - uid: 867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-59.5 - parent: 30 - - uid: 906 + - uid: 64 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-56.5 - parent: 30 - - uid: 916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-59.5 + pos: -53.5,-62.5 parent: 30 - uid: 939 components: @@ -64705,7 +63501,7 @@ entities: pos: -48.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 941 components: - type: Transform @@ -64713,21 +63509,21 @@ entities: pos: -53.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 943 components: - type: Transform pos: -47.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 946 components: - type: Transform pos: -48.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2474 components: - type: Transform @@ -64735,7 +63531,7 @@ entities: pos: -50.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2475 components: - type: Transform @@ -64743,14 +63539,14 @@ entities: pos: -49.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2576 components: - type: Transform pos: -33.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2577 components: - type: Transform @@ -64758,7 +63554,7 @@ entities: pos: -31.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2578 components: - type: Transform @@ -64766,7 +63562,7 @@ entities: pos: -29.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2579 components: - type: Transform @@ -64774,7 +63570,7 @@ entities: pos: -35.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2580 components: - type: Transform @@ -64782,14 +63578,14 @@ entities: pos: -35.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2581 components: - type: Transform pos: -29.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2681 components: - type: Transform @@ -64797,7 +63593,7 @@ entities: pos: -50.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2700 components: - type: Transform @@ -64805,14 +63601,14 @@ entities: pos: -50.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2701 components: - type: Transform pos: -46.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2711 components: - type: Transform @@ -64820,7 +63616,7 @@ entities: pos: -47.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2712 components: - type: Transform @@ -64828,7 +63624,7 @@ entities: pos: -51.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2725 components: - type: Transform @@ -64836,21 +63632,21 @@ entities: pos: -51.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2726 components: - type: Transform pos: -47.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2741 components: - type: Transform pos: -28.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2774 components: - type: Transform @@ -64858,7 +63654,7 @@ entities: pos: -36.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3039 components: - type: Transform @@ -64866,14 +63662,14 @@ entities: pos: -31.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3040 components: - type: Transform pos: -25.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3078 components: - type: Transform @@ -64881,7 +63677,7 @@ entities: pos: -40.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3114 components: - type: Transform @@ -64889,19 +63685,14 @@ entities: pos: -47.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3116 components: - type: Transform pos: -44.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3152 - components: - - type: Transform - pos: -2.5,-56.5 - parent: 30 + color: '#0000FFFF' - uid: 3271 components: - type: Transform @@ -64909,7 +63700,7 @@ entities: pos: -49.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3272 components: - type: Transform @@ -64917,21 +63708,21 @@ entities: pos: -51.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3286 components: - type: Transform pos: -57.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3307 components: - type: Transform pos: -49.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3336 components: - type: Transform @@ -64939,15 +63730,7 @@ entities: pos: -16.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,6.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3356 components: - type: Transform @@ -64955,29 +63738,21 @@ entities: pos: -23.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,12.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 3368 components: - type: Transform pos: -24.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3372 components: - type: Transform pos: -23.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3373 components: - type: Transform @@ -64985,7 +63760,7 @@ entities: pos: -26.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3375 components: - type: Transform @@ -64993,7 +63768,22 @@ entities: pos: -24.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 4141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-62.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4424 + components: + - type: Transform + pos: -24.5,7.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 6148 components: - type: Transform @@ -65001,28 +63791,28 @@ entities: pos: -14.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6158 components: - type: Transform pos: -4.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6198 components: - type: Transform pos: -3.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6200 components: - type: Transform pos: -7.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6201 components: - type: Transform @@ -65030,7 +63820,7 @@ entities: pos: -11.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6202 components: - type: Transform @@ -65038,7 +63828,7 @@ entities: pos: -11.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6203 components: - type: Transform @@ -65046,7 +63836,7 @@ entities: pos: -15.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6250 components: - type: Transform @@ -65054,7 +63844,7 @@ entities: pos: -18.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6251 components: - type: Transform @@ -65062,14 +63852,14 @@ entities: pos: -18.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6255 components: - type: Transform pos: -21.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6260 components: - type: Transform @@ -65077,22 +63867,14 @@ entities: pos: -26.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6262 components: - type: Transform pos: -26.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6789 components: - type: Transform @@ -65104,14 +63886,14 @@ entities: pos: -17.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6936 components: - type: Transform pos: -18.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6961 components: - type: Transform @@ -65119,7 +63901,7 @@ entities: pos: -18.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7001 components: - type: Transform @@ -65138,12 +63920,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-11.5 parent: 30 - - uid: 7098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-59.5 - parent: 30 - uid: 7113 components: - type: Transform @@ -65151,33 +63927,14 @@ entities: pos: -30.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7123 - components: - - type: Transform - pos: 1.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-59.5 - parent: 30 - - uid: 7148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-59.5 - parent: 30 + color: '#0000FFFF' - uid: 7154 components: - type: Transform pos: -30.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7204 components: - type: Transform @@ -65185,29 +63942,7 @@ entities: pos: -34.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7224 - components: - - type: Transform - pos: -3.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7230 - components: - - type: Transform - pos: -9.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0000FFFF' - uid: 7353 components: - type: Transform @@ -65215,14 +63950,14 @@ entities: pos: -19.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7376 components: - type: Transform pos: -5.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7408 components: - type: Transform @@ -65230,29 +63965,13 @@ entities: pos: -19.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7564 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-12.5 parent: 30 - - uid: 7667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 7762 components: - type: Transform @@ -65260,7 +63979,7 @@ entities: pos: -29.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7887 components: - type: Transform @@ -65274,7 +63993,7 @@ entities: pos: -32.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8063 components: - type: Transform @@ -65282,7 +64001,7 @@ entities: pos: -28.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8076 components: - type: Transform @@ -65290,7 +64009,7 @@ entities: pos: -20.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8219 components: - type: Transform @@ -65298,7 +64017,7 @@ entities: pos: -24.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8220 components: - type: Transform @@ -65306,23 +64025,7 @@ entities: pos: -22.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0000FFFF' - uid: 8576 components: - type: Transform @@ -65378,7 +64081,7 @@ entities: pos: 16.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8786 components: - type: Transform @@ -65386,14 +64089,14 @@ entities: pos: 16.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8868 components: - type: Transform pos: 7.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8869 components: - type: Transform @@ -65401,7 +64104,7 @@ entities: pos: 7.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8871 components: - type: Transform @@ -65409,14 +64112,14 @@ entities: pos: 11.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8911 components: - type: Transform pos: 11.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8944 components: - type: Transform @@ -65424,21 +64127,21 @@ entities: pos: 13.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8966 components: - type: Transform pos: 13.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8978 components: - type: Transform pos: 9.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9023 components: - type: Transform @@ -65453,45 +64156,68 @@ entities: pos: -13.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9067 + color: '#0000FFFF' + - uid: 9063 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-52.5 + pos: 6.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#EB9834FF' + - uid: 9213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-55.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9262 components: - type: Transform pos: 21.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9620 + color: '#FF0000FF' + - uid: 9295 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-39.5 + pos: -4.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9675 + color: '#FF0000FF' + - uid: 9428 components: - type: Transform - pos: -2.5,-51.5 + pos: -11.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9683 + color: '#FF0000FF' + - uid: 9436 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-53.5 + pos: -13.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' + - uid: 9653 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' + - uid: 9681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' - uid: 9750 components: - type: Transform @@ -65499,7 +64225,7 @@ entities: pos: -3.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9751 components: - type: Transform @@ -65507,7 +64233,7 @@ entities: pos: -3.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9752 components: - type: Transform @@ -65515,69 +64241,61 @@ entities: pos: -1.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9770 components: - type: Transform pos: 0.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9869 + color: '#FF0000FF' + - uid: 9783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-53.5 + rot: 1.5707963267948966 rad + pos: 6.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9870 + color: '#EB9834FF' + - uid: 9790 components: - type: Transform - pos: 3.5,-49.5 + rot: 3.141592653589793 rad + pos: -5.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9883 + color: '#FF0000FF' + - uid: 9813 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-54.5 + pos: 8.5,-46.5 parent: 30 - type: AtmosPipeColor color: '#EB9834FF' - - uid: 9898 + - uid: 9892 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-46.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-46.5 + pos: -24.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9900 + color: '#0000FFFF' + - uid: 9898 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-38.5 + pos: -22.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9901 + color: '#FF0000FF' + - uid: 9919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-38.5 + pos: -11.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#0000FFFF' - uid: 9983 components: - type: Transform @@ -65585,55 +64303,39 @@ entities: pos: 7.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-39.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11090 + color: '#0000FFFF' + - uid: 10604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-41.5 + rot: 3.141592653589793 rad + pos: -1.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11101 + color: '#0000FFFF' + - uid: 10606 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-29.5 + pos: -12.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11102 + color: '#0000FFFF' + - uid: 10636 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-30.5 + pos: 0.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11117 + color: '#FF0000FF' + - uid: 11130 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-41.5 + pos: -1.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 11167 components: - type: Transform @@ -65649,21 +64351,29 @@ entities: pos: 11.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11191 components: - type: Transform pos: 12.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 11272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11668 components: - type: Transform pos: 34.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11778 components: - type: Transform @@ -65671,14 +64381,14 @@ entities: pos: 30.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11873 components: - type: Transform pos: 33.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11874 components: - type: Transform @@ -65686,14 +64396,14 @@ entities: pos: 5.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11982 components: - type: Transform pos: 21.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12002 components: - type: Transform @@ -65701,7 +64411,7 @@ entities: pos: 33.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12493 components: - type: Transform @@ -65709,7 +64419,7 @@ entities: pos: 9.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12514 components: - type: Transform @@ -65717,7 +64427,7 @@ entities: pos: 21.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12515 components: - type: Transform @@ -65725,14 +64435,14 @@ entities: pos: 23.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12588 components: - type: Transform pos: 26.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12589 components: - type: Transform @@ -65740,7 +64450,7 @@ entities: pos: 26.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12610 components: - type: Transform @@ -65748,7 +64458,7 @@ entities: pos: 27.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12618 components: - type: Transform @@ -65756,7 +64466,22 @@ entities: pos: 26.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 12639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12659 + components: + - type: Transform + pos: -52.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 12750 components: - type: Transform @@ -65769,6 +64494,14 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,11.5 parent: 30 + - uid: 12831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-62.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 12883 components: - type: Transform @@ -65776,7 +64509,7 @@ entities: pos: 21.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12903 components: - type: Transform @@ -65784,7 +64517,7 @@ entities: pos: 43.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12909 components: - type: Transform @@ -65792,7 +64525,7 @@ entities: pos: 42.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12926 components: - type: Transform @@ -65806,14 +64539,14 @@ entities: pos: 23.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12995 components: - type: Transform pos: 18.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12996 components: - type: Transform @@ -65821,7 +64554,7 @@ entities: pos: 18.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13016 components: - type: Transform @@ -65829,7 +64562,7 @@ entities: pos: 12.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13024 components: - type: Transform @@ -65837,7 +64570,7 @@ entities: pos: 12.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13036 components: - type: Transform @@ -65845,7 +64578,7 @@ entities: pos: 21.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13038 components: - type: Transform @@ -65853,14 +64586,14 @@ entities: pos: 17.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13039 components: - type: Transform pos: 17.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13341 components: - type: Transform @@ -65868,14 +64601,14 @@ entities: pos: 40.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13752 components: - type: Transform pos: 31.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13767 components: - type: Transform @@ -65883,7 +64616,7 @@ entities: pos: 31.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13791 components: - type: Transform @@ -65891,7 +64624,23 @@ entities: pos: 29.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 14450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,7.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,12.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 14978 components: - type: Transform @@ -65899,7 +64648,7 @@ entities: pos: 16.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15452 components: - type: Transform @@ -65907,7 +64656,7 @@ entities: pos: 52.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15888 components: - type: Transform @@ -65915,7 +64664,7 @@ entities: pos: 42.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15890 components: - type: Transform @@ -65923,7 +64672,7 @@ entities: pos: 32.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15963 components: - type: Transform @@ -65931,7 +64680,7 @@ entities: pos: 42.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16099 components: - type: Transform @@ -65939,7 +64688,34 @@ entities: pos: 32.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 17723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-62.5 + parent: 30 + - uid: 17729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-65.5 + parent: 30 + - uid: 18071 + components: + - type: Transform + pos: 16.5,12.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 18385 components: - type: Transform @@ -65947,7 +64723,7 @@ entities: pos: -45.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18386 components: - type: Transform @@ -65955,7 +64731,7 @@ entities: pos: -62.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18415 components: - type: Transform @@ -65963,7 +64739,7 @@ entities: pos: -44.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18447 components: - type: Transform @@ -65971,7 +64747,7 @@ entities: pos: -63.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18478 components: - type: Transform @@ -65979,7 +64755,7 @@ entities: pos: -62.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18479 components: - type: Transform @@ -65987,7 +64763,7 @@ entities: pos: -61.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18484 components: - type: Transform @@ -65995,21 +64771,21 @@ entities: pos: -65.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18485 components: - type: Transform pos: -58.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18498 components: - type: Transform pos: -62.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18513 components: - type: Transform @@ -66017,7 +64793,7 @@ entities: pos: -78.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18608 components: - type: Transform @@ -66025,15 +64801,7 @@ entities: pos: -56.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 18612 components: - type: Transform @@ -66041,7 +64809,7 @@ entities: pos: -68.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18613 components: - type: Transform @@ -66049,7 +64817,7 @@ entities: pos: -67.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18621 components: - type: Transform @@ -66057,7 +64825,7 @@ entities: pos: -58.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18648 components: - type: Transform @@ -66065,7 +64833,7 @@ entities: pos: -79.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18661 components: - type: Transform @@ -66073,7 +64841,7 @@ entities: pos: -77.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18743 components: - type: Transform @@ -66081,21 +64849,75 @@ entities: pos: -76.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18763 + color: '#FF0000FF' + - uid: 20642 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,-65.5 + pos: 7.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18779 + color: '#03FCD3FF' + - uid: 20645 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20647 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,-64.5 + pos: -4.5,-52.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20671 + components: + - type: Transform + pos: -1.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-48.5 + parent: 30 + - uid: 20674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-49.5 parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 21262 components: - type: Transform @@ -66103,14 +64925,14 @@ entities: pos: 21.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21269 components: - type: Transform pos: 27.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21270 components: - type: Transform @@ -66118,7 +64940,7 @@ entities: pos: 27.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21986 components: - type: Transform @@ -66126,7 +64948,7 @@ entities: pos: -0.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22264 components: - type: Transform @@ -66134,30 +64956,14 @@ entities: pos: 42.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22266 components: - type: Transform pos: 43.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasPipeFourway entities: - uid: 2101 @@ -66166,91 +64972,91 @@ entities: pos: 32.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2430 components: - type: Transform pos: -36.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2702 components: - type: Transform pos: -48.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2770 components: - type: Transform pos: -36.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2805 components: - type: Transform pos: -10.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2807 components: - type: Transform pos: -3.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2843 components: - type: Transform pos: 8.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2883 components: - type: Transform pos: -31.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2909 components: - type: Transform pos: -36.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2910 components: - type: Transform pos: -34.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2950 components: - type: Transform pos: -1.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2957 components: - type: Transform pos: 5.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2986 components: - type: Transform pos: 10.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7002 components: - type: Transform @@ -66262,14 +65068,14 @@ entities: pos: -29.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7086 components: - type: Transform pos: -34.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7603 components: - type: Transform @@ -66281,105 +65087,105 @@ entities: pos: -28.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8779 components: - type: Transform pos: 10.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8845 components: - type: Transform pos: 11.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8866 components: - type: Transform pos: 5.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8870 components: - type: Transform pos: 13.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8955 components: - type: Transform pos: 11.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11078 + color: '#FF0000FF' + - uid: 10136 components: - type: Transform - pos: -8.5,-39.5 + pos: -12.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11126 + color: '#0000FFFF' + - uid: 10439 components: - type: Transform - pos: -6.5,-41.5 + pos: -6.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11876 components: - type: Transform pos: 21.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11937 components: - type: Transform pos: 20.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12001 components: - type: Transform pos: 30.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12541 components: - type: Transform pos: 21.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12872 components: - type: Transform pos: 23.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12886 components: - type: Transform pos: 21.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13034 + color: '#FF0000FF' + - uid: 14462 components: - type: Transform pos: 21.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasPipeStraight entities: - uid: 239 @@ -66389,7 +65195,7 @@ entities: pos: -50.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 475 components: - type: Transform @@ -66397,12 +65203,7 @@ entities: pos: -16.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 845 - components: - - type: Transform - pos: -9.5,-56.5 - parent: 30 + color: '#FF0000FF' - uid: 874 components: - type: Transform @@ -66410,7 +65211,7 @@ entities: pos: -52.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 875 components: - type: Transform @@ -66418,7 +65219,7 @@ entities: pos: -50.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 877 components: - type: Transform @@ -66426,12 +65227,7 @@ entities: pos: -51.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 908 - components: - - type: Transform - pos: -12.5,-58.5 - parent: 30 + color: '#FF0000FF' - uid: 909 components: - type: Transform @@ -66439,12 +65235,7 @@ entities: pos: -48.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 915 - components: - - type: Transform - pos: -12.5,-57.5 - parent: 30 + color: '#0000FFFF' - uid: 935 components: - type: Transform @@ -66452,7 +65243,7 @@ entities: pos: -47.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 940 components: - type: Transform @@ -66460,7 +65251,7 @@ entities: pos: -46.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 942 components: - type: Transform @@ -66468,28 +65259,28 @@ entities: pos: -49.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 944 components: - type: Transform pos: -48.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 947 components: - type: Transform pos: -45.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 964 components: - type: Transform pos: -44.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1076 components: - type: Transform @@ -66497,7 +65288,7 @@ entities: pos: -47.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1307 components: - type: Transform @@ -66505,7 +65296,7 @@ entities: pos: -52.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1308 components: - type: Transform @@ -66513,14 +65304,14 @@ entities: pos: -51.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1415 components: - type: Transform pos: -47.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1929 components: - type: Transform @@ -66528,14 +65319,14 @@ entities: pos: -31.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2100 components: - type: Transform pos: 32.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2432 components: - type: Transform @@ -66543,7 +65334,7 @@ entities: pos: -36.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2433 components: - type: Transform @@ -66551,7 +65342,7 @@ entities: pos: -36.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2434 components: - type: Transform @@ -66559,7 +65350,7 @@ entities: pos: -36.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2435 components: - type: Transform @@ -66567,7 +65358,7 @@ entities: pos: -36.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2436 components: - type: Transform @@ -66575,7 +65366,7 @@ entities: pos: -34.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2437 components: - type: Transform @@ -66583,7 +65374,7 @@ entities: pos: -34.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2438 components: - type: Transform @@ -66591,7 +65382,7 @@ entities: pos: -36.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2439 components: - type: Transform @@ -66599,7 +65390,7 @@ entities: pos: -34.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2443 components: - type: Transform @@ -66607,7 +65398,7 @@ entities: pos: -35.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2444 components: - type: Transform @@ -66615,7 +65406,7 @@ entities: pos: -36.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2445 components: - type: Transform @@ -66623,7 +65414,7 @@ entities: pos: -37.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2446 components: - type: Transform @@ -66631,7 +65422,7 @@ entities: pos: -38.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2447 components: - type: Transform @@ -66639,7 +65430,7 @@ entities: pos: -39.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2448 components: - type: Transform @@ -66647,7 +65438,7 @@ entities: pos: -37.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2449 components: - type: Transform @@ -66655,7 +65446,7 @@ entities: pos: -38.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2450 components: - type: Transform @@ -66663,7 +65454,7 @@ entities: pos: -39.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2455 components: - type: Transform @@ -66671,7 +65462,7 @@ entities: pos: -40.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2457 components: - type: Transform @@ -66679,7 +65470,7 @@ entities: pos: -40.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2460 components: - type: Transform @@ -66687,7 +65478,7 @@ entities: pos: -42.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2461 components: - type: Transform @@ -66695,7 +65486,7 @@ entities: pos: -44.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2462 components: - type: Transform @@ -66703,7 +65494,7 @@ entities: pos: -43.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2464 components: - type: Transform @@ -66711,7 +65502,7 @@ entities: pos: -46.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2465 components: - type: Transform @@ -66719,7 +65510,7 @@ entities: pos: -47.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2466 components: - type: Transform @@ -66727,7 +65518,7 @@ entities: pos: -48.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2467 components: - type: Transform @@ -66735,7 +65526,7 @@ entities: pos: -43.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2468 components: - type: Transform @@ -66743,7 +65534,7 @@ entities: pos: -44.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2469 components: - type: Transform @@ -66751,7 +65542,7 @@ entities: pos: -45.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2470 components: - type: Transform @@ -66759,7 +65550,7 @@ entities: pos: -46.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2471 components: - type: Transform @@ -66767,7 +65558,7 @@ entities: pos: -47.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2472 components: - type: Transform @@ -66775,7 +65566,7 @@ entities: pos: -48.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2473 components: - type: Transform @@ -66783,105 +65574,105 @@ entities: pos: -49.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2476 components: - type: Transform pos: -49.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2477 components: - type: Transform pos: -49.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2478 components: - type: Transform pos: -50.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2479 components: - type: Transform pos: -50.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2480 components: - type: Transform pos: -50.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2481 components: - type: Transform pos: -50.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2484 components: - type: Transform pos: -41.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2485 components: - type: Transform pos: -41.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2486 components: - type: Transform pos: -42.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2487 components: - type: Transform pos: -42.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2488 components: - type: Transform pos: -42.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2489 components: - type: Transform pos: -42.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2494 components: - type: Transform pos: -36.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2495 components: - type: Transform pos: -36.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2498 components: - type: Transform @@ -66889,7 +65680,7 @@ entities: pos: -34.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2499 components: - type: Transform @@ -66897,7 +65688,7 @@ entities: pos: -34.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2500 components: - type: Transform @@ -66905,7 +65696,7 @@ entities: pos: -34.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2501 components: - type: Transform @@ -66913,7 +65704,7 @@ entities: pos: -34.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2502 components: - type: Transform @@ -66921,7 +65712,7 @@ entities: pos: -36.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2505 components: - type: Transform @@ -66929,7 +65720,7 @@ entities: pos: -36.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2506 components: - type: Transform @@ -66937,7 +65728,7 @@ entities: pos: -36.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2511 components: - type: Transform @@ -66945,7 +65736,7 @@ entities: pos: -34.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2514 components: - type: Transform @@ -66953,7 +65744,7 @@ entities: pos: -32.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2515 components: - type: Transform @@ -66961,7 +65752,7 @@ entities: pos: -31.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2516 components: - type: Transform @@ -66969,7 +65760,7 @@ entities: pos: -31.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2517 components: - type: Transform @@ -66977,7 +65768,7 @@ entities: pos: -31.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2518 components: - type: Transform @@ -66985,7 +65776,7 @@ entities: pos: -33.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2522 components: - type: Transform @@ -66993,7 +65784,7 @@ entities: pos: -31.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2528 components: - type: Transform @@ -67001,7 +65792,7 @@ entities: pos: -34.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2529 components: - type: Transform @@ -67009,7 +65800,7 @@ entities: pos: -35.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2530 components: - type: Transform @@ -67017,7 +65808,7 @@ entities: pos: -36.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2531 components: - type: Transform @@ -67025,7 +65816,7 @@ entities: pos: -37.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2533 components: - type: Transform @@ -67033,7 +65824,7 @@ entities: pos: -39.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2534 components: - type: Transform @@ -67041,7 +65832,7 @@ entities: pos: -32.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2535 components: - type: Transform @@ -67049,7 +65840,7 @@ entities: pos: -33.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2536 components: - type: Transform @@ -67057,7 +65848,7 @@ entities: pos: -34.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2537 components: - type: Transform @@ -67065,7 +65856,7 @@ entities: pos: -35.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2538 components: - type: Transform @@ -67073,7 +65864,7 @@ entities: pos: -36.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2539 components: - type: Transform @@ -67081,7 +65872,7 @@ entities: pos: -37.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2540 components: - type: Transform @@ -67089,7 +65880,7 @@ entities: pos: -38.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2541 components: - type: Transform @@ -67097,7 +65888,7 @@ entities: pos: -39.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2543 components: - type: Transform @@ -67105,7 +65896,7 @@ entities: pos: -40.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2546 components: - type: Transform @@ -67113,7 +65904,7 @@ entities: pos: -38.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2547 components: - type: Transform @@ -67121,7 +65912,7 @@ entities: pos: -40.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2548 components: - type: Transform @@ -67129,7 +65920,7 @@ entities: pos: -38.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2549 components: - type: Transform @@ -67137,7 +65928,7 @@ entities: pos: -38.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2550 components: - type: Transform @@ -67145,49 +65936,49 @@ entities: pos: -40.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2555 components: - type: Transform pos: -33.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2556 components: - type: Transform pos: -33.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2557 components: - type: Transform pos: -33.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2558 components: - type: Transform pos: -31.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2559 components: - type: Transform pos: -31.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2560 components: - type: Transform pos: -31.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2561 components: - type: Transform @@ -67195,7 +65986,7 @@ entities: pos: -32.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2562 components: - type: Transform @@ -67203,7 +65994,7 @@ entities: pos: -31.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2563 components: - type: Transform @@ -67211,7 +66002,7 @@ entities: pos: -30.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2564 components: - type: Transform @@ -67219,7 +66010,7 @@ entities: pos: -29.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2565 components: - type: Transform @@ -67227,7 +66018,7 @@ entities: pos: -28.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2566 components: - type: Transform @@ -67235,7 +66026,7 @@ entities: pos: -27.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2567 components: - type: Transform @@ -67243,7 +66034,7 @@ entities: pos: -26.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2568 components: - type: Transform @@ -67251,7 +66042,7 @@ entities: pos: -30.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2569 components: - type: Transform @@ -67259,7 +66050,7 @@ entities: pos: -29.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2570 components: - type: Transform @@ -67267,7 +66058,7 @@ entities: pos: -28.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2571 components: - type: Transform @@ -67275,7 +66066,7 @@ entities: pos: -27.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2572 components: - type: Transform @@ -67283,7 +66074,7 @@ entities: pos: -26.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2575 components: - type: Transform @@ -67291,7 +66082,7 @@ entities: pos: -33.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2584 components: - type: Transform @@ -67299,7 +66090,7 @@ entities: pos: -29.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2585 components: - type: Transform @@ -67307,7 +66098,7 @@ entities: pos: -35.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2586 components: - type: Transform @@ -67315,7 +66106,7 @@ entities: pos: -35.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2587 components: - type: Transform @@ -67323,7 +66114,7 @@ entities: pos: -35.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2588 components: - type: Transform @@ -67331,7 +66122,7 @@ entities: pos: -29.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2589 components: - type: Transform @@ -67339,7 +66130,7 @@ entities: pos: -29.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2590 components: - type: Transform @@ -67347,7 +66138,7 @@ entities: pos: -30.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2591 components: - type: Transform @@ -67355,91 +66146,91 @@ entities: pos: -34.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2602 components: - type: Transform pos: -46.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2603 components: - type: Transform pos: -48.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2604 components: - type: Transform pos: -48.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2605 components: - type: Transform pos: -48.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2606 components: - type: Transform pos: -44.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2607 components: - type: Transform pos: -44.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2608 components: - type: Transform pos: -44.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2609 components: - type: Transform pos: -42.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2610 components: - type: Transform pos: -40.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2611 components: - type: Transform pos: -40.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2612 components: - type: Transform pos: -40.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2613 components: - type: Transform pos: -38.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2614 components: - type: Transform @@ -67447,7 +66238,7 @@ entities: pos: -35.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2615 components: - type: Transform @@ -67455,7 +66246,7 @@ entities: pos: -36.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2616 components: - type: Transform @@ -67463,7 +66254,7 @@ entities: pos: -37.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2617 components: - type: Transform @@ -67471,7 +66262,7 @@ entities: pos: -39.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2618 components: - type: Transform @@ -67479,7 +66270,7 @@ entities: pos: -40.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2620 components: - type: Transform @@ -67487,7 +66278,7 @@ entities: pos: -43.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2621 components: - type: Transform @@ -67495,7 +66286,7 @@ entities: pos: -44.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2622 components: - type: Transform @@ -67503,7 +66294,7 @@ entities: pos: -45.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2623 components: - type: Transform @@ -67511,7 +66302,7 @@ entities: pos: -37.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2624 components: - type: Transform @@ -67519,7 +66310,7 @@ entities: pos: -38.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2625 components: - type: Transform @@ -67527,7 +66318,7 @@ entities: pos: -39.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2626 components: - type: Transform @@ -67535,7 +66326,7 @@ entities: pos: -41.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2627 components: - type: Transform @@ -67543,7 +66334,7 @@ entities: pos: -42.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2629 components: - type: Transform @@ -67551,7 +66342,7 @@ entities: pos: -45.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2630 components: - type: Transform @@ -67559,7 +66350,7 @@ entities: pos: -46.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2631 components: - type: Transform @@ -67567,7 +66358,7 @@ entities: pos: -47.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2632 components: - type: Transform @@ -67575,7 +66366,7 @@ entities: pos: -46.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2633 components: - type: Transform @@ -67583,7 +66374,7 @@ entities: pos: -46.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2634 components: - type: Transform @@ -67591,7 +66382,7 @@ entities: pos: -46.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2635 components: - type: Transform @@ -67599,7 +66390,7 @@ entities: pos: -46.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2636 components: - type: Transform @@ -67607,7 +66398,7 @@ entities: pos: -48.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2637 components: - type: Transform @@ -67615,7 +66406,7 @@ entities: pos: -48.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2649 components: - type: Transform @@ -67623,7 +66414,7 @@ entities: pos: -48.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2650 components: - type: Transform @@ -67631,7 +66422,7 @@ entities: pos: -48.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2651 components: - type: Transform @@ -67639,7 +66430,7 @@ entities: pos: -46.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2652 components: - type: Transform @@ -67647,7 +66438,7 @@ entities: pos: -46.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2653 components: - type: Transform @@ -67655,7 +66446,7 @@ entities: pos: -48.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2655 components: - type: Transform @@ -67663,7 +66454,7 @@ entities: pos: -46.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2656 components: - type: Transform @@ -67671,7 +66462,7 @@ entities: pos: -46.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2657 components: - type: Transform @@ -67679,7 +66470,7 @@ entities: pos: -46.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2660 components: - type: Transform @@ -67687,7 +66478,7 @@ entities: pos: -48.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2661 components: - type: Transform @@ -67695,7 +66486,7 @@ entities: pos: -48.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2663 components: - type: Transform @@ -67703,7 +66494,7 @@ entities: pos: -48.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2664 components: - type: Transform @@ -67711,7 +66502,7 @@ entities: pos: -46.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2665 components: - type: Transform @@ -67719,7 +66510,7 @@ entities: pos: -46.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2666 components: - type: Transform @@ -67727,7 +66518,7 @@ entities: pos: -48.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2671 components: - type: Transform @@ -67735,7 +66526,7 @@ entities: pos: -49.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2672 components: - type: Transform @@ -67743,7 +66534,7 @@ entities: pos: -47.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2673 components: - type: Transform @@ -67751,7 +66542,7 @@ entities: pos: -48.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2674 components: - type: Transform @@ -67759,7 +66550,7 @@ entities: pos: -49.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2678 components: - type: Transform @@ -67767,7 +66558,7 @@ entities: pos: -47.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2679 components: - type: Transform @@ -67775,7 +66566,7 @@ entities: pos: -48.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2680 components: - type: Transform @@ -67783,7 +66574,7 @@ entities: pos: -49.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2682 components: - type: Transform @@ -67791,7 +66582,7 @@ entities: pos: -50.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2683 components: - type: Transform @@ -67799,7 +66590,7 @@ entities: pos: -46.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2684 components: - type: Transform @@ -67807,7 +66598,7 @@ entities: pos: -46.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2685 components: - type: Transform @@ -67815,7 +66606,7 @@ entities: pos: -46.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2686 components: - type: Transform @@ -67823,7 +66614,7 @@ entities: pos: -50.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2687 components: - type: Transform @@ -67831,77 +66622,77 @@ entities: pos: -50.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2690 components: - type: Transform pos: -50.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2691 components: - type: Transform pos: -46.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2692 components: - type: Transform pos: -46.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2693 components: - type: Transform pos: -46.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2694 components: - type: Transform pos: -46.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2695 components: - type: Transform pos: -46.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2696 components: - type: Transform pos: -50.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2697 components: - type: Transform pos: -50.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2698 components: - type: Transform pos: -50.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2699 components: - type: Transform pos: -50.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2703 components: - type: Transform @@ -67909,7 +66700,7 @@ entities: pos: -49.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2704 components: - type: Transform @@ -67917,7 +66708,7 @@ entities: pos: -47.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2710 components: - type: Transform @@ -67925,7 +66716,7 @@ entities: pos: -48.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2713 components: - type: Transform @@ -67933,7 +66724,7 @@ entities: pos: -49.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2714 components: - type: Transform @@ -67941,63 +66732,63 @@ entities: pos: -50.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2715 components: - type: Transform pos: -47.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2716 components: - type: Transform pos: -51.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2719 components: - type: Transform pos: -47.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2720 components: - type: Transform pos: -51.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2721 components: - type: Transform pos: -51.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2722 components: - type: Transform pos: -51.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2723 components: - type: Transform pos: -47.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2724 components: - type: Transform pos: -47.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2727 components: - type: Transform @@ -68005,7 +66796,7 @@ entities: pos: -50.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2728 components: - type: Transform @@ -68013,7 +66804,7 @@ entities: pos: -49.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2735 components: - type: Transform @@ -68021,7 +66812,7 @@ entities: pos: -32.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2736 components: - type: Transform @@ -68029,7 +66820,7 @@ entities: pos: -31.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2737 components: - type: Transform @@ -68037,7 +66828,7 @@ entities: pos: -30.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2738 components: - type: Transform @@ -68045,7 +66836,7 @@ entities: pos: -29.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2739 components: - type: Transform @@ -68053,7 +66844,7 @@ entities: pos: -30.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2740 components: - type: Transform @@ -68061,154 +66852,154 @@ entities: pos: -29.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2747 components: - type: Transform pos: -36.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2748 components: - type: Transform pos: -36.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2749 components: - type: Transform pos: -36.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2751 components: - type: Transform pos: -36.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2752 components: - type: Transform pos: -36.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2754 components: - type: Transform pos: -36.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2755 components: - type: Transform pos: -36.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2756 components: - type: Transform pos: -36.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2757 components: - type: Transform pos: -36.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2758 components: - type: Transform pos: -36.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2759 components: - type: Transform pos: -36.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2761 components: - type: Transform pos: -36.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2763 components: - type: Transform pos: -36.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2764 components: - type: Transform pos: -36.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2765 components: - type: Transform pos: -36.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2766 components: - type: Transform pos: -36.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2768 components: - type: Transform pos: -36.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2769 components: - type: Transform pos: -36.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2771 components: - type: Transform pos: -36.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2772 components: - type: Transform pos: -36.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2773 components: - type: Transform pos: -36.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2775 components: - type: Transform @@ -68216,7 +67007,7 @@ entities: pos: -35.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2776 components: - type: Transform @@ -68224,7 +67015,7 @@ entities: pos: -34.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2778 components: - type: Transform @@ -68232,7 +67023,7 @@ entities: pos: -32.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2780 components: - type: Transform @@ -68240,7 +67031,7 @@ entities: pos: -30.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2781 components: - type: Transform @@ -68248,7 +67039,7 @@ entities: pos: -29.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2782 components: - type: Transform @@ -68256,7 +67047,7 @@ entities: pos: -28.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2783 components: - type: Transform @@ -68264,7 +67055,7 @@ entities: pos: -27.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2784 components: - type: Transform @@ -68272,7 +67063,7 @@ entities: pos: -26.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2785 components: - type: Transform @@ -68280,7 +67071,7 @@ entities: pos: -25.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2787 components: - type: Transform @@ -68288,7 +67079,7 @@ entities: pos: -23.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2789 components: - type: Transform @@ -68296,7 +67087,7 @@ entities: pos: -22.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2790 components: - type: Transform @@ -68304,7 +67095,7 @@ entities: pos: -20.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2791 components: - type: Transform @@ -68312,7 +67103,7 @@ entities: pos: -19.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2792 components: - type: Transform @@ -68320,7 +67111,7 @@ entities: pos: -18.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2793 components: - type: Transform @@ -68328,7 +67119,7 @@ entities: pos: -17.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2794 components: - type: Transform @@ -68336,7 +67127,7 @@ entities: pos: -16.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2795 components: - type: Transform @@ -68344,7 +67135,7 @@ entities: pos: -15.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2797 components: - type: Transform @@ -68352,7 +67143,7 @@ entities: pos: -13.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2798 components: - type: Transform @@ -68360,7 +67151,7 @@ entities: pos: -12.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2799 components: - type: Transform @@ -68368,7 +67159,7 @@ entities: pos: -11.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2800 components: - type: Transform @@ -68376,7 +67167,7 @@ entities: pos: -10.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2801 components: - type: Transform @@ -68384,7 +67175,7 @@ entities: pos: -9.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2803 components: - type: Transform @@ -68392,7 +67183,7 @@ entities: pos: -7.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2804 components: - type: Transform @@ -68400,7 +67191,7 @@ entities: pos: -5.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2806 components: - type: Transform @@ -68408,7 +67199,7 @@ entities: pos: -4.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2808 components: - type: Transform @@ -68416,7 +67207,7 @@ entities: pos: -1.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2809 components: - type: Transform @@ -68424,7 +67215,7 @@ entities: pos: -2.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2810 components: - type: Transform @@ -68432,7 +67223,7 @@ entities: pos: -0.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2811 components: - type: Transform @@ -68440,7 +67231,7 @@ entities: pos: 0.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2813 components: - type: Transform @@ -68448,7 +67239,7 @@ entities: pos: 2.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2815 components: - type: Transform @@ -68456,7 +67247,7 @@ entities: pos: 4.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2816 components: - type: Transform @@ -68464,7 +67255,7 @@ entities: pos: 5.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2817 components: - type: Transform @@ -68472,7 +67263,7 @@ entities: pos: 6.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2818 components: - type: Transform @@ -68480,7 +67271,7 @@ entities: pos: 7.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2820 components: - type: Transform @@ -68488,7 +67279,7 @@ entities: pos: 8.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2821 components: - type: Transform @@ -68496,7 +67287,7 @@ entities: pos: 8.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2822 components: - type: Transform @@ -68504,7 +67295,7 @@ entities: pos: 8.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2823 components: - type: Transform @@ -68512,7 +67303,7 @@ entities: pos: 8.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2824 components: - type: Transform @@ -68520,7 +67311,7 @@ entities: pos: 8.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2825 components: - type: Transform @@ -68528,7 +67319,7 @@ entities: pos: 8.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2826 components: - type: Transform @@ -68536,7 +67327,7 @@ entities: pos: 8.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2827 components: - type: Transform @@ -68544,7 +67335,7 @@ entities: pos: 8.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2828 components: - type: Transform @@ -68552,7 +67343,7 @@ entities: pos: 8.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2829 components: - type: Transform @@ -68560,7 +67351,7 @@ entities: pos: 8.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2830 components: - type: Transform @@ -68568,7 +67359,7 @@ entities: pos: 8.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2832 components: - type: Transform @@ -68576,7 +67367,7 @@ entities: pos: 8.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2834 components: - type: Transform @@ -68584,7 +67375,7 @@ entities: pos: 8.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2835 components: - type: Transform @@ -68592,7 +67383,7 @@ entities: pos: 8.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2836 components: - type: Transform @@ -68600,7 +67391,7 @@ entities: pos: 8.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2837 components: - type: Transform @@ -68608,7 +67399,7 @@ entities: pos: 8.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2838 components: - type: Transform @@ -68616,7 +67407,7 @@ entities: pos: 8.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2839 components: - type: Transform @@ -68624,7 +67415,7 @@ entities: pos: 8.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2840 components: - type: Transform @@ -68632,7 +67423,7 @@ entities: pos: 8.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2841 components: - type: Transform @@ -68640,7 +67431,7 @@ entities: pos: 8.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2844 components: - type: Transform @@ -68648,7 +67439,7 @@ entities: pos: 7.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2845 components: - type: Transform @@ -68656,7 +67447,7 @@ entities: pos: 6.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2846 components: - type: Transform @@ -68664,7 +67455,7 @@ entities: pos: 5.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2847 components: - type: Transform @@ -68672,7 +67463,7 @@ entities: pos: 4.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2848 components: - type: Transform @@ -68680,7 +67471,7 @@ entities: pos: 3.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2849 components: - type: Transform @@ -68688,7 +67479,7 @@ entities: pos: 2.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2850 components: - type: Transform @@ -68696,7 +67487,7 @@ entities: pos: 1.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2852 components: - type: Transform @@ -68704,7 +67495,7 @@ entities: pos: -0.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2853 components: - type: Transform @@ -68712,7 +67503,7 @@ entities: pos: -1.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2855 components: - type: Transform @@ -68720,7 +67511,7 @@ entities: pos: -3.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2856 components: - type: Transform @@ -68728,7 +67519,7 @@ entities: pos: -5.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2858 components: - type: Transform @@ -68736,7 +67527,7 @@ entities: pos: -6.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2859 components: - type: Transform @@ -68744,7 +67535,7 @@ entities: pos: -7.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2860 components: - type: Transform @@ -68752,7 +67543,7 @@ entities: pos: -8.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2861 components: - type: Transform @@ -68760,7 +67551,7 @@ entities: pos: -9.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2863 components: - type: Transform @@ -68768,7 +67559,7 @@ entities: pos: -12.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2864 components: - type: Transform @@ -68776,7 +67567,7 @@ entities: pos: -11.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2865 components: - type: Transform @@ -68784,7 +67575,7 @@ entities: pos: -13.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2867 components: - type: Transform @@ -68792,7 +67583,7 @@ entities: pos: -15.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2868 components: - type: Transform @@ -68800,7 +67591,7 @@ entities: pos: -16.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2869 components: - type: Transform @@ -68808,7 +67599,7 @@ entities: pos: -17.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2870 components: - type: Transform @@ -68816,7 +67607,7 @@ entities: pos: -18.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2872 components: - type: Transform @@ -68824,7 +67615,7 @@ entities: pos: -20.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2874 components: - type: Transform @@ -68832,7 +67623,7 @@ entities: pos: -22.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2875 components: - type: Transform @@ -68840,7 +67631,7 @@ entities: pos: -23.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2876 components: - type: Transform @@ -68848,7 +67639,7 @@ entities: pos: -24.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2877 components: - type: Transform @@ -68856,7 +67647,7 @@ entities: pos: -25.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2878 components: - type: Transform @@ -68864,7 +67655,7 @@ entities: pos: -26.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2880 components: - type: Transform @@ -68872,7 +67663,7 @@ entities: pos: -28.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2881 components: - type: Transform @@ -68880,7 +67671,7 @@ entities: pos: -29.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2882 components: - type: Transform @@ -68888,7 +67679,7 @@ entities: pos: -30.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2884 components: - type: Transform @@ -68896,7 +67687,7 @@ entities: pos: -33.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2885 components: - type: Transform @@ -68904,7 +67695,7 @@ entities: pos: -32.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2886 components: - type: Transform @@ -68912,7 +67703,7 @@ entities: pos: -34.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2887 components: - type: Transform @@ -68920,161 +67711,161 @@ entities: pos: -35.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2889 components: - type: Transform pos: -34.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2890 components: - type: Transform pos: -34.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2891 components: - type: Transform pos: -34.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2892 components: - type: Transform pos: -34.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2894 components: - type: Transform pos: -34.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2895 components: - type: Transform pos: -34.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2896 components: - type: Transform pos: -34.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2897 components: - type: Transform pos: -34.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2898 components: - type: Transform pos: -34.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2900 components: - type: Transform pos: -34.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2901 components: - type: Transform pos: -34.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2902 components: - type: Transform pos: -34.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2903 components: - type: Transform pos: -34.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2904 components: - type: Transform pos: -34.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2906 components: - type: Transform pos: -34.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2907 components: - type: Transform pos: -34.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2908 components: - type: Transform pos: -34.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2911 components: - type: Transform pos: -34.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2912 components: - type: Transform pos: -34.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2914 components: - type: Transform pos: -34.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2915 components: - type: Transform pos: -34.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2916 components: - type: Transform pos: -34.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2918 components: - type: Transform @@ -69082,7 +67873,7 @@ entities: pos: -33.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2920 components: - type: Transform @@ -69090,7 +67881,7 @@ entities: pos: -31.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2921 components: - type: Transform @@ -69098,7 +67889,7 @@ entities: pos: -30.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2922 components: - type: Transform @@ -69106,7 +67897,7 @@ entities: pos: -29.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2923 components: - type: Transform @@ -69114,7 +67905,7 @@ entities: pos: -28.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2925 components: - type: Transform @@ -69122,7 +67913,7 @@ entities: pos: -26.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2926 components: - type: Transform @@ -69130,7 +67921,7 @@ entities: pos: -25.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2927 components: - type: Transform @@ -69138,7 +67929,7 @@ entities: pos: -24.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2928 components: - type: Transform @@ -69146,7 +67937,7 @@ entities: pos: -23.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2929 components: - type: Transform @@ -69154,7 +67945,7 @@ entities: pos: -22.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2930 components: - type: Transform @@ -69162,7 +67953,7 @@ entities: pos: -21.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2931 components: - type: Transform @@ -69170,7 +67961,7 @@ entities: pos: -20.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2934 components: - type: Transform @@ -69178,7 +67969,7 @@ entities: pos: -16.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2936 components: - type: Transform @@ -69186,7 +67977,7 @@ entities: pos: -15.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2937 components: - type: Transform @@ -69194,7 +67985,7 @@ entities: pos: -14.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2938 components: - type: Transform @@ -69202,7 +67993,7 @@ entities: pos: -13.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2939 components: - type: Transform @@ -69210,7 +68001,7 @@ entities: pos: -12.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2940 components: - type: Transform @@ -69218,7 +68009,7 @@ entities: pos: -11.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2942 components: - type: Transform @@ -69226,7 +68017,7 @@ entities: pos: -9.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2943 components: - type: Transform @@ -69234,7 +68025,7 @@ entities: pos: -8.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2944 components: - type: Transform @@ -69242,7 +68033,7 @@ entities: pos: -7.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2945 components: - type: Transform @@ -69250,7 +68041,7 @@ entities: pos: -6.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2946 components: - type: Transform @@ -69258,7 +68049,7 @@ entities: pos: -5.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2947 components: - type: Transform @@ -69266,7 +68057,7 @@ entities: pos: -4.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2948 components: - type: Transform @@ -69274,7 +68065,7 @@ entities: pos: -3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2949 components: - type: Transform @@ -69282,7 +68073,7 @@ entities: pos: -2.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2951 components: - type: Transform @@ -69290,7 +68081,7 @@ entities: pos: -0.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2952 components: - type: Transform @@ -69298,7 +68089,7 @@ entities: pos: 0.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2953 components: - type: Transform @@ -69306,7 +68097,7 @@ entities: pos: 2.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2954 components: - type: Transform @@ -69314,7 +68105,7 @@ entities: pos: 1.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2955 components: - type: Transform @@ -69322,7 +68113,7 @@ entities: pos: 3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2956 components: - type: Transform @@ -69330,7 +68121,7 @@ entities: pos: 4.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2958 components: - type: Transform @@ -69338,7 +68129,7 @@ entities: pos: 6.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2959 components: - type: Transform @@ -69346,7 +68137,7 @@ entities: pos: 7.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2960 components: - type: Transform @@ -69354,7 +68145,7 @@ entities: pos: 9.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2961 components: - type: Transform @@ -69362,7 +68153,7 @@ entities: pos: 8.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2963 components: - type: Transform @@ -69370,7 +68161,7 @@ entities: pos: 10.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2964 components: - type: Transform @@ -69378,7 +68169,7 @@ entities: pos: 10.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2965 components: - type: Transform @@ -69386,7 +68177,7 @@ entities: pos: 10.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2966 components: - type: Transform @@ -69394,7 +68185,7 @@ entities: pos: 10.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2967 components: - type: Transform @@ -69402,7 +68193,7 @@ entities: pos: 10.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2968 components: - type: Transform @@ -69410,7 +68201,7 @@ entities: pos: 10.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2969 components: - type: Transform @@ -69418,7 +68209,7 @@ entities: pos: 10.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2970 components: - type: Transform @@ -69426,7 +68217,7 @@ entities: pos: 10.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2971 components: - type: Transform @@ -69434,7 +68225,7 @@ entities: pos: 10.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2972 components: - type: Transform @@ -69442,7 +68233,7 @@ entities: pos: 10.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2973 components: - type: Transform @@ -69450,7 +68241,7 @@ entities: pos: 10.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2974 components: - type: Transform @@ -69458,7 +68249,7 @@ entities: pos: 10.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2976 components: - type: Transform @@ -69466,7 +68257,7 @@ entities: pos: 11.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2977 components: - type: Transform @@ -69474,7 +68265,7 @@ entities: pos: 10.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2978 components: - type: Transform @@ -69482,7 +68273,7 @@ entities: pos: 10.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2979 components: - type: Transform @@ -69490,7 +68281,7 @@ entities: pos: 10.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2980 components: - type: Transform @@ -69498,7 +68289,7 @@ entities: pos: 10.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2981 components: - type: Transform @@ -69506,7 +68297,7 @@ entities: pos: 10.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2982 components: - type: Transform @@ -69514,7 +68305,7 @@ entities: pos: 10.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2983 components: - type: Transform @@ -69522,7 +68313,7 @@ entities: pos: 10.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2984 components: - type: Transform @@ -69530,7 +68321,7 @@ entities: pos: 10.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2987 components: - type: Transform @@ -69538,7 +68329,7 @@ entities: pos: 9.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2988 components: - type: Transform @@ -69546,7 +68337,7 @@ entities: pos: 8.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2989 components: - type: Transform @@ -69554,7 +68345,7 @@ entities: pos: 7.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2990 components: - type: Transform @@ -69562,7 +68353,7 @@ entities: pos: 6.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2991 components: - type: Transform @@ -69570,7 +68361,7 @@ entities: pos: 5.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2992 components: - type: Transform @@ -69578,7 +68369,7 @@ entities: pos: 4.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2993 components: - type: Transform @@ -69586,7 +68377,7 @@ entities: pos: 2.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2995 components: - type: Transform @@ -69594,7 +68385,7 @@ entities: pos: 0.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2996 components: - type: Transform @@ -69602,7 +68393,7 @@ entities: pos: 1.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2998 components: - type: Transform @@ -69610,7 +68401,7 @@ entities: pos: -2.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2999 components: - type: Transform @@ -69618,7 +68409,7 @@ entities: pos: -1.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3001 components: - type: Transform @@ -69626,7 +68417,7 @@ entities: pos: -4.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3002 components: - type: Transform @@ -69634,7 +68425,7 @@ entities: pos: -5.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3003 components: - type: Transform @@ -69642,7 +68433,7 @@ entities: pos: -6.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3004 components: - type: Transform @@ -69650,7 +68441,7 @@ entities: pos: -7.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3005 components: - type: Transform @@ -69658,7 +68449,7 @@ entities: pos: -9.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3007 components: - type: Transform @@ -69666,7 +68457,7 @@ entities: pos: -10.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3008 components: - type: Transform @@ -69674,7 +68465,7 @@ entities: pos: -11.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3009 components: - type: Transform @@ -69682,7 +68473,7 @@ entities: pos: -12.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3010 components: - type: Transform @@ -69690,7 +68481,7 @@ entities: pos: -13.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3011 components: - type: Transform @@ -69698,7 +68489,7 @@ entities: pos: -14.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3013 components: - type: Transform @@ -69706,7 +68497,7 @@ entities: pos: -16.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3014 components: - type: Transform @@ -69714,7 +68505,7 @@ entities: pos: -17.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3015 components: - type: Transform @@ -69722,7 +68513,7 @@ entities: pos: -18.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3016 components: - type: Transform @@ -69730,7 +68521,7 @@ entities: pos: -19.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3017 components: - type: Transform @@ -69738,7 +68529,7 @@ entities: pos: -20.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3018 components: - type: Transform @@ -69746,7 +68537,7 @@ entities: pos: -21.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3021 components: - type: Transform @@ -69754,7 +68545,7 @@ entities: pos: -24.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3024 components: - type: Transform @@ -69762,7 +68553,7 @@ entities: pos: -27.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3025 components: - type: Transform @@ -69770,7 +68561,7 @@ entities: pos: -29.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3026 components: - type: Transform @@ -69778,7 +68569,7 @@ entities: pos: -28.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3028 components: - type: Transform @@ -69786,7 +68577,7 @@ entities: pos: -31.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3029 components: - type: Transform @@ -69794,7 +68585,7 @@ entities: pos: -32.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3030 components: - type: Transform @@ -69802,7 +68593,7 @@ entities: pos: -33.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3031 components: - type: Transform @@ -69810,7 +68601,7 @@ entities: pos: -31.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3032 components: - type: Transform @@ -69818,7 +68609,7 @@ entities: pos: -31.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3033 components: - type: Transform @@ -69826,7 +68617,7 @@ entities: pos: -31.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3034 components: - type: Transform @@ -69834,7 +68625,7 @@ entities: pos: -25.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3035 components: - type: Transform @@ -69842,7 +68633,7 @@ entities: pos: -25.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3036 components: - type: Transform @@ -69850,7 +68641,7 @@ entities: pos: -25.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3037 components: - type: Transform @@ -69858,7 +68649,7 @@ entities: pos: -25.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3038 components: - type: Transform @@ -69866,112 +68657,112 @@ entities: pos: -25.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3043 components: - type: Transform pos: -30.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3044 components: - type: Transform pos: -30.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3045 components: - type: Transform pos: -31.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3046 components: - type: Transform pos: -31.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3047 components: - type: Transform pos: -31.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3048 components: - type: Transform pos: -31.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3051 components: - type: Transform pos: -26.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3052 components: - type: Transform pos: -27.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3053 components: - type: Transform pos: -27.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3054 components: - type: Transform pos: -27.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3057 components: - type: Transform pos: -22.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3058 components: - type: Transform pos: -21.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3059 components: - type: Transform pos: -21.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3060 components: - type: Transform pos: -21.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3061 components: - type: Transform pos: -21.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3070 components: - type: Transform @@ -69979,7 +68770,7 @@ entities: pos: -35.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3071 components: - type: Transform @@ -69987,7 +68778,7 @@ entities: pos: -36.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3072 components: - type: Transform @@ -69995,7 +68786,7 @@ entities: pos: -37.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3073 components: - type: Transform @@ -70003,7 +68794,7 @@ entities: pos: -38.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3074 components: - type: Transform @@ -70011,7 +68802,7 @@ entities: pos: -37.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3075 components: - type: Transform @@ -70019,7 +68810,7 @@ entities: pos: -38.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3079 components: - type: Transform @@ -70027,7 +68818,7 @@ entities: pos: -39.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3080 components: - type: Transform @@ -70035,7 +68826,7 @@ entities: pos: -35.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3081 components: - type: Transform @@ -70043,7 +68834,7 @@ entities: pos: -36.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3082 components: - type: Transform @@ -70051,7 +68842,7 @@ entities: pos: -37.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3083 components: - type: Transform @@ -70059,7 +68850,7 @@ entities: pos: -38.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3085 components: - type: Transform @@ -70067,7 +68858,7 @@ entities: pos: -40.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3086 components: - type: Transform @@ -70075,7 +68866,7 @@ entities: pos: -41.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3088 components: - type: Transform @@ -70083,7 +68874,7 @@ entities: pos: -43.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3089 components: - type: Transform @@ -70091,7 +68882,7 @@ entities: pos: -37.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3090 components: - type: Transform @@ -70099,7 +68890,7 @@ entities: pos: -38.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3092 components: - type: Transform @@ -70107,7 +68898,7 @@ entities: pos: -40.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3094 components: - type: Transform @@ -70115,7 +68906,7 @@ entities: pos: -42.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3095 components: - type: Transform @@ -70123,7 +68914,7 @@ entities: pos: -43.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3096 components: - type: Transform @@ -70131,7 +68922,7 @@ entities: pos: -44.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3101 components: - type: Transform @@ -70139,7 +68930,7 @@ entities: pos: -41.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3102 components: - type: Transform @@ -70147,7 +68938,7 @@ entities: pos: -41.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3103 components: - type: Transform @@ -70155,7 +68946,7 @@ entities: pos: -41.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3104 components: - type: Transform @@ -70163,7 +68954,7 @@ entities: pos: -41.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3105 components: - type: Transform @@ -70171,7 +68962,7 @@ entities: pos: -41.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3106 components: - type: Transform @@ -70179,7 +68970,7 @@ entities: pos: -41.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3107 components: - type: Transform @@ -70187,7 +68978,7 @@ entities: pos: -39.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3108 components: - type: Transform @@ -70195,7 +68986,7 @@ entities: pos: -39.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3109 components: - type: Transform @@ -70203,7 +68994,7 @@ entities: pos: -39.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3110 components: - type: Transform @@ -70211,7 +69002,7 @@ entities: pos: -39.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3113 components: - type: Transform @@ -70219,7 +69010,7 @@ entities: pos: -46.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3121 components: - type: Transform @@ -70227,7 +69018,7 @@ entities: pos: -51.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3122 components: - type: Transform @@ -70235,7 +69026,7 @@ entities: pos: -50.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3124 components: - type: Transform @@ -70243,7 +69034,7 @@ entities: pos: -48.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3127 components: - type: Transform @@ -70251,7 +69042,7 @@ entities: pos: -45.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3128 components: - type: Transform @@ -70259,7 +69050,7 @@ entities: pos: -44.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3129 components: - type: Transform @@ -70267,7 +69058,7 @@ entities: pos: -44.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3132 components: - type: Transform @@ -70275,7 +69066,7 @@ entities: pos: -49.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3133 components: - type: Transform @@ -70283,124 +69074,119 @@ entities: pos: -50.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3139 components: - type: Transform pos: -45.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3140 components: - type: Transform pos: -45.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3141 components: - type: Transform pos: -45.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3142 components: - type: Transform pos: -45.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3143 components: - type: Transform pos: -44.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3144 components: - type: Transform pos: -44.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3145 components: - type: Transform pos: -44.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3146 components: - type: Transform pos: -45.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3149 components: - type: Transform pos: -45.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3150 components: - type: Transform pos: -45.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3151 components: - type: Transform pos: -45.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3153 - components: - - type: Transform - pos: -5.5,-56.5 - parent: 30 + color: '#FF0000FF' - uid: 3156 components: - type: Transform pos: -44.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3157 components: - type: Transform pos: -44.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3158 components: - type: Transform pos: -44.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3159 components: - type: Transform pos: -44.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3160 components: - type: Transform pos: -44.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3164 components: - type: Transform @@ -70408,7 +69194,7 @@ entities: pos: -45.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3165 components: - type: Transform @@ -70416,7 +69202,7 @@ entities: pos: -45.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3178 components: - type: Transform @@ -70424,7 +69210,7 @@ entities: pos: -49.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3179 components: - type: Transform @@ -70432,28 +69218,28 @@ entities: pos: -48.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3190 components: - type: Transform pos: -51.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3191 components: - type: Transform pos: -51.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3192 components: - type: Transform pos: -52.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3205 components: - type: Transform @@ -70461,7 +69247,7 @@ entities: pos: -45.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3206 components: - type: Transform @@ -70469,7 +69255,7 @@ entities: pos: -45.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3207 components: - type: Transform @@ -70477,7 +69263,7 @@ entities: pos: -45.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3209 components: - type: Transform @@ -70485,7 +69271,7 @@ entities: pos: -45.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3210 components: - type: Transform @@ -70493,7 +69279,7 @@ entities: pos: -45.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3211 components: - type: Transform @@ -70501,7 +69287,7 @@ entities: pos: -44.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3212 components: - type: Transform @@ -70509,7 +69295,7 @@ entities: pos: -44.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3214 components: - type: Transform @@ -70517,7 +69303,7 @@ entities: pos: -44.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3215 components: - type: Transform @@ -70525,7 +69311,7 @@ entities: pos: -44.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3216 components: - type: Transform @@ -70533,21 +69319,21 @@ entities: pos: -44.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3217 components: - type: Transform pos: -45.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3218 components: - type: Transform pos: -45.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3219 components: - type: Transform @@ -70555,7 +69341,7 @@ entities: pos: -45.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3220 components: - type: Transform @@ -70563,7 +69349,7 @@ entities: pos: -46.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3222 components: - type: Transform @@ -70571,7 +69357,7 @@ entities: pos: -33.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3223 components: - type: Transform @@ -70579,7 +69365,7 @@ entities: pos: -32.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3224 components: - type: Transform @@ -70587,7 +69373,7 @@ entities: pos: -35.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3225 components: - type: Transform @@ -70595,7 +69381,7 @@ entities: pos: -34.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3226 components: - type: Transform @@ -70603,7 +69389,7 @@ entities: pos: -33.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3227 components: - type: Transform @@ -70611,7 +69397,7 @@ entities: pos: -32.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3232 components: - type: Transform @@ -70619,7 +69405,7 @@ entities: pos: -35.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3233 components: - type: Transform @@ -70627,7 +69413,7 @@ entities: pos: -36.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3234 components: - type: Transform @@ -70635,7 +69421,7 @@ entities: pos: -37.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3235 components: - type: Transform @@ -70643,7 +69429,7 @@ entities: pos: -38.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3236 components: - type: Transform @@ -70651,7 +69437,7 @@ entities: pos: -39.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3237 components: - type: Transform @@ -70659,7 +69445,7 @@ entities: pos: -37.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3238 components: - type: Transform @@ -70667,7 +69453,7 @@ entities: pos: -38.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3239 components: - type: Transform @@ -70675,7 +69461,7 @@ entities: pos: -39.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3240 components: - type: Transform @@ -70683,7 +69469,7 @@ entities: pos: -40.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3242 components: - type: Transform @@ -70691,7 +69477,7 @@ entities: pos: -40.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3243 components: - type: Transform @@ -70699,7 +69485,7 @@ entities: pos: -41.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3244 components: - type: Transform @@ -70707,7 +69493,7 @@ entities: pos: -42.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3247 components: - type: Transform @@ -70715,7 +69501,7 @@ entities: pos: -43.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3248 components: - type: Transform @@ -70723,7 +69509,7 @@ entities: pos: -43.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3249 components: - type: Transform @@ -70731,7 +69517,7 @@ entities: pos: -42.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3250 components: - type: Transform @@ -70739,7 +69525,7 @@ entities: pos: -43.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3251 components: - type: Transform @@ -70747,7 +69533,7 @@ entities: pos: -43.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3252 components: - type: Transform @@ -70755,7 +69541,7 @@ entities: pos: -42.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3256 components: - type: Transform @@ -70763,7 +69549,7 @@ entities: pos: -43.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3257 components: - type: Transform @@ -70771,7 +69557,7 @@ entities: pos: -44.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3258 components: - type: Transform @@ -70779,7 +69565,7 @@ entities: pos: -45.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3259 components: - type: Transform @@ -70787,7 +69573,7 @@ entities: pos: -46.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3260 components: - type: Transform @@ -70795,7 +69581,7 @@ entities: pos: -47.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3261 components: - type: Transform @@ -70803,7 +69589,7 @@ entities: pos: -45.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3262 components: - type: Transform @@ -70811,7 +69597,7 @@ entities: pos: -46.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3263 components: - type: Transform @@ -70819,7 +69605,7 @@ entities: pos: -47.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3264 components: - type: Transform @@ -70827,7 +69613,7 @@ entities: pos: -48.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3265 components: - type: Transform @@ -70835,21 +69621,21 @@ entities: pos: -48.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3269 components: - type: Transform pos: -49.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3270 components: - type: Transform pos: -49.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3273 components: - type: Transform @@ -70857,7 +69643,7 @@ entities: pos: -50.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3274 components: - type: Transform @@ -70865,7 +69651,7 @@ entities: pos: -49.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3276 components: - type: Transform @@ -70873,14 +69659,14 @@ entities: pos: -51.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3277 components: - type: Transform pos: -52.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3279 components: - type: Transform @@ -70888,7 +69674,7 @@ entities: pos: -53.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3280 components: - type: Transform @@ -70896,7 +69682,7 @@ entities: pos: -54.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3281 components: - type: Transform @@ -70904,7 +69690,7 @@ entities: pos: -55.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3282 components: - type: Transform @@ -70912,7 +69698,7 @@ entities: pos: -56.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3287 components: - type: Transform @@ -70920,7 +69706,7 @@ entities: pos: -58.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3288 components: - type: Transform @@ -70928,7 +69714,7 @@ entities: pos: -59.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3289 components: - type: Transform @@ -70936,7 +69722,7 @@ entities: pos: -58.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3290 components: - type: Transform @@ -70944,7 +69730,7 @@ entities: pos: -59.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3291 components: - type: Transform @@ -70952,7 +69738,7 @@ entities: pos: -57.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3292 components: - type: Transform @@ -70960,7 +69746,7 @@ entities: pos: -57.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3293 components: - type: Transform @@ -70968,7 +69754,7 @@ entities: pos: -57.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3295 components: - type: Transform @@ -70976,7 +69762,7 @@ entities: pos: -57.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3296 components: - type: Transform @@ -70984,7 +69770,7 @@ entities: pos: -57.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3297 components: - type: Transform @@ -70992,7 +69778,7 @@ entities: pos: -58.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3298 components: - type: Transform @@ -71000,7 +69786,7 @@ entities: pos: -59.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3299 components: - type: Transform @@ -71008,7 +69794,7 @@ entities: pos: -58.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3300 components: - type: Transform @@ -71016,35 +69802,35 @@ entities: pos: -59.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3301 components: - type: Transform pos: -57.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3308 components: - type: Transform pos: -49.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3309 components: - type: Transform pos: -49.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3310 components: - type: Transform pos: -49.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3311 components: - type: Transform @@ -71052,7 +69838,7 @@ entities: pos: -50.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3312 components: - type: Transform @@ -71060,7 +69846,7 @@ entities: pos: -51.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3313 components: - type: Transform @@ -71068,7 +69854,7 @@ entities: pos: -52.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3314 components: - type: Transform @@ -71076,7 +69862,7 @@ entities: pos: -50.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3315 components: - type: Transform @@ -71084,7 +69870,7 @@ entities: pos: -51.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3316 components: - type: Transform @@ -71092,7 +69878,7 @@ entities: pos: -52.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3319 components: - type: Transform @@ -71100,7 +69886,7 @@ entities: pos: -50.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3320 components: - type: Transform @@ -71108,7 +69894,7 @@ entities: pos: -50.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3321 components: - type: Transform @@ -71116,7 +69902,7 @@ entities: pos: -50.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3322 components: - type: Transform @@ -71124,7 +69910,7 @@ entities: pos: -50.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3329 components: - type: Transform @@ -71132,7 +69918,7 @@ entities: pos: -19.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3330 components: - type: Transform @@ -71140,7 +69926,7 @@ entities: pos: -19.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3331 components: - type: Transform @@ -71148,7 +69934,7 @@ entities: pos: -19.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3332 components: - type: Transform @@ -71156,7 +69942,7 @@ entities: pos: -19.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3334 components: - type: Transform @@ -71164,7 +69950,7 @@ entities: pos: -18.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3335 components: - type: Transform @@ -71172,7 +69958,7 @@ entities: pos: -17.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3337 components: - type: Transform @@ -71180,7 +69966,7 @@ entities: pos: -20.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3338 components: - type: Transform @@ -71188,7 +69974,7 @@ entities: pos: -21.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3339 components: - type: Transform @@ -71196,7 +69982,7 @@ entities: pos: -22.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3340 components: - type: Transform @@ -71204,139 +69990,76 @@ entities: pos: -23.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3341 + color: '#0000FFFF' + - uid: 3350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,6.5 + rot: 3.141592653589793 rad + pos: -21.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3342 + color: '#FF0000FF' + - uid: 3351 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,6.5 + rot: 3.141592653589793 rad + pos: -21.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3343 + color: '#FF0000FF' + - uid: 3352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,6.5 + rot: 3.141592653589793 rad + pos: -21.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3345 + color: '#FF0000FF' + - uid: 3354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,7.5 + rot: -1.5707963267948966 rad + pos: -22.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3346 + color: '#FF0000FF' + - uid: 3355 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,8.5 + pos: -23.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,9.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3350 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,6.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,8.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3359 - components: - - type: Transform - pos: -27.5,11.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,12.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 3362 components: - type: Transform pos: -23.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3363 components: - type: Transform pos: -23.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3364 components: - type: Transform pos: -23.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,12.5 + rot: 3.141592653589793 rad + pos: -62.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3366 components: - type: Transform @@ -71344,7 +70067,7 @@ entities: pos: -24.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3367 components: - type: Transform @@ -71352,7 +70075,7 @@ entities: pos: -24.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3369 components: - type: Transform @@ -71360,7 +70083,7 @@ entities: pos: -23.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3370 components: - type: Transform @@ -71368,7 +70091,7 @@ entities: pos: -23.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3371 components: - type: Transform @@ -71376,7 +70099,7 @@ entities: pos: -23.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3374 components: - type: Transform @@ -71384,7 +70107,7 @@ entities: pos: -25.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3378 components: - type: Transform @@ -71392,7 +70115,7 @@ entities: pos: -20.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3379 components: - type: Transform @@ -71400,7 +70123,7 @@ entities: pos: -19.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3380 components: - type: Transform @@ -71408,7 +70131,7 @@ entities: pos: -18.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3382 components: - type: Transform @@ -71416,7 +70139,7 @@ entities: pos: -16.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3383 components: - type: Transform @@ -71424,7 +70147,7 @@ entities: pos: -15.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3384 components: - type: Transform @@ -71432,84 +70155,84 @@ entities: pos: -14.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3385 components: - type: Transform pos: -16.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3386 components: - type: Transform pos: -16.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3387 components: - type: Transform pos: -16.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3389 components: - type: Transform pos: -17.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3390 components: - type: Transform pos: -17.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3391 components: - type: Transform pos: -17.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3392 components: - type: Transform pos: -17.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3393 components: - type: Transform pos: -16.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3394 components: - type: Transform pos: -16.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3395 components: - type: Transform pos: -16.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3396 components: - type: Transform pos: -17.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3402 components: - type: Transform @@ -71517,7 +70240,7 @@ entities: pos: -14.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3403 components: - type: Transform @@ -71525,63 +70248,63 @@ entities: pos: -15.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3411 components: - type: Transform pos: -1.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3412 components: - type: Transform pos: -1.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3413 components: - type: Transform pos: -1.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3414 components: - type: Transform pos: -1.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3415 components: - type: Transform pos: -1.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3416 components: - type: Transform pos: -3.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3417 components: - type: Transform pos: -3.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3418 components: - type: Transform pos: -3.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3425 components: - type: Transform @@ -71589,7 +70312,7 @@ entities: pos: -3.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3426 components: - type: Transform @@ -71597,7 +70320,7 @@ entities: pos: -3.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3427 components: - type: Transform @@ -71605,7 +70328,7 @@ entities: pos: -3.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3428 components: - type: Transform @@ -71613,7 +70336,7 @@ entities: pos: -3.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3429 components: - type: Transform @@ -71621,7 +70344,7 @@ entities: pos: -3.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3430 components: - type: Transform @@ -71629,7 +70352,7 @@ entities: pos: -1.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3431 components: - type: Transform @@ -71637,7 +70360,7 @@ entities: pos: -1.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3432 components: - type: Transform @@ -71645,7 +70368,7 @@ entities: pos: -1.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3433 components: - type: Transform @@ -71653,7 +70376,7 @@ entities: pos: -1.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3434 components: - type: Transform @@ -71661,7 +70384,7 @@ entities: pos: -1.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3435 components: - type: Transform @@ -71669,7 +70392,7 @@ entities: pos: -1.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3436 components: - type: Transform @@ -71677,7 +70400,7 @@ entities: pos: -2.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3437 components: - type: Transform @@ -71685,7 +70408,7 @@ entities: pos: -1.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3438 components: - type: Transform @@ -71693,7 +70416,7 @@ entities: pos: -0.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3439 components: - type: Transform @@ -71701,7 +70424,7 @@ entities: pos: 0.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3440 components: - type: Transform @@ -71709,7 +70432,7 @@ entities: pos: 1.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3441 components: - type: Transform @@ -71717,7 +70440,7 @@ entities: pos: 2.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3443 components: - type: Transform @@ -71725,7 +70448,7 @@ entities: pos: 0.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3444 components: - type: Transform @@ -71733,7 +70456,7 @@ entities: pos: 1.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3445 components: - type: Transform @@ -71741,7 +70464,7 @@ entities: pos: 2.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3446 components: - type: Transform @@ -71749,7 +70472,7 @@ entities: pos: -2.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3447 components: - type: Transform @@ -71757,7 +70480,7 @@ entities: pos: -3.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3448 components: - type: Transform @@ -71765,7 +70488,7 @@ entities: pos: -4.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3449 components: - type: Transform @@ -71773,7 +70496,7 @@ entities: pos: -5.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3450 components: - type: Transform @@ -71781,7 +70504,7 @@ entities: pos: -6.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3451 components: - type: Transform @@ -71789,7 +70512,7 @@ entities: pos: -7.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3453 components: - type: Transform @@ -71797,7 +70520,7 @@ entities: pos: -5.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3454 components: - type: Transform @@ -71805,7 +70528,7 @@ entities: pos: -6.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3455 components: - type: Transform @@ -71813,7 +70536,7 @@ entities: pos: -7.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3456 components: - type: Transform @@ -71821,7 +70544,7 @@ entities: pos: -8.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3457 components: - type: Transform @@ -71829,7 +70552,7 @@ entities: pos: -9.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3462 components: - type: Transform @@ -71837,7 +70560,7 @@ entities: pos: -11.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3463 components: - type: Transform @@ -71845,7 +70568,7 @@ entities: pos: -10.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3464 components: - type: Transform @@ -71853,7 +70576,7 @@ entities: pos: -11.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3465 components: - type: Transform @@ -71861,7 +70584,7 @@ entities: pos: -12.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3466 components: - type: Transform @@ -71869,7 +70592,7 @@ entities: pos: -13.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3467 components: - type: Transform @@ -71877,7 +70600,7 @@ entities: pos: -14.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3468 components: - type: Transform @@ -71885,7 +70608,7 @@ entities: pos: -15.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3470 components: - type: Transform @@ -71893,7 +70616,7 @@ entities: pos: -15.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3471 components: - type: Transform @@ -71901,7 +70624,7 @@ entities: pos: -14.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3472 components: - type: Transform @@ -71909,113 +70632,141 @@ entities: pos: -13.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3473 components: - type: Transform pos: -10.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3474 components: - type: Transform pos: -10.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3475 components: - type: Transform pos: -10.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3476 components: - type: Transform pos: -9.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3477 components: - type: Transform pos: -9.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3478 components: - type: Transform pos: -9.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3487 components: - type: Transform pos: -3.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3488 components: - type: Transform pos: -3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3489 components: - type: Transform pos: -3.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3490 components: - type: Transform pos: -1.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3491 components: - type: Transform pos: -8.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3492 components: - type: Transform pos: -8.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3493 components: - type: Transform pos: 3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3494 components: - type: Transform pos: 3.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4353 + color: '#FF0000FF' + - uid: 3531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-48.5 + pos: -13.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' + - uid: 3583 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3598 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4371 + components: + - type: Transform + pos: -25.5,9.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 4908 components: - type: Transform @@ -72023,21 +70774,21 @@ entities: pos: -26.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5006 components: - type: Transform pos: -19.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5014 components: - type: Transform pos: -19.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5418 components: - type: Transform @@ -72045,7 +70796,7 @@ entities: pos: -47.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5427 components: - type: Transform @@ -72053,7 +70804,7 @@ entities: pos: -53.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 5428 components: - type: Transform @@ -72061,7 +70812,7 @@ entities: pos: -46.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5494 components: - type: Transform @@ -72069,7 +70820,7 @@ entities: pos: -53.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5625 components: - type: Transform @@ -72077,7 +70828,7 @@ entities: pos: -27.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5668 components: - type: Transform @@ -72085,7 +70836,7 @@ entities: pos: -30.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 5841 components: - type: Transform @@ -72099,63 +70850,63 @@ entities: pos: -2.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6114 components: - type: Transform pos: -2.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6115 components: - type: Transform pos: -2.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6116 components: - type: Transform pos: -2.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6117 components: - type: Transform pos: -2.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6118 components: - type: Transform pos: -2.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6119 components: - type: Transform pos: -0.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6120 components: - type: Transform pos: -0.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6121 components: - type: Transform pos: -0.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6124 components: - type: Transform @@ -72163,7 +70914,7 @@ entities: pos: -14.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6125 components: - type: Transform @@ -72171,7 +70922,7 @@ entities: pos: -14.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6126 components: - type: Transform @@ -72179,7 +70930,7 @@ entities: pos: -14.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6127 components: - type: Transform @@ -72187,7 +70938,7 @@ entities: pos: -14.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6128 components: - type: Transform @@ -72195,7 +70946,7 @@ entities: pos: -14.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6129 components: - type: Transform @@ -72203,7 +70954,7 @@ entities: pos: -14.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6130 components: - type: Transform @@ -72211,7 +70962,7 @@ entities: pos: -14.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6131 components: - type: Transform @@ -72219,7 +70970,7 @@ entities: pos: -14.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6133 components: - type: Transform @@ -72227,7 +70978,7 @@ entities: pos: -14.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6134 components: - type: Transform @@ -72235,7 +70986,7 @@ entities: pos: -14.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6135 components: - type: Transform @@ -72243,7 +70994,7 @@ entities: pos: -14.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6136 components: - type: Transform @@ -72251,7 +71002,7 @@ entities: pos: -4.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6137 components: - type: Transform @@ -72259,7 +71010,7 @@ entities: pos: -4.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6138 components: - type: Transform @@ -72267,7 +71018,7 @@ entities: pos: -4.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6139 components: - type: Transform @@ -72275,7 +71026,7 @@ entities: pos: -4.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6141 components: - type: Transform @@ -72283,7 +71034,7 @@ entities: pos: -4.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6142 components: - type: Transform @@ -72291,7 +71042,7 @@ entities: pos: -4.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6143 components: - type: Transform @@ -72299,7 +71050,7 @@ entities: pos: -4.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6144 components: - type: Transform @@ -72307,7 +71058,7 @@ entities: pos: -4.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6145 components: - type: Transform @@ -72315,7 +71066,7 @@ entities: pos: -4.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6146 components: - type: Transform @@ -72323,7 +71074,7 @@ entities: pos: -4.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6147 components: - type: Transform @@ -72331,7 +71082,7 @@ entities: pos: -4.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6149 components: - type: Transform @@ -72339,7 +71090,7 @@ entities: pos: -13.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6150 components: - type: Transform @@ -72347,7 +71098,7 @@ entities: pos: -12.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6152 components: - type: Transform @@ -72355,7 +71106,7 @@ entities: pos: -10.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6154 components: - type: Transform @@ -72363,7 +71114,7 @@ entities: pos: -8.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6155 components: - type: Transform @@ -72371,7 +71122,7 @@ entities: pos: -7.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6156 components: - type: Transform @@ -72379,7 +71130,7 @@ entities: pos: -6.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6157 components: - type: Transform @@ -72387,189 +71138,189 @@ entities: pos: -5.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6159 components: - type: Transform pos: -15.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6160 components: - type: Transform pos: -15.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6161 components: - type: Transform pos: -15.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6162 components: - type: Transform pos: -15.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6163 components: - type: Transform pos: -15.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6164 components: - type: Transform pos: -15.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6165 components: - type: Transform pos: -15.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6166 components: - type: Transform pos: -15.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6167 components: - type: Transform pos: -15.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6168 components: - type: Transform pos: -15.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6169 components: - type: Transform pos: -15.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6171 components: - type: Transform pos: -15.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6173 components: - type: Transform pos: -15.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6174 components: - type: Transform pos: -3.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6175 components: - type: Transform pos: -3.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6176 components: - type: Transform pos: -3.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6177 components: - type: Transform pos: -3.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6178 components: - type: Transform pos: -3.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6180 components: - type: Transform pos: -3.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6181 components: - type: Transform pos: -3.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6182 components: - type: Transform pos: -3.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6183 components: - type: Transform pos: -3.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6184 components: - type: Transform pos: -3.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6186 components: - type: Transform pos: -3.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6187 components: - type: Transform pos: -3.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6188 components: - type: Transform pos: -3.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6189 components: - type: Transform @@ -72577,7 +71328,7 @@ entities: pos: -4.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6190 components: - type: Transform @@ -72585,7 +71336,7 @@ entities: pos: -5.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6191 components: - type: Transform @@ -72593,7 +71344,7 @@ entities: pos: -6.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6192 components: - type: Transform @@ -72601,7 +71352,7 @@ entities: pos: -8.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6194 components: - type: Transform @@ -72609,7 +71360,7 @@ entities: pos: -10.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6195 components: - type: Transform @@ -72617,7 +71368,7 @@ entities: pos: -14.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6196 components: - type: Transform @@ -72625,7 +71376,7 @@ entities: pos: -13.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6197 components: - type: Transform @@ -72633,56 +71384,56 @@ entities: pos: -12.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6206 components: - type: Transform pos: -11.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6207 components: - type: Transform pos: -11.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6208 components: - type: Transform pos: -11.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6209 components: - type: Transform pos: -7.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6210 components: - type: Transform pos: -7.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6211 components: - type: Transform pos: -7.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6212 components: - type: Transform pos: -7.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6215 components: - type: Transform @@ -72690,7 +71441,7 @@ entities: pos: -3.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6216 components: - type: Transform @@ -72698,7 +71449,7 @@ entities: pos: -2.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6217 components: - type: Transform @@ -72706,7 +71457,7 @@ entities: pos: -1.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6218 components: - type: Transform @@ -72714,7 +71465,7 @@ entities: pos: -0.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6219 components: - type: Transform @@ -72722,7 +71473,7 @@ entities: pos: -2.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6220 components: - type: Transform @@ -72730,7 +71481,7 @@ entities: pos: -1.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6221 components: - type: Transform @@ -72738,7 +71489,7 @@ entities: pos: -0.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6226 components: - type: Transform @@ -72746,7 +71497,7 @@ entities: pos: -16.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6227 components: - type: Transform @@ -72754,7 +71505,7 @@ entities: pos: -17.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6228 components: - type: Transform @@ -72762,7 +71513,7 @@ entities: pos: -18.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6230 components: - type: Transform @@ -72770,7 +71521,7 @@ entities: pos: -16.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6231 components: - type: Transform @@ -72778,7 +71529,7 @@ entities: pos: -17.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6232 components: - type: Transform @@ -72786,7 +71537,7 @@ entities: pos: -18.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6233 components: - type: Transform @@ -72794,7 +71545,7 @@ entities: pos: -19.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6235 components: - type: Transform @@ -72802,7 +71553,7 @@ entities: pos: -21.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6236 components: - type: Transform @@ -72810,7 +71561,7 @@ entities: pos: -22.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6237 components: - type: Transform @@ -72818,7 +71569,7 @@ entities: pos: -23.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6238 components: - type: Transform @@ -72826,35 +71577,35 @@ entities: pos: -24.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6241 components: - type: Transform pos: -20.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6242 components: - type: Transform pos: -20.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6243 components: - type: Transform pos: -20.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6244 components: - type: Transform pos: -20.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6247 components: - type: Transform @@ -72862,7 +71613,7 @@ entities: pos: -15.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6248 components: - type: Transform @@ -72870,7 +71621,7 @@ entities: pos: -16.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6249 components: - type: Transform @@ -72878,7 +71629,7 @@ entities: pos: -17.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6253 components: - type: Transform @@ -72886,7 +71637,7 @@ entities: pos: -20.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6256 components: - type: Transform @@ -72894,7 +71645,7 @@ entities: pos: -22.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6257 components: - type: Transform @@ -72902,7 +71653,7 @@ entities: pos: -23.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6258 components: - type: Transform @@ -72910,7 +71661,7 @@ entities: pos: -24.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6259 components: - type: Transform @@ -72918,14 +71669,14 @@ entities: pos: -25.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6263 components: - type: Transform pos: -26.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6264 components: - type: Transform @@ -72933,14 +71684,14 @@ entities: pos: -27.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6267 components: - type: Transform pos: -19.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6681 components: - type: Transform @@ -72948,7 +71699,7 @@ entities: pos: -11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6685 components: - type: Transform @@ -72956,7 +71707,7 @@ entities: pos: -17.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6686 components: - type: Transform @@ -72964,14 +71715,14 @@ entities: pos: -14.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6724 components: - type: Transform pos: -12.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6729 components: - type: Transform @@ -72979,7 +71730,7 @@ entities: pos: -15.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6812 components: - type: Transform @@ -72987,7 +71738,7 @@ entities: pos: -16.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6813 components: - type: Transform @@ -72995,7 +71746,7 @@ entities: pos: -17.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6814 components: - type: Transform @@ -73003,7 +71754,7 @@ entities: pos: -17.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6816 components: - type: Transform @@ -73011,7 +71762,7 @@ entities: pos: -30.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6819 components: - type: Transform @@ -73019,7 +71770,7 @@ entities: pos: -14.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6820 components: - type: Transform @@ -73027,7 +71778,7 @@ entities: pos: -15.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6822 components: - type: Transform @@ -73035,7 +71786,7 @@ entities: pos: -16.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6825 components: - type: Transform @@ -73043,7 +71794,7 @@ entities: pos: -17.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6893 components: - type: Transform @@ -73051,7 +71802,7 @@ entities: pos: -17.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6896 components: - type: Transform @@ -73059,7 +71810,7 @@ entities: pos: -33.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6897 components: - type: Transform @@ -73067,7 +71818,7 @@ entities: pos: -18.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6898 components: - type: Transform @@ -73075,7 +71826,7 @@ entities: pos: -32.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6901 components: - type: Transform @@ -73083,7 +71834,7 @@ entities: pos: -29.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6902 components: - type: Transform @@ -73091,7 +71842,7 @@ entities: pos: -31.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6909 components: - type: Transform @@ -73099,14 +71850,14 @@ entities: pos: -30.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6910 components: - type: Transform pos: -28.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6922 components: - type: Transform @@ -73114,7 +71865,7 @@ entities: pos: -31.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6925 components: - type: Transform @@ -73122,7 +71873,7 @@ entities: pos: -32.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6930 components: - type: Transform @@ -73130,42 +71881,42 @@ entities: pos: -32.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6931 components: - type: Transform pos: -18.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6932 components: - type: Transform pos: -18.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6937 components: - type: Transform pos: -18.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6938 components: - type: Transform pos: -18.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6957 components: - type: Transform pos: -18.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7004 components: - type: Transform @@ -73179,7 +71930,7 @@ entities: pos: -22.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7059 components: - type: Transform @@ -73187,7 +71938,7 @@ entities: pos: -28.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7060 components: - type: Transform @@ -73195,7 +71946,7 @@ entities: pos: -26.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7069 components: - type: Transform @@ -73203,7 +71954,7 @@ entities: pos: -25.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7070 components: - type: Transform @@ -73211,7 +71962,7 @@ entities: pos: -27.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7073 components: - type: Transform @@ -73219,7 +71970,7 @@ entities: pos: -24.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7091 components: - type: Transform @@ -73227,25 +71978,15 @@ entities: pos: -12.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7101 + color: '#FF0000FF' + - uid: 7095 components: - type: Transform - pos: -11.5,-54.5 + rot: -1.5707963267948966 rad + pos: -15.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7103 - components: - - type: Transform - pos: -11.5,-56.5 - parent: 30 - - uid: 7105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-58.5 - parent: 30 + color: '#FF0000FF' - uid: 7117 components: - type: Transform @@ -73253,7 +71994,7 @@ entities: pos: -26.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7118 components: - type: Transform @@ -73261,7 +72002,7 @@ entities: pos: -27.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7150 components: - type: Transform @@ -73269,7 +72010,7 @@ entities: pos: -31.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7152 components: - type: Transform @@ -73277,7 +72018,7 @@ entities: pos: -30.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7153 components: - type: Transform @@ -73285,7 +72026,7 @@ entities: pos: -33.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7157 components: - type: Transform @@ -73293,21 +72034,21 @@ entities: pos: -27.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7203 components: - type: Transform pos: -34.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7205 components: - type: Transform pos: -34.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7212 components: - type: Transform @@ -73315,7 +72056,7 @@ entities: pos: -30.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7213 components: - type: Transform @@ -73323,38 +72064,21 @@ entities: pos: -29.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7216 components: - type: Transform pos: -11.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7229 + color: '#FF0000FF' + - uid: 7223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-49.5 + pos: -22.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7257 components: - type: Transform @@ -73362,7 +72086,7 @@ entities: pos: -18.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7303 components: - type: Transform @@ -73370,35 +72094,35 @@ entities: pos: -21.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7306 components: - type: Transform pos: -8.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7307 components: - type: Transform pos: -8.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7308 components: - type: Transform pos: -8.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7309 components: - type: Transform pos: -8.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7312 components: - type: Transform @@ -73406,7 +72130,7 @@ entities: pos: -7.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7313 components: - type: Transform @@ -73414,7 +72138,7 @@ entities: pos: -6.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7314 components: - type: Transform @@ -73422,7 +72146,7 @@ entities: pos: -5.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7315 components: - type: Transform @@ -73430,42 +72154,42 @@ entities: pos: -4.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7316 components: - type: Transform pos: -3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7317 components: - type: Transform pos: -3.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7318 components: - type: Transform pos: -3.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7319 components: - type: Transform pos: -1.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7320 components: - type: Transform pos: -1.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7324 components: - type: Transform @@ -73473,7 +72197,7 @@ entities: pos: -3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7325 components: - type: Transform @@ -73481,7 +72205,7 @@ entities: pos: -4.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7326 components: - type: Transform @@ -73489,7 +72213,7 @@ entities: pos: -5.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7327 components: - type: Transform @@ -73497,7 +72221,7 @@ entities: pos: -6.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7328 components: - type: Transform @@ -73505,7 +72229,7 @@ entities: pos: -7.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7329 components: - type: Transform @@ -73513,7 +72237,7 @@ entities: pos: -8.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7330 components: - type: Transform @@ -73521,28 +72245,28 @@ entities: pos: -9.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7331 components: - type: Transform pos: -10.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7332 components: - type: Transform pos: -10.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7333 components: - type: Transform pos: -10.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7334 components: - type: Transform @@ -73550,7 +72274,7 @@ entities: pos: -11.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7335 components: - type: Transform @@ -73558,7 +72282,7 @@ entities: pos: -9.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7336 components: - type: Transform @@ -73566,70 +72290,70 @@ entities: pos: -10.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7341 components: - type: Transform pos: -12.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7342 components: - type: Transform pos: -12.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7343 components: - type: Transform pos: -12.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7344 components: - type: Transform pos: -12.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7345 components: - type: Transform pos: -12.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7347 components: - type: Transform pos: -11.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7348 components: - type: Transform pos: -11.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7349 components: - type: Transform pos: -11.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7350 components: - type: Transform pos: -11.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7357 components: - type: Transform @@ -73637,7 +72361,7 @@ entities: pos: -10.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7358 components: - type: Transform @@ -73645,7 +72369,7 @@ entities: pos: -9.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7359 components: - type: Transform @@ -73653,7 +72377,7 @@ entities: pos: -8.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7361 components: - type: Transform @@ -73661,7 +72385,7 @@ entities: pos: -10.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7362 components: - type: Transform @@ -73669,7 +72393,7 @@ entities: pos: -8.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7363 components: - type: Transform @@ -73677,7 +72401,7 @@ entities: pos: -9.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7375 components: - type: Transform @@ -73685,28 +72409,28 @@ entities: pos: -6.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7400 components: - type: Transform pos: -19.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7401 components: - type: Transform pos: -19.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7405 components: - type: Transform pos: -17.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7406 components: - type: Transform @@ -73714,21 +72438,21 @@ entities: pos: -24.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7409 components: - type: Transform pos: -34.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7410 components: - type: Transform pos: -34.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7480 components: - type: Transform @@ -73742,7 +72466,7 @@ entities: pos: -20.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7495 components: - type: Transform @@ -73750,7 +72474,7 @@ entities: pos: -21.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7505 components: - type: Transform @@ -73758,14 +72482,14 @@ entities: pos: -25.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7526 components: - type: Transform pos: -34.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7531 components: - type: Transform @@ -73773,7 +72497,7 @@ entities: pos: -16.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7551 components: - type: Transform @@ -73781,7 +72505,7 @@ entities: pos: -26.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7566 components: - type: Transform @@ -73789,7 +72513,7 @@ entities: pos: -19.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7568 components: - type: Transform @@ -73797,7 +72521,7 @@ entities: pos: -21.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7570 components: - type: Transform @@ -73805,7 +72529,7 @@ entities: pos: -20.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7573 components: - type: Transform @@ -73813,7 +72537,7 @@ entities: pos: -22.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7599 components: - type: Transform @@ -73821,7 +72545,7 @@ entities: pos: -22.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7604 components: - type: Transform @@ -73829,7 +72553,7 @@ entities: pos: -27.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7661 components: - type: Transform @@ -73837,7 +72561,7 @@ entities: pos: -19.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7662 components: - type: Transform @@ -73845,7 +72569,7 @@ entities: pos: -30.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7664 components: - type: Transform @@ -73853,7 +72577,7 @@ entities: pos: -30.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7665 components: - type: Transform @@ -73861,7 +72585,7 @@ entities: pos: -28.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7668 components: - type: Transform @@ -73869,31 +72593,7 @@ entities: pos: -30.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-50.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0000FFFF' - uid: 7755 components: - type: Transform @@ -73901,7 +72601,7 @@ entities: pos: -29.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7756 components: - type: Transform @@ -73909,7 +72609,7 @@ entities: pos: -29.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7761 components: - type: Transform @@ -73917,7 +72617,7 @@ entities: pos: -26.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7763 components: - type: Transform @@ -73925,7 +72625,7 @@ entities: pos: -29.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7764 components: - type: Transform @@ -73933,7 +72633,7 @@ entities: pos: -28.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7816 components: - type: Transform @@ -73941,7 +72641,7 @@ entities: pos: -29.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7817 components: - type: Transform @@ -73949,7 +72649,7 @@ entities: pos: -26.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7818 components: - type: Transform @@ -73957,7 +72657,7 @@ entities: pos: -27.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7821 components: - type: Transform @@ -73965,7 +72665,7 @@ entities: pos: -32.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7832 components: - type: Transform @@ -73973,7 +72673,7 @@ entities: pos: -17.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7884 components: - type: Transform @@ -73981,15 +72681,7 @@ entities: pos: -31.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0000FFFF' - uid: 7925 components: - type: Transform @@ -73997,7 +72689,7 @@ entities: pos: -18.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7928 components: - type: Transform @@ -74005,7 +72697,7 @@ entities: pos: -19.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7929 components: - type: Transform @@ -74013,21 +72705,21 @@ entities: pos: -13.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7950 components: - type: Transform pos: -28.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7951 components: - type: Transform pos: -28.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7958 components: - type: Transform @@ -74035,7 +72727,7 @@ entities: pos: -22.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7999 components: - type: Transform @@ -74043,7 +72735,7 @@ entities: pos: -20.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8029 components: - type: Transform @@ -74051,7 +72743,7 @@ entities: pos: -22.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8030 components: - type: Transform @@ -74059,7 +72751,7 @@ entities: pos: -22.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8031 components: - type: Transform @@ -74067,7 +72759,7 @@ entities: pos: -22.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8032 components: - type: Transform @@ -74075,7 +72767,7 @@ entities: pos: -22.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8037 components: - type: Transform @@ -74083,7 +72775,7 @@ entities: pos: -22.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8041 components: - type: Transform @@ -74091,7 +72783,7 @@ entities: pos: -20.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8042 components: - type: Transform @@ -74099,7 +72791,7 @@ entities: pos: -17.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8049 components: - type: Transform @@ -74107,7 +72799,7 @@ entities: pos: -27.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8050 components: - type: Transform @@ -74115,7 +72807,7 @@ entities: pos: -29.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8057 components: - type: Transform @@ -74123,28 +72815,28 @@ entities: pos: -20.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8060 components: - type: Transform pos: -28.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8061 components: - type: Transform pos: -11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8065 components: - type: Transform pos: -28.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8066 components: - type: Transform @@ -74152,7 +72844,7 @@ entities: pos: -20.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8067 components: - type: Transform @@ -74160,7 +72852,7 @@ entities: pos: -18.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8068 components: - type: Transform @@ -74168,7 +72860,7 @@ entities: pos: -20.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8072 components: - type: Transform @@ -74176,14 +72868,14 @@ entities: pos: -22.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8077 components: - type: Transform pos: -28.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8088 components: - type: Transform @@ -74191,7 +72883,7 @@ entities: pos: -20.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8091 components: - type: Transform @@ -74199,14 +72891,14 @@ entities: pos: -22.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8094 components: - type: Transform pos: -13.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8095 components: - type: Transform @@ -74214,7 +72906,7 @@ entities: pos: -15.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8097 components: - type: Transform @@ -74222,14 +72914,14 @@ entities: pos: -24.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8098 components: - type: Transform pos: -13.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8099 components: - type: Transform @@ -74237,7 +72929,7 @@ entities: pos: -21.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8105 components: - type: Transform @@ -74245,7 +72937,7 @@ entities: pos: -23.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8106 components: - type: Transform @@ -74253,7 +72945,7 @@ entities: pos: -20.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8141 components: - type: Transform @@ -74261,7 +72953,7 @@ entities: pos: -20.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8142 components: - type: Transform @@ -74269,7 +72961,7 @@ entities: pos: -20.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8213 components: - type: Transform @@ -74277,7 +72969,7 @@ entities: pos: -26.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8214 components: - type: Transform @@ -74285,7 +72977,7 @@ entities: pos: -25.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8217 components: - type: Transform @@ -74293,7 +72985,7 @@ entities: pos: -20.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8218 components: - type: Transform @@ -74301,7 +72993,7 @@ entities: pos: -21.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8221 components: - type: Transform @@ -74309,7 +73001,7 @@ entities: pos: -24.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8222 components: - type: Transform @@ -74317,7 +73009,61 @@ entities: pos: -22.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 8264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8384 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8393 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 8543 components: - type: Transform @@ -74331,7 +73077,7 @@ entities: pos: -33.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8575 components: - type: Transform @@ -74681,7 +73427,7 @@ entities: pos: 9.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8778 components: - type: Transform @@ -74689,7 +73435,7 @@ entities: pos: 11.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8780 components: - type: Transform @@ -74697,7 +73443,7 @@ entities: pos: 12.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8782 components: - type: Transform @@ -74705,7 +73451,7 @@ entities: pos: 14.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8783 components: - type: Transform @@ -74713,7 +73459,7 @@ entities: pos: 15.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8785 components: - type: Transform @@ -74721,7 +73467,7 @@ entities: pos: 16.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8787 components: - type: Transform @@ -74729,7 +73475,7 @@ entities: pos: 17.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8788 components: - type: Transform @@ -74737,7 +73483,7 @@ entities: pos: 18.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8789 components: - type: Transform @@ -74745,46 +73491,7 @@ entities: pos: 19.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-39.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8807 - components: - - type: Transform - pos: -9.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8839 components: - type: Transform @@ -74792,7 +73499,7 @@ entities: pos: 14.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8840 components: - type: Transform @@ -74800,7 +73507,7 @@ entities: pos: 13.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8841 components: - type: Transform @@ -74808,7 +73515,7 @@ entities: pos: 13.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8842 components: - type: Transform @@ -74816,7 +73523,7 @@ entities: pos: 15.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8843 components: - type: Transform @@ -74824,7 +73531,7 @@ entities: pos: 12.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8844 components: - type: Transform @@ -74832,7 +73539,7 @@ entities: pos: 10.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8846 components: - type: Transform @@ -74840,7 +73547,7 @@ entities: pos: 9.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8854 components: - type: Transform @@ -74848,7 +73555,7 @@ entities: pos: -1.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8855 components: - type: Transform @@ -74856,7 +73563,7 @@ entities: pos: -0.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8856 components: - type: Transform @@ -74864,7 +73571,7 @@ entities: pos: 0.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8857 components: - type: Transform @@ -74872,7 +73579,7 @@ entities: pos: 1.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8858 components: - type: Transform @@ -74880,7 +73587,7 @@ entities: pos: 2.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8859 components: - type: Transform @@ -74888,7 +73595,7 @@ entities: pos: 3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8860 components: - type: Transform @@ -74896,7 +73603,7 @@ entities: pos: 3.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8861 components: - type: Transform @@ -74904,7 +73611,7 @@ entities: pos: 3.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8862 components: - type: Transform @@ -74912,7 +73619,7 @@ entities: pos: 3.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8864 components: - type: Transform @@ -74920,7 +73627,7 @@ entities: pos: 4.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8865 components: - type: Transform @@ -74928,21 +73635,21 @@ entities: pos: 5.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8867 components: - type: Transform pos: 7.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8873 components: - type: Transform pos: 7.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8874 components: - type: Transform @@ -74950,14 +73657,14 @@ entities: pos: 8.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8875 components: - type: Transform pos: 7.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8878 components: - type: Transform @@ -74965,7 +73672,7 @@ entities: pos: 5.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8879 components: - type: Transform @@ -74973,7 +73680,7 @@ entities: pos: 8.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8880 components: - type: Transform @@ -74981,7 +73688,7 @@ entities: pos: 9.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8881 components: - type: Transform @@ -74989,7 +73696,7 @@ entities: pos: 10.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8882 components: - type: Transform @@ -74997,7 +73704,7 @@ entities: pos: 11.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8883 components: - type: Transform @@ -75005,7 +73712,7 @@ entities: pos: 11.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8885 components: - type: Transform @@ -75013,7 +73720,7 @@ entities: pos: 11.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8886 components: - type: Transform @@ -75021,7 +73728,7 @@ entities: pos: 11.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8887 components: - type: Transform @@ -75029,7 +73736,7 @@ entities: pos: 11.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8888 components: - type: Transform @@ -75037,7 +73744,7 @@ entities: pos: 10.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8889 components: - type: Transform @@ -75045,7 +73752,7 @@ entities: pos: 9.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8890 components: - type: Transform @@ -75053,42 +73760,42 @@ entities: pos: 8.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8891 components: - type: Transform pos: 7.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8892 components: - type: Transform pos: 7.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8894 components: - type: Transform pos: 7.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8895 components: - type: Transform pos: 7.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8896 components: - type: Transform pos: 7.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8897 components: - type: Transform @@ -75096,7 +73803,7 @@ entities: pos: 11.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8898 components: - type: Transform @@ -75104,7 +73811,7 @@ entities: pos: 11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8899 components: - type: Transform @@ -75112,7 +73819,7 @@ entities: pos: 11.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8900 components: - type: Transform @@ -75120,7 +73827,7 @@ entities: pos: 11.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8902 components: - type: Transform @@ -75128,7 +73835,7 @@ entities: pos: 11.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8904 components: - type: Transform @@ -75136,7 +73843,7 @@ entities: pos: 11.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8905 components: - type: Transform @@ -75144,7 +73851,7 @@ entities: pos: 11.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8906 components: - type: Transform @@ -75152,7 +73859,7 @@ entities: pos: 11.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8907 components: - type: Transform @@ -75160,7 +73867,7 @@ entities: pos: 11.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8908 components: - type: Transform @@ -75168,7 +73875,7 @@ entities: pos: 11.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8909 components: - type: Transform @@ -75176,7 +73883,7 @@ entities: pos: 11.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8910 components: - type: Transform @@ -75184,7 +73891,7 @@ entities: pos: 11.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8913 components: - type: Transform @@ -75192,7 +73899,7 @@ entities: pos: 10.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8914 components: - type: Transform @@ -75200,7 +73907,7 @@ entities: pos: -0.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8915 components: - type: Transform @@ -75208,7 +73915,7 @@ entities: pos: 0.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8916 components: - type: Transform @@ -75216,7 +73923,7 @@ entities: pos: 1.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8917 components: - type: Transform @@ -75224,7 +73931,7 @@ entities: pos: 2.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8918 components: - type: Transform @@ -75232,7 +73939,7 @@ entities: pos: 3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8921 components: - type: Transform @@ -75240,7 +73947,7 @@ entities: pos: 6.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8922 components: - type: Transform @@ -75248,7 +73955,7 @@ entities: pos: 7.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8923 components: - type: Transform @@ -75256,7 +73963,7 @@ entities: pos: 8.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8924 components: - type: Transform @@ -75264,7 +73971,7 @@ entities: pos: 5.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8925 components: - type: Transform @@ -75272,7 +73979,7 @@ entities: pos: 5.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8926 components: - type: Transform @@ -75280,7 +73987,7 @@ entities: pos: 5.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8927 components: - type: Transform @@ -75288,7 +73995,7 @@ entities: pos: 8.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8928 components: - type: Transform @@ -75296,7 +74003,7 @@ entities: pos: 5.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8929 components: - type: Transform @@ -75304,14 +74011,14 @@ entities: pos: 4.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8930 components: - type: Transform pos: 7.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8931 components: - type: Transform @@ -75319,7 +74026,7 @@ entities: pos: 3.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8932 components: - type: Transform @@ -75327,7 +74034,7 @@ entities: pos: 5.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8933 components: - type: Transform @@ -75345,7 +74052,7 @@ entities: pos: 7.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8935 components: - type: Transform @@ -75353,7 +74060,7 @@ entities: pos: 6.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8937 components: - type: Transform @@ -75361,7 +74068,7 @@ entities: pos: 6.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8938 components: - type: Transform @@ -75369,7 +74076,7 @@ entities: pos: 8.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8941 components: - type: Transform @@ -75377,7 +74084,7 @@ entities: pos: 10.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8942 components: - type: Transform @@ -75385,7 +74092,7 @@ entities: pos: 11.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8943 components: - type: Transform @@ -75393,7 +74100,7 @@ entities: pos: 12.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8945 components: - type: Transform @@ -75401,7 +74108,7 @@ entities: pos: 13.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8946 components: - type: Transform @@ -75409,7 +74116,7 @@ entities: pos: 13.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8948 components: - type: Transform @@ -75417,7 +74124,7 @@ entities: pos: 13.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8949 components: - type: Transform @@ -75425,7 +74132,7 @@ entities: pos: 13.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8950 components: - type: Transform @@ -75433,7 +74140,7 @@ entities: pos: 13.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8951 components: - type: Transform @@ -75441,7 +74148,7 @@ entities: pos: 13.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8952 components: - type: Transform @@ -75449,7 +74156,7 @@ entities: pos: 13.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8953 components: - type: Transform @@ -75457,7 +74164,7 @@ entities: pos: 13.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8954 components: - type: Transform @@ -75465,7 +74172,7 @@ entities: pos: 13.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8956 components: - type: Transform @@ -75473,7 +74180,7 @@ entities: pos: 13.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8958 components: - type: Transform @@ -75481,7 +74188,7 @@ entities: pos: 13.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8959 components: - type: Transform @@ -75489,7 +74196,7 @@ entities: pos: 13.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8961 components: - type: Transform @@ -75497,7 +74204,7 @@ entities: pos: 13.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8962 components: - type: Transform @@ -75505,7 +74212,7 @@ entities: pos: 13.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8963 components: - type: Transform @@ -75513,7 +74220,7 @@ entities: pos: 13.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8964 components: - type: Transform @@ -75521,7 +74228,7 @@ entities: pos: 13.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8965 components: - type: Transform @@ -75529,7 +74236,7 @@ entities: pos: 13.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8967 components: - type: Transform @@ -75537,7 +74244,7 @@ entities: pos: 11.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8969 components: - type: Transform @@ -75545,7 +74252,7 @@ entities: pos: 12.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8970 components: - type: Transform @@ -75553,7 +74260,7 @@ entities: pos: 11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8971 components: - type: Transform @@ -75561,7 +74268,7 @@ entities: pos: 10.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8972 components: - type: Transform @@ -75569,7 +74276,7 @@ entities: pos: 9.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8973 components: - type: Transform @@ -75577,7 +74284,7 @@ entities: pos: 9.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8974 components: - type: Transform @@ -75585,7 +74292,7 @@ entities: pos: 9.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8975 components: - type: Transform @@ -75593,7 +74300,7 @@ entities: pos: 9.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8976 components: - type: Transform @@ -75601,7 +74308,7 @@ entities: pos: 9.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8977 components: - type: Transform @@ -75609,7 +74316,7 @@ entities: pos: 9.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9015 components: - type: Transform @@ -75659,7 +74366,7 @@ entities: pos: -22.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9036 components: - type: Transform @@ -75667,7 +74374,7 @@ entities: pos: -29.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9039 components: - type: Transform @@ -75675,21 +74382,21 @@ entities: pos: -29.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9050 components: - type: Transform pos: -13.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9052 components: - type: Transform pos: -13.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9053 components: - type: Transform @@ -75697,37 +74404,45 @@ entities: pos: -14.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9062 + color: '#0000FFFF' + - uid: 9075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-49.5 + pos: 6.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9065 + color: '#EB9834FF' + - uid: 9217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-53.5 + rot: 3.141592653589793 rad + pos: -3.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9075 + color: '#FF0000FF' + - uid: 9261 components: - type: Transform - pos: 6.5,-37.5 + pos: 7.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9261 + color: '#0000FFFF' + - uid: 9294 components: - type: Transform - pos: 7.5,-21.5 + rot: 1.5707963267948966 rad + pos: 5.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#03FCD3FF' + - uid: 9320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-48.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' - uid: 9341 components: - type: Transform @@ -75735,31 +74450,169 @@ entities: pos: -49.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9623 + color: '#0000FFFF' + - uid: 9416 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9417 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9424 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9425 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9426 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9431 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9432 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9433 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9445 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-39.5 + pos: -14.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9659 + color: '#FF0000FF' + - uid: 9447 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9449 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9450 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9564 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-38.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9590 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-52.5 + pos: -7.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9660 + color: '#0000FFFF' + - uid: 9608 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-52.5 + pos: -8.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0000FFFF' + - uid: 9638 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9639 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 9670 components: - type: Transform @@ -75767,7 +74620,15 @@ entities: pos: -29.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 9683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-47.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' - uid: 9685 components: - type: Transform @@ -75775,7 +74636,7 @@ entities: pos: -23.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9687 components: - type: Transform @@ -75783,7 +74644,7 @@ entities: pos: -24.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9688 components: - type: Transform @@ -75791,15 +74652,15 @@ entities: pos: -24.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9702 + color: '#0000FFFF' + - uid: 9701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-51.5 + rot: 1.5707963267948966 rad + pos: 7.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#EB9834FF' - uid: 9729 components: - type: Transform @@ -75807,7 +74668,7 @@ entities: pos: 3.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9730 components: - type: Transform @@ -75815,7 +74676,7 @@ entities: pos: 2.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9731 components: - type: Transform @@ -75823,7 +74684,7 @@ entities: pos: 1.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9732 components: - type: Transform @@ -75831,7 +74692,7 @@ entities: pos: 0.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9733 components: - type: Transform @@ -75839,7 +74700,7 @@ entities: pos: -0.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9734 components: - type: Transform @@ -75847,7 +74708,7 @@ entities: pos: -1.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9735 components: - type: Transform @@ -75855,70 +74716,70 @@ entities: pos: -2.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9736 components: - type: Transform pos: -3.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9737 components: - type: Transform pos: -3.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9738 components: - type: Transform pos: -3.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9739 components: - type: Transform pos: -3.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9740 components: - type: Transform pos: -3.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9741 components: - type: Transform pos: -3.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9742 components: - type: Transform pos: -3.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9743 components: - type: Transform pos: -3.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9745 components: - type: Transform pos: -3.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9747 components: - type: Transform @@ -75926,7 +74787,7 @@ entities: pos: -2.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9748 components: - type: Transform @@ -75934,7 +74795,7 @@ entities: pos: -1.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9749 components: - type: Transform @@ -75942,7 +74803,7 @@ entities: pos: -0.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9755 components: - type: Transform @@ -75950,7 +74811,7 @@ entities: pos: -1.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9756 components: - type: Transform @@ -75958,7 +74819,7 @@ entities: pos: -1.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9757 components: - type: Transform @@ -75966,7 +74827,7 @@ entities: pos: -1.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9758 components: - type: Transform @@ -75974,7 +74835,7 @@ entities: pos: -1.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9759 components: - type: Transform @@ -75982,7 +74843,7 @@ entities: pos: -1.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9760 components: - type: Transform @@ -75990,7 +74851,7 @@ entities: pos: -0.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9761 components: - type: Transform @@ -75998,7 +74859,7 @@ entities: pos: 0.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9762 components: - type: Transform @@ -76006,7 +74867,7 @@ entities: pos: 1.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9764 components: - type: Transform @@ -76014,7 +74875,7 @@ entities: pos: 3.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9765 components: - type: Transform @@ -76022,7 +74883,7 @@ entities: pos: 4.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9766 components: - type: Transform @@ -76030,7 +74891,7 @@ entities: pos: -0.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9767 components: - type: Transform @@ -76038,7 +74899,7 @@ entities: pos: 0.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9768 components: - type: Transform @@ -76046,139 +74907,138 @@ entities: pos: 1.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9771 components: - type: Transform pos: 2.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9772 components: - type: Transform pos: 2.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9773 components: - type: Transform pos: 2.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9775 components: - type: Transform pos: 2.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9776 components: - type: Transform pos: 0.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9777 components: - type: Transform pos: 0.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9778 components: - type: Transform pos: 0.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9780 components: - type: Transform pos: 0.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9781 components: - type: Transform pos: 0.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9782 - components: - - type: Transform - pos: 0.5,-37.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9783 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9784 components: - type: Transform pos: 2.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9785 components: - type: Transform pos: 2.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9786 components: - type: Transform pos: 2.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9787 components: - type: Transform pos: 2.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9788 components: - type: Transform - pos: 2.5,-37.5 + rot: 3.141592653589793 rad + pos: 8.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9789 + color: '#EB9834FF' + - uid: 9794 components: - type: Transform - pos: 2.5,-38.5 + rot: 3.141592653589793 rad + pos: 2.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9790 + color: '#0000FFFF' + - uid: 9795 components: - type: Transform - pos: 2.5,-39.5 + rot: 3.141592653589793 rad + pos: 2.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9806 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-57.5 + pos: 2.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-38.5 parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9810 components: - type: Transform @@ -76186,14 +75046,14 @@ entities: pos: -54.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9834 components: - type: Transform pos: -34.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9853 components: - type: Transform @@ -76201,7 +75061,7 @@ entities: pos: -23.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9860 components: - type: Transform @@ -76209,7 +75069,7 @@ entities: pos: -23.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9861 components: - type: Transform @@ -76217,15 +75077,7 @@ entities: pos: -24.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' - uid: 9865 components: - type: Transform @@ -76233,215 +75085,137 @@ entities: pos: -18.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9873 + color: '#0000FFFF' + - uid: 9886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-49.5 + pos: -22.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9874 + color: '#FF0000FF' + - uid: 9887 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-50.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-54.5 + pos: -0.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9880 + color: '#0000FFFF' + - uid: 9893 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-54.5 + pos: -15.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9881 + color: '#0000FFFF' + - uid: 9900 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-54.5 + pos: -10.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9882 + color: '#0000FFFF' + - uid: 9901 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-52.5 + pos: -9.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9886 + color: '#0000FFFF' + - uid: 9904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-51.5 + rot: -1.5707963267948966 rad + pos: -4.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9887 + color: '#0000FFFF' + - uid: 9906 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-50.5 + rot: -1.5707963267948966 rad + pos: -3.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9888 + color: '#0000FFFF' + - uid: 9907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-49.5 + rot: -1.5707963267948966 rad + pos: -5.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9889 + color: '#0000FFFF' + - uid: 9920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-48.5 + rot: 1.5707963267948966 rad + pos: -13.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9890 + color: '#0000FFFF' + - uid: 9921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-47.5 + pos: -11.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9891 + color: '#0000FFFF' + - uid: 9922 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-45.5 + rot: 1.5707963267948966 rad + pos: -12.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9892 + color: '#0000FFFF' + - uid: 9923 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-44.5 + pos: -11.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9893 + color: '#0000FFFF' + - uid: 9924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-43.5 + pos: -11.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9894 + color: '#0000FFFF' + - uid: 9925 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-42.5 + pos: -11.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9895 + color: '#0000FFFF' + - uid: 9936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-41.5 + rot: -1.5707963267948966 rad + pos: -1.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9896 + color: '#0000FFFF' + - uid: 9966 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-40.5 + pos: -4.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9897 + color: '#FF0000FF' + - uid: 9979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-39.5 + pos: -22.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#FF0000FF' - uid: 9980 components: - type: Transform @@ -76459,569 +75233,541 @@ entities: pos: 5.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9984 components: - type: Transform pos: 5.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10091 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11075 + color: '#FF0000FF' + - uid: 9988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-39.5 + pos: -16.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11076 + color: '#FF0000FF' + - uid: 10019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-39.5 + pos: -11.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11077 + color: '#0000FFFF' + - uid: 10020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-39.5 + pos: -11.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11079 + color: '#0000FFFF' + - uid: 10021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-39.5 + pos: -11.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11081 + color: '#0000FFFF' + - uid: 10091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-39.5 + pos: 5.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11082 + color: '#FF0000FF' + - uid: 10120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-39.5 + pos: -18.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11083 + color: '#0000FFFF' + - uid: 10128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-39.5 + rot: 3.141592653589793 rad + pos: 8.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11084 + color: '#EB9834FF' + - uid: 10129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-39.5 + pos: 6.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11085 + color: '#EB9834FF' + - uid: 10130 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-39.5 + pos: 0.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11086 + color: '#0000FFFF' + - uid: 10131 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-39.5 + pos: -2.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11089 + color: '#0000FFFF' + - uid: 10132 components: - type: Transform - pos: -18.5,-40.5 + rot: 1.5707963267948966 rad + pos: -22.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11091 + color: '#0000FFFF' + - uid: 10133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-41.5 + rot: 1.5707963267948966 rad + pos: -14.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11092 + color: '#0000FFFF' + - uid: 10167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-41.5 + rot: 3.141592653589793 rad + pos: 0.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11093 + color: '#FF0000FF' + - uid: 10171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-41.5 + pos: -16.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11095 + color: '#FF0000FF' + - uid: 10172 components: - type: Transform - pos: -17.5,-38.5 + pos: -16.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11096 + color: '#FF0000FF' + - uid: 10173 components: - type: Transform - pos: -17.5,-37.5 + pos: -16.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11100 + color: '#FF0000FF' + - uid: 10174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 + pos: -16.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11103 + color: '#FF0000FF' + - uid: 10175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-30.5 + pos: -18.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11104 + color: '#0000FFFF' + - uid: 10212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-30.5 + pos: 6.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11105 + color: '#EB9834FF' + - uid: 10213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-30.5 + pos: 6.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11106 + color: '#EB9834FF' + - uid: 10215 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-30.5 + pos: -2.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11108 + color: '#FF0000FF' + - uid: 10216 components: - type: Transform - pos: -8.5,-38.5 + rot: 1.5707963267948966 rad + pos: -9.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11109 + color: '#0000FFFF' + - uid: 10217 components: - type: Transform - pos: -8.5,-37.5 + rot: 1.5707963267948966 rad + pos: -19.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11110 + color: '#0000FFFF' + - uid: 10218 components: - type: Transform - pos: -8.5,-36.5 + rot: 1.5707963267948966 rad + pos: -14.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11111 + color: '#0000FFFF' + - uid: 10219 components: - type: Transform - pos: -8.5,-40.5 + rot: 1.5707963267948966 rad + pos: -17.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11112 + color: '#0000FFFF' + - uid: 10220 components: - type: Transform - pos: -8.5,-41.5 + pos: -12.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11113 + color: '#0000FFFF' + - uid: 10262 components: - type: Transform - pos: -8.5,-42.5 + pos: -13.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11116 + color: '#FF0000FF' + - uid: 10263 components: - type: Transform - pos: 2.5,-40.5 + pos: -12.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11118 + color: '#0000FFFF' + - uid: 10264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 + pos: -12.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11119 + color: '#0000FFFF' + - uid: 10267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-41.5 + rot: 1.5707963267948966 rad + pos: -12.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11120 + color: '#FF0000FF' + - uid: 10272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-41.5 + rot: 1.5707963267948966 rad + pos: -10.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11121 + color: '#0000FFFF' + - uid: 10273 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-41.5 + pos: -11.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11123 + color: '#0000FFFF' + - uid: 10275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-41.5 + pos: -18.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11124 + color: '#0000FFFF' + - uid: 10276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-41.5 + pos: -16.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11125 + color: '#FF0000FF' + - uid: 10277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-41.5 + pos: -16.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11127 + color: '#FF0000FF' + - uid: 10278 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-41.5 + pos: -0.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11128 + color: '#FF0000FF' + - uid: 10280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-41.5 + rot: 3.141592653589793 rad + pos: 0.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11129 + color: '#FF0000FF' + - uid: 10281 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-41.5 + pos: -4.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11130 + color: '#FF0000FF' + - uid: 10282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-41.5 + rot: 1.5707963267948966 rad + pos: -13.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11131 + color: '#0000FFFF' + - uid: 10290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-41.5 + rot: 1.5707963267948966 rad + pos: -15.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11133 + color: '#0000FFFF' + - uid: 10397 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-41.5 + pos: -16.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11134 + color: '#0000FFFF' + - uid: 10435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-41.5 + pos: -12.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11135 + color: '#0000FFFF' + - uid: 10436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-41.5 + pos: -13.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11136 + color: '#FF0000FF' + - uid: 10437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-41.5 + pos: -12.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11139 + color: '#0000FFFF' + - uid: 10438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-42.5 + pos: -11.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11141 + color: '#FF0000FF' + - uid: 10535 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-42.5 + pos: -21.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11142 + color: '#0000FFFF' + - uid: 10536 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-42.5 + pos: -20.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11143 + color: '#0000FFFF' + - uid: 10557 components: - type: Transform - pos: -17.5,-43.5 + rot: 3.141592653589793 rad + pos: 8.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11144 + color: '#EB9834FF' + - uid: 10603 components: - type: Transform - pos: -17.5,-44.5 + rot: 3.141592653589793 rad + pos: -3.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11145 + color: '#FF0000FF' + - uid: 10607 components: - type: Transform - pos: -17.5,-45.5 + rot: -1.5707963267948966 rad + pos: -3.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11146 + color: '#FF0000FF' + - uid: 10608 components: - type: Transform - pos: -17.5,-46.5 + rot: 1.5707963267948966 rad + pos: -10.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11147 + color: '#FF0000FF' + - uid: 10609 components: - type: Transform - pos: -19.5,-41.5 + rot: 3.141592653589793 rad + pos: 0.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11148 + color: '#FF0000FF' + - uid: 10610 components: - type: Transform - pos: -19.5,-40.5 + pos: -13.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11149 + color: '#FF0000FF' + - uid: 10635 components: - type: Transform - pos: -19.5,-39.5 + rot: -1.5707963267948966 rad + pos: -7.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11150 + color: '#FF0000FF' + - uid: 10642 components: - type: Transform - pos: -19.5,-38.5 + rot: -1.5707963267948966 rad + pos: -6.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11151 + color: '#FF0000FF' + - uid: 10643 components: - type: Transform - pos: -19.5,-37.5 + rot: 3.141592653589793 rad + pos: -8.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11156 + color: '#FF0000FF' + - uid: 10793 components: - type: Transform - pos: -6.5,-42.5 + pos: 6.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11157 + color: '#EB9834FF' + - uid: 11088 components: - type: Transform - pos: -6.5,-40.5 + rot: 3.141592653589793 rad + pos: -3.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11158 + color: '#FF0000FF' + - uid: 11100 components: - type: Transform - pos: -6.5,-39.5 + rot: 3.141592653589793 rad + pos: 2.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11159 + color: '#0000FFFF' + - uid: 11102 components: - type: Transform - pos: -6.5,-38.5 + pos: -16.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11160 + color: '#FF0000FF' + - uid: 11109 components: - type: Transform - pos: -6.5,-37.5 + pos: -8.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11161 + color: '#FF0000FF' + - uid: 11118 components: - type: Transform - pos: -6.5,-36.5 + rot: 1.5707963267948966 rad + pos: -10.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11168 + color: '#FF0000FF' + - uid: 11119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-28.5 + rot: 1.5707963267948966 rad + pos: -9.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11169 + color: '#FF0000FF' + - uid: 11131 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-28.5 + pos: 7.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11170 + color: '#EB9834FF' + - uid: 11132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 + rot: 3.141592653589793 rad + pos: -1.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11171 + color: '#FF0000FF' + - uid: 11133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-28.5 + rot: 3.141592653589793 rad + pos: 2.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11172 + color: '#0000FFFF' + - uid: 11135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-28.5 + rot: 3.141592653589793 rad + pos: -1.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11173 + color: '#FF0000FF' + - uid: 11160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-28.5 + pos: -6.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11174 + color: '#0000FFFF' + - uid: 11168 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-28.5 + pos: -3.5,-28.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11175 + - uid: 11169 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-28.5 + pos: -2.5,-28.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' @@ -77032,7 +75778,7 @@ entities: pos: 10.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11182 components: - type: Transform @@ -77040,7 +75786,7 @@ entities: pos: 10.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11183 components: - type: Transform @@ -77048,7 +75794,7 @@ entities: pos: 10.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11184 components: - type: Transform @@ -77056,7 +75802,7 @@ entities: pos: 11.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11185 components: - type: Transform @@ -77064,7 +75810,7 @@ entities: pos: 11.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11186 components: - type: Transform @@ -77072,7 +75818,7 @@ entities: pos: 11.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11187 components: - type: Transform @@ -77080,7 +75826,7 @@ entities: pos: 11.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11202 components: - type: Transform @@ -77088,7 +75834,7 @@ entities: pos: 9.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11203 components: - type: Transform @@ -77096,7 +75842,7 @@ entities: pos: 9.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11204 components: - type: Transform @@ -77104,7 +75850,7 @@ entities: pos: 9.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11205 components: - type: Transform @@ -77112,7 +75858,7 @@ entities: pos: 9.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11206 components: - type: Transform @@ -77120,7 +75866,7 @@ entities: pos: 7.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11207 components: - type: Transform @@ -77128,7 +75874,7 @@ entities: pos: 7.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11212 components: - type: Transform @@ -77136,7 +75882,7 @@ entities: pos: 20.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11338 components: - type: Transform @@ -77144,7 +75890,7 @@ entities: pos: 29.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11640 components: - type: Transform @@ -77152,7 +75898,7 @@ entities: pos: 28.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11641 components: - type: Transform @@ -77160,7 +75906,7 @@ entities: pos: 34.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11665 components: - type: Transform @@ -77168,7 +75914,7 @@ entities: pos: 26.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11672 components: - type: Transform @@ -77176,7 +75922,7 @@ entities: pos: 30.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11686 components: - type: Transform @@ -77184,7 +75930,7 @@ entities: pos: 27.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11696 components: - type: Transform @@ -77192,21 +75938,28 @@ entities: pos: 25.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 11701 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 11711 components: - type: Transform pos: 33.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11713 components: - type: Transform pos: 29.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11745 components: - type: Transform @@ -77214,7 +75967,7 @@ entities: pos: 27.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11781 components: - type: Transform @@ -77222,7 +75975,7 @@ entities: pos: 28.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11802 components: - type: Transform @@ -77230,7 +75983,7 @@ entities: pos: 29.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11858 components: - type: Transform @@ -77238,7 +75991,7 @@ entities: pos: 30.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11862 components: - type: Transform @@ -77246,7 +75999,7 @@ entities: pos: 35.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11870 components: - type: Transform @@ -77254,7 +76007,7 @@ entities: pos: 28.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11875 components: - type: Transform @@ -77262,14 +76015,14 @@ entities: pos: 34.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11878 components: - type: Transform pos: 21.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11880 components: - type: Transform @@ -77277,14 +76030,14 @@ entities: pos: 22.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11881 components: - type: Transform pos: 29.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11897 components: - type: Transform @@ -77292,7 +76045,7 @@ entities: pos: 12.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11898 components: - type: Transform @@ -77300,7 +76053,7 @@ entities: pos: 13.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11899 components: - type: Transform @@ -77308,7 +76061,7 @@ entities: pos: 14.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11900 components: - type: Transform @@ -77316,7 +76069,7 @@ entities: pos: 26.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11901 components: - type: Transform @@ -77324,7 +76077,7 @@ entities: pos: 15.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11902 components: - type: Transform @@ -77332,7 +76085,7 @@ entities: pos: 17.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11903 components: - type: Transform @@ -77340,7 +76093,7 @@ entities: pos: 18.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11905 components: - type: Transform @@ -77348,7 +76101,7 @@ entities: pos: 20.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11906 components: - type: Transform @@ -77356,7 +76109,7 @@ entities: pos: 14.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11907 components: - type: Transform @@ -77364,7 +76117,7 @@ entities: pos: 15.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11908 components: - type: Transform @@ -77372,7 +76125,7 @@ entities: pos: 16.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11909 components: - type: Transform @@ -77380,7 +76133,7 @@ entities: pos: 29.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11910 components: - type: Transform @@ -77388,7 +76141,7 @@ entities: pos: 18.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11911 components: - type: Transform @@ -77396,7 +76149,7 @@ entities: pos: 19.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11912 components: - type: Transform @@ -77404,7 +76157,7 @@ entities: pos: 22.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11913 components: - type: Transform @@ -77412,7 +76165,7 @@ entities: pos: 21.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11914 components: - type: Transform @@ -77420,7 +76173,7 @@ entities: pos: 22.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11915 components: - type: Transform @@ -77428,7 +76181,7 @@ entities: pos: 23.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11916 components: - type: Transform @@ -77436,14 +76189,14 @@ entities: pos: 23.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11917 components: - type: Transform pos: 29.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11918 components: - type: Transform @@ -77451,7 +76204,7 @@ entities: pos: 26.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11919 components: - type: Transform @@ -77459,7 +76212,7 @@ entities: pos: 35.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11921 components: - type: Transform @@ -77467,7 +76220,7 @@ entities: pos: 27.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11927 components: - type: Transform @@ -77475,7 +76228,7 @@ entities: pos: 22.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11928 components: - type: Transform @@ -77483,42 +76236,42 @@ entities: pos: 23.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11943 components: - type: Transform pos: 21.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11946 components: - type: Transform pos: 21.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11947 components: - type: Transform pos: 21.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11948 components: - type: Transform pos: 21.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11949 components: - type: Transform pos: 20.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11951 components: - type: Transform @@ -77526,7 +76279,7 @@ entities: pos: 14.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11952 components: - type: Transform @@ -77534,7 +76287,7 @@ entities: pos: 15.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11953 components: - type: Transform @@ -77542,7 +76295,7 @@ entities: pos: 16.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11954 components: - type: Transform @@ -77550,7 +76303,7 @@ entities: pos: 17.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11955 components: - type: Transform @@ -77558,7 +76311,7 @@ entities: pos: 18.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11956 components: - type: Transform @@ -77566,7 +76319,7 @@ entities: pos: 19.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11957 components: - type: Transform @@ -77574,7 +76327,7 @@ entities: pos: 12.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11958 components: - type: Transform @@ -77582,7 +76335,7 @@ entities: pos: 13.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11959 components: - type: Transform @@ -77590,7 +76343,7 @@ entities: pos: 15.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11960 components: - type: Transform @@ -77598,7 +76351,7 @@ entities: pos: 14.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11961 components: - type: Transform @@ -77606,7 +76359,7 @@ entities: pos: 16.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11962 components: - type: Transform @@ -77614,7 +76367,7 @@ entities: pos: 17.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11963 components: - type: Transform @@ -77622,7 +76375,7 @@ entities: pos: 18.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11964 components: - type: Transform @@ -77630,7 +76383,7 @@ entities: pos: 19.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11965 components: - type: Transform @@ -77638,77 +76391,77 @@ entities: pos: 20.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11969 components: - type: Transform pos: 21.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11970 components: - type: Transform pos: 21.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11971 components: - type: Transform pos: 21.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11972 components: - type: Transform pos: 21.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11973 components: - type: Transform pos: 21.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11974 components: - type: Transform pos: 20.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11975 components: - type: Transform pos: 20.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11976 components: - type: Transform pos: 20.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11977 components: - type: Transform pos: 20.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11980 components: - type: Transform pos: 20.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11983 components: - type: Transform @@ -77716,7 +76469,7 @@ entities: pos: 20.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11984 components: - type: Transform @@ -77724,7 +76477,7 @@ entities: pos: 19.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11986 components: - type: Transform @@ -77732,7 +76485,7 @@ entities: pos: 21.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11988 components: - type: Transform @@ -77740,7 +76493,7 @@ entities: pos: 23.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11989 components: - type: Transform @@ -77748,7 +76501,7 @@ entities: pos: 27.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11990 components: - type: Transform @@ -77756,7 +76509,7 @@ entities: pos: 26.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11992 components: - type: Transform @@ -77764,7 +76517,7 @@ entities: pos: 28.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11993 components: - type: Transform @@ -77772,7 +76525,7 @@ entities: pos: 31.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12000 components: - type: Transform @@ -77780,7 +76533,7 @@ entities: pos: 25.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12004 components: - type: Transform @@ -77788,7 +76541,7 @@ entities: pos: 30.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12005 components: - type: Transform @@ -77796,7 +76549,7 @@ entities: pos: 30.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12006 components: - type: Transform @@ -77804,7 +76557,7 @@ entities: pos: 30.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12008 components: - type: Transform @@ -77812,7 +76565,7 @@ entities: pos: 25.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12009 components: - type: Transform @@ -77820,7 +76573,7 @@ entities: pos: 25.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12016 components: - type: Transform @@ -77828,14 +76581,14 @@ entities: pos: 31.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12021 components: - type: Transform pos: 29.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12022 components: - type: Transform @@ -77843,7 +76596,7 @@ entities: pos: 26.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12023 components: - type: Transform @@ -77851,7 +76604,7 @@ entities: pos: 26.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12024 components: - type: Transform @@ -77859,7 +76612,7 @@ entities: pos: 36.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12036 components: - type: Transform @@ -77867,7 +76620,7 @@ entities: pos: 26.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12037 components: - type: Transform @@ -77875,7 +76628,7 @@ entities: pos: 26.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12040 components: - type: Transform @@ -77883,7 +76636,7 @@ entities: pos: 29.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12041 components: - type: Transform @@ -77891,7 +76644,7 @@ entities: pos: 29.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12042 components: - type: Transform @@ -77899,7 +76652,7 @@ entities: pos: 29.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12061 components: - type: Transform @@ -77907,7 +76660,7 @@ entities: pos: 32.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12065 components: - type: Transform @@ -77915,7 +76668,7 @@ entities: pos: 34.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12066 components: - type: Transform @@ -77923,7 +76676,7 @@ entities: pos: 36.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12082 components: - type: Transform @@ -77931,7 +76684,7 @@ entities: pos: 7.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12101 components: - type: Transform @@ -77939,7 +76692,7 @@ entities: pos: 34.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12127 components: - type: Transform @@ -77947,7 +76700,7 @@ entities: pos: 31.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12130 components: - type: Transform @@ -77955,7 +76708,7 @@ entities: pos: 34.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12236 components: - type: Transform @@ -77963,63 +76716,63 @@ entities: pos: 32.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12464 components: - type: Transform pos: 10.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12465 components: - type: Transform pos: 10.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12466 components: - type: Transform pos: 10.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12467 components: - type: Transform pos: 10.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12468 components: - type: Transform pos: 10.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12469 components: - type: Transform pos: 10.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12470 components: - type: Transform pos: 8.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12471 components: - type: Transform pos: 8.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12474 components: - type: Transform @@ -78027,7 +76780,7 @@ entities: pos: 8.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12475 components: - type: Transform @@ -78035,7 +76788,7 @@ entities: pos: 10.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12476 components: - type: Transform @@ -78043,7 +76796,7 @@ entities: pos: 8.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12477 components: - type: Transform @@ -78051,7 +76804,7 @@ entities: pos: 8.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12478 components: - type: Transform @@ -78059,7 +76812,7 @@ entities: pos: 8.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12479 components: - type: Transform @@ -78067,7 +76820,7 @@ entities: pos: 8.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12480 components: - type: Transform @@ -78075,7 +76828,7 @@ entities: pos: 8.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12481 components: - type: Transform @@ -78083,7 +76836,7 @@ entities: pos: 8.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12482 components: - type: Transform @@ -78091,7 +76844,7 @@ entities: pos: 8.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12483 components: - type: Transform @@ -78099,7 +76852,7 @@ entities: pos: 10.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12484 components: - type: Transform @@ -78107,7 +76860,7 @@ entities: pos: 10.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12485 components: - type: Transform @@ -78115,7 +76868,7 @@ entities: pos: 10.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12486 components: - type: Transform @@ -78123,7 +76876,7 @@ entities: pos: 10.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12487 components: - type: Transform @@ -78131,7 +76884,7 @@ entities: pos: 10.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12494 components: - type: Transform @@ -78139,7 +76892,7 @@ entities: pos: 9.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12496 components: - type: Transform @@ -78147,7 +76900,7 @@ entities: pos: 9.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12497 components: - type: Transform @@ -78155,7 +76908,7 @@ entities: pos: 10.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12498 components: - type: Transform @@ -78163,7 +76916,7 @@ entities: pos: 11.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12499 components: - type: Transform @@ -78171,7 +76924,7 @@ entities: pos: 12.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12500 components: - type: Transform @@ -78179,7 +76932,7 @@ entities: pos: 13.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12501 components: - type: Transform @@ -78187,7 +76940,7 @@ entities: pos: 14.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12502 components: - type: Transform @@ -78195,7 +76948,7 @@ entities: pos: 15.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12504 components: - type: Transform @@ -78203,7 +76956,7 @@ entities: pos: 17.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12505 components: - type: Transform @@ -78211,7 +76964,7 @@ entities: pos: 19.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12506 components: - type: Transform @@ -78219,7 +76972,7 @@ entities: pos: 20.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12507 components: - type: Transform @@ -78227,7 +76980,7 @@ entities: pos: 18.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12508 components: - type: Transform @@ -78235,7 +76988,7 @@ entities: pos: 21.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12509 components: - type: Transform @@ -78243,7 +76996,7 @@ entities: pos: 21.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12510 components: - type: Transform @@ -78251,7 +77004,7 @@ entities: pos: 21.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12511 components: - type: Transform @@ -78259,7 +77012,7 @@ entities: pos: 21.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12512 components: - type: Transform @@ -78267,7 +77020,7 @@ entities: pos: 21.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12516 components: - type: Transform @@ -78275,7 +77028,7 @@ entities: pos: 11.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12517 components: - type: Transform @@ -78283,7 +77036,7 @@ entities: pos: 12.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12518 components: - type: Transform @@ -78291,7 +77044,7 @@ entities: pos: 13.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12519 components: - type: Transform @@ -78299,7 +77052,7 @@ entities: pos: 14.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12520 components: - type: Transform @@ -78307,7 +77060,7 @@ entities: pos: 15.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12521 components: - type: Transform @@ -78315,7 +77068,7 @@ entities: pos: 16.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12522 components: - type: Transform @@ -78323,7 +77076,7 @@ entities: pos: 17.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12524 components: - type: Transform @@ -78331,7 +77084,7 @@ entities: pos: 19.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12525 components: - type: Transform @@ -78339,7 +77092,7 @@ entities: pos: 20.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12526 components: - type: Transform @@ -78347,7 +77100,7 @@ entities: pos: 21.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12527 components: - type: Transform @@ -78355,7 +77108,7 @@ entities: pos: 22.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12529 components: - type: Transform @@ -78363,7 +77116,7 @@ entities: pos: 23.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12530 components: - type: Transform @@ -78371,7 +77124,7 @@ entities: pos: 23.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12531 components: - type: Transform @@ -78379,7 +77132,7 @@ entities: pos: 23.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12532 components: - type: Transform @@ -78387,7 +77140,7 @@ entities: pos: 23.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12533 components: - type: Transform @@ -78395,7 +77148,7 @@ entities: pos: 23.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12534 components: - type: Transform @@ -78403,7 +77156,7 @@ entities: pos: 23.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12535 components: - type: Transform @@ -78411,7 +77164,7 @@ entities: pos: 23.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12546 components: - type: Transform @@ -78419,7 +77172,7 @@ entities: pos: 21.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12547 components: - type: Transform @@ -78427,7 +77180,7 @@ entities: pos: 21.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12548 components: - type: Transform @@ -78435,7 +77188,7 @@ entities: pos: 21.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12549 components: - type: Transform @@ -78443,7 +77196,7 @@ entities: pos: 21.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12550 components: - type: Transform @@ -78451,7 +77204,7 @@ entities: pos: 23.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12551 components: - type: Transform @@ -78459,7 +77212,7 @@ entities: pos: 23.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12552 components: - type: Transform @@ -78467,7 +77220,7 @@ entities: pos: 21.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12553 components: - type: Transform @@ -78475,7 +77228,7 @@ entities: pos: 21.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12554 components: - type: Transform @@ -78483,7 +77236,7 @@ entities: pos: 21.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12555 components: - type: Transform @@ -78491,7 +77244,7 @@ entities: pos: 20.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12556 components: - type: Transform @@ -78499,7 +77252,7 @@ entities: pos: 20.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12557 components: - type: Transform @@ -78507,7 +77260,7 @@ entities: pos: 21.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12558 components: - type: Transform @@ -78515,14 +77268,14 @@ entities: pos: 22.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12560 components: - type: Transform pos: 23.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12561 components: - type: Transform @@ -78530,7 +77283,7 @@ entities: pos: 22.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12562 components: - type: Transform @@ -78538,7 +77291,7 @@ entities: pos: 21.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12563 components: - type: Transform @@ -78546,7 +77299,7 @@ entities: pos: 20.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12564 components: - type: Transform @@ -78554,7 +77307,7 @@ entities: pos: 19.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12565 components: - type: Transform @@ -78562,7 +77315,7 @@ entities: pos: 20.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12566 components: - type: Transform @@ -78570,7 +77323,7 @@ entities: pos: 19.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12567 components: - type: Transform @@ -78578,7 +77331,7 @@ entities: pos: 20.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12568 components: - type: Transform @@ -78586,7 +77339,7 @@ entities: pos: 19.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12569 components: - type: Transform @@ -78594,7 +77347,7 @@ entities: pos: 22.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12570 components: - type: Transform @@ -78602,7 +77355,7 @@ entities: pos: 21.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12571 components: - type: Transform @@ -78610,7 +77363,7 @@ entities: pos: 20.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12572 components: - type: Transform @@ -78618,7 +77371,7 @@ entities: pos: 19.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12573 components: - type: Transform @@ -78626,7 +77379,7 @@ entities: pos: 20.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12574 components: - type: Transform @@ -78634,7 +77387,7 @@ entities: pos: 19.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12575 components: - type: Transform @@ -78642,7 +77395,7 @@ entities: pos: 19.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12585 components: - type: Transform @@ -78650,14 +77403,14 @@ entities: pos: 24.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12586 components: - type: Transform pos: 25.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12590 components: - type: Transform @@ -78665,7 +77418,7 @@ entities: pos: 26.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12591 components: - type: Transform @@ -78673,7 +77426,7 @@ entities: pos: 26.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12592 components: - type: Transform @@ -78681,7 +77434,7 @@ entities: pos: 27.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12593 components: - type: Transform @@ -78689,7 +77442,7 @@ entities: pos: 28.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12594 components: - type: Transform @@ -78697,7 +77450,7 @@ entities: pos: 29.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12595 components: - type: Transform @@ -78705,7 +77458,7 @@ entities: pos: 30.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12596 components: - type: Transform @@ -78713,7 +77466,7 @@ entities: pos: 22.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12597 components: - type: Transform @@ -78721,7 +77474,7 @@ entities: pos: 23.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12598 components: - type: Transform @@ -78729,7 +77482,7 @@ entities: pos: 25.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12601 components: - type: Transform @@ -78737,7 +77490,7 @@ entities: pos: 27.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12602 components: - type: Transform @@ -78745,7 +77498,7 @@ entities: pos: 28.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12603 components: - type: Transform @@ -78753,7 +77506,7 @@ entities: pos: 29.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12604 components: - type: Transform @@ -78761,7 +77514,7 @@ entities: pos: 30.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12607 components: - type: Transform @@ -78769,7 +77522,7 @@ entities: pos: 24.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12608 components: - type: Transform @@ -78777,7 +77530,7 @@ entities: pos: 25.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12609 components: - type: Transform @@ -78785,63 +77538,63 @@ entities: pos: 26.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12612 components: - type: Transform pos: 26.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12613 components: - type: Transform pos: 26.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12614 components: - type: Transform pos: 26.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12615 components: - type: Transform pos: 26.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12616 components: - type: Transform pos: 26.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12617 components: - type: Transform pos: 26.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12655 components: - type: Transform pos: 28.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12658 components: - type: Transform pos: 28.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12677 components: - type: Transform @@ -78849,14 +77602,14 @@ entities: pos: 26.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12745 components: - type: Transform pos: 16.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12752 components: - type: Transform @@ -78876,7 +77629,7 @@ entities: pos: 27.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12812 components: - type: Transform @@ -78884,14 +77637,14 @@ entities: pos: 26.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12825 components: - type: Transform pos: 28.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12873 components: - type: Transform @@ -78899,7 +77652,7 @@ entities: pos: 23.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12876 components: - type: Transform @@ -78907,7 +77660,7 @@ entities: pos: 24.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12879 components: - type: Transform @@ -78915,7 +77668,7 @@ entities: pos: 22.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12880 components: - type: Transform @@ -78923,7 +77676,7 @@ entities: pos: 21.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12884 components: - type: Transform @@ -78931,7 +77684,7 @@ entities: pos: 24.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12887 components: - type: Transform @@ -78939,7 +77692,7 @@ entities: pos: 25.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12888 components: - type: Transform @@ -78947,7 +77700,7 @@ entities: pos: 27.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12907 components: - type: Transform @@ -78960,7 +77713,7 @@ entities: pos: 26.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12924 components: - type: Transform @@ -78973,7 +77726,7 @@ entities: pos: 12.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12939 components: - type: Transform @@ -78981,7 +77734,7 @@ entities: pos: 13.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12941 components: - type: Transform @@ -78989,7 +77742,7 @@ entities: pos: 15.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12942 components: - type: Transform @@ -78997,15 +77750,7 @@ entities: pos: 16.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,15.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12945 components: - type: Transform @@ -79013,7 +77758,7 @@ entities: pos: 19.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12946 components: - type: Transform @@ -79021,7 +77766,7 @@ entities: pos: 20.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12947 components: - type: Transform @@ -79029,7 +77774,7 @@ entities: pos: 21.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12948 components: - type: Transform @@ -79037,7 +77782,7 @@ entities: pos: 22.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12950 components: - type: Transform @@ -79045,7 +77790,7 @@ entities: pos: 23.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12952 components: - type: Transform @@ -79053,7 +77798,7 @@ entities: pos: 23.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12953 components: - type: Transform @@ -79061,7 +77806,7 @@ entities: pos: 23.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12955 components: - type: Transform @@ -79069,7 +77814,7 @@ entities: pos: 23.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12957 components: - type: Transform @@ -79077,7 +77822,7 @@ entities: pos: 25.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12958 components: - type: Transform @@ -79085,7 +77830,7 @@ entities: pos: 24.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12962 components: - type: Transform @@ -79093,7 +77838,7 @@ entities: pos: 27.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12964 components: - type: Transform @@ -79101,7 +77846,7 @@ entities: pos: 29.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12965 components: - type: Transform @@ -79109,7 +77854,7 @@ entities: pos: 30.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12966 components: - type: Transform @@ -79117,21 +77862,21 @@ entities: pos: 31.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12967 components: - type: Transform pos: 32.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12968 components: - type: Transform pos: 32.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12969 components: - type: Transform @@ -79139,7 +77884,7 @@ entities: pos: 33.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12970 components: - type: Transform @@ -79147,7 +77892,7 @@ entities: pos: 34.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12971 components: - type: Transform @@ -79155,7 +77900,7 @@ entities: pos: 35.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12972 components: - type: Transform @@ -79163,7 +77908,7 @@ entities: pos: 36.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12977 components: - type: Transform @@ -79171,7 +77916,7 @@ entities: pos: 22.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12978 components: - type: Transform @@ -79179,7 +77924,7 @@ entities: pos: 21.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12979 components: - type: Transform @@ -79187,7 +77932,7 @@ entities: pos: 20.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12980 components: - type: Transform @@ -79195,7 +77940,7 @@ entities: pos: 19.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12981 components: - type: Transform @@ -79203,7 +77948,7 @@ entities: pos: 18.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12982 components: - type: Transform @@ -79211,21 +77956,21 @@ entities: pos: 17.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12984 components: - type: Transform pos: 23.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12985 components: - type: Transform pos: 23.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12987 components: - type: Transform @@ -79233,7 +77978,7 @@ entities: pos: 14.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12988 components: - type: Transform @@ -79241,7 +77986,7 @@ entities: pos: 14.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12990 components: - type: Transform @@ -79249,7 +77994,7 @@ entities: pos: 14.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12992 components: - type: Transform @@ -79257,7 +78002,7 @@ entities: pos: 15.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12993 components: - type: Transform @@ -79265,7 +78010,7 @@ entities: pos: 16.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12994 components: - type: Transform @@ -79273,7 +78018,7 @@ entities: pos: 17.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12998 components: - type: Transform @@ -79281,7 +78026,7 @@ entities: pos: 22.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12999 components: - type: Transform @@ -79289,7 +78034,7 @@ entities: pos: 21.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13000 components: - type: Transform @@ -79297,7 +78042,7 @@ entities: pos: 20.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13001 components: - type: Transform @@ -79305,7 +78050,7 @@ entities: pos: 19.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13008 components: - type: Transform @@ -79313,7 +78058,7 @@ entities: pos: 9.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13009 components: - type: Transform @@ -79321,7 +78066,7 @@ entities: pos: 10.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13010 components: - type: Transform @@ -79329,7 +78074,7 @@ entities: pos: 11.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13012 components: - type: Transform @@ -79337,7 +78082,7 @@ entities: pos: 12.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13013 components: - type: Transform @@ -79345,7 +78090,7 @@ entities: pos: 12.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13014 components: - type: Transform @@ -79353,7 +78098,7 @@ entities: pos: 12.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13015 components: - type: Transform @@ -79361,7 +78106,7 @@ entities: pos: 12.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13018 components: - type: Transform @@ -79369,7 +78114,7 @@ entities: pos: 14.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13019 components: - type: Transform @@ -79377,7 +78122,7 @@ entities: pos: 15.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13020 components: - type: Transform @@ -79385,14 +78130,14 @@ entities: pos: 16.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13021 components: - type: Transform pos: 17.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13023 components: - type: Transform @@ -79400,7 +78145,7 @@ entities: pos: 12.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13025 components: - type: Transform @@ -79408,7 +78153,7 @@ entities: pos: 13.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13026 components: - type: Transform @@ -79416,7 +78161,7 @@ entities: pos: 14.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13027 components: - type: Transform @@ -79424,7 +78169,7 @@ entities: pos: 15.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13028 components: - type: Transform @@ -79432,7 +78177,7 @@ entities: pos: 16.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13029 components: - type: Transform @@ -79440,7 +78185,7 @@ entities: pos: 17.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13031 components: - type: Transform @@ -79448,7 +78193,7 @@ entities: pos: 19.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13032 components: - type: Transform @@ -79456,21 +78201,21 @@ entities: pos: 20.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13040 components: - type: Transform pos: 17.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13041 components: - type: Transform pos: 17.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13042 components: - type: Transform @@ -79478,7 +78223,7 @@ entities: pos: 18.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13043 components: - type: Transform @@ -79486,7 +78231,7 @@ entities: pos: 19.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13044 components: - type: Transform @@ -79494,7 +78239,7 @@ entities: pos: 20.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13045 components: - type: Transform @@ -79502,7 +78247,7 @@ entities: pos: 21.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13046 components: - type: Transform @@ -79510,7 +78255,7 @@ entities: pos: 21.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13047 components: - type: Transform @@ -79518,23 +78263,7 @@ entities: pos: 21.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,12.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,13.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13050 components: - type: Transform @@ -79542,7 +78271,7 @@ entities: pos: 20.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13051 components: - type: Transform @@ -79550,7 +78279,7 @@ entities: pos: 19.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13052 components: - type: Transform @@ -79558,7 +78287,7 @@ entities: pos: 18.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13053 components: - type: Transform @@ -79566,28 +78295,28 @@ entities: pos: 17.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13054 components: - type: Transform pos: 21.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13055 components: - type: Transform pos: 21.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13056 components: - type: Transform pos: 21.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13057 components: - type: Transform @@ -79595,7 +78324,7 @@ entities: pos: 22.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13058 components: - type: Transform @@ -79603,7 +78332,7 @@ entities: pos: 23.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13060 components: - type: Transform @@ -79611,7 +78340,7 @@ entities: pos: 24.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13061 components: - type: Transform @@ -79619,7 +78348,7 @@ entities: pos: 26.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13062 components: - type: Transform @@ -79627,7 +78356,7 @@ entities: pos: 28.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13063 components: - type: Transform @@ -79635,7 +78364,7 @@ entities: pos: 29.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13064 components: - type: Transform @@ -79643,7 +78372,7 @@ entities: pos: 30.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13065 components: - type: Transform @@ -79651,7 +78380,7 @@ entities: pos: 31.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13066 components: - type: Transform @@ -79659,7 +78388,7 @@ entities: pos: 32.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13067 components: - type: Transform @@ -79667,7 +78396,7 @@ entities: pos: 33.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13068 components: - type: Transform @@ -79675,7 +78404,7 @@ entities: pos: 34.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13069 components: - type: Transform @@ -79683,7 +78412,7 @@ entities: pos: 35.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13070 components: - type: Transform @@ -79691,7 +78420,7 @@ entities: pos: 36.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13071 components: - type: Transform @@ -79699,7 +78428,7 @@ entities: pos: 37.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13089 components: - type: Transform @@ -79707,7 +78436,7 @@ entities: pos: 24.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13090 components: - type: Transform @@ -79715,14 +78444,14 @@ entities: pos: 25.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13152 components: - type: Transform pos: 28.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13337 components: - type: Transform @@ -79730,7 +78459,7 @@ entities: pos: 25.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13339 components: - type: Transform @@ -79738,7 +78467,7 @@ entities: pos: 39.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13348 components: - type: Transform @@ -79746,7 +78475,7 @@ entities: pos: 40.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13349 components: - type: Transform @@ -79754,7 +78483,7 @@ entities: pos: 40.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13350 components: - type: Transform @@ -79762,7 +78491,7 @@ entities: pos: 40.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13351 components: - type: Transform @@ -79770,7 +78499,7 @@ entities: pos: 40.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13352 components: - type: Transform @@ -79778,14 +78507,14 @@ entities: pos: 40.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13468 components: - type: Transform pos: 16.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13635 components: - type: Transform @@ -79793,7 +78522,7 @@ entities: pos: 51.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13636 components: - type: Transform @@ -79801,7 +78530,7 @@ entities: pos: 49.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13637 components: - type: Transform @@ -79809,7 +78538,7 @@ entities: pos: 47.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13638 components: - type: Transform @@ -79817,7 +78546,7 @@ entities: pos: 45.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13639 components: - type: Transform @@ -79825,7 +78554,7 @@ entities: pos: 43.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13640 components: - type: Transform @@ -79833,7 +78562,7 @@ entities: pos: 34.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13641 components: - type: Transform @@ -79841,7 +78570,7 @@ entities: pos: 36.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13754 components: - type: Transform @@ -79849,7 +78578,7 @@ entities: pos: 32.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13755 components: - type: Transform @@ -79857,7 +78586,7 @@ entities: pos: 33.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13756 components: - type: Transform @@ -79865,7 +78594,7 @@ entities: pos: 34.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13758 components: - type: Transform @@ -79873,7 +78602,7 @@ entities: pos: 36.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13759 components: - type: Transform @@ -79881,7 +78610,7 @@ entities: pos: 37.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13760 components: - type: Transform @@ -79889,7 +78618,7 @@ entities: pos: 38.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13761 components: - type: Transform @@ -79897,7 +78626,7 @@ entities: pos: 39.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13762 components: - type: Transform @@ -79905,7 +78634,7 @@ entities: pos: 40.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13763 components: - type: Transform @@ -79913,7 +78642,7 @@ entities: pos: 41.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13764 components: - type: Transform @@ -79921,7 +78650,7 @@ entities: pos: 42.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13766 components: - type: Transform @@ -79929,7 +78658,7 @@ entities: pos: 44.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13769 components: - type: Transform @@ -79937,7 +78666,7 @@ entities: pos: 32.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13770 components: - type: Transform @@ -79945,7 +78674,7 @@ entities: pos: 33.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13771 components: - type: Transform @@ -79953,7 +78682,7 @@ entities: pos: 34.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13773 components: - type: Transform @@ -79961,7 +78690,7 @@ entities: pos: 36.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13774 components: - type: Transform @@ -79969,7 +78698,7 @@ entities: pos: 37.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13775 components: - type: Transform @@ -79977,7 +78706,7 @@ entities: pos: 38.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13777 components: - type: Transform @@ -79985,7 +78714,7 @@ entities: pos: 40.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13778 components: - type: Transform @@ -79993,7 +78722,7 @@ entities: pos: 41.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13779 components: - type: Transform @@ -80001,7 +78730,7 @@ entities: pos: 42.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13780 components: - type: Transform @@ -80009,7 +78738,7 @@ entities: pos: 43.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13781 components: - type: Transform @@ -80017,28 +78746,28 @@ entities: pos: 44.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13785 components: - type: Transform pos: 30.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13786 components: - type: Transform pos: 30.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13787 components: - type: Transform pos: 30.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13792 components: - type: Transform @@ -80046,7 +78775,7 @@ entities: pos: 29.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13793 components: - type: Transform @@ -80054,7 +78783,7 @@ entities: pos: 29.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13794 components: - type: Transform @@ -80062,7 +78791,7 @@ entities: pos: 29.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13795 components: - type: Transform @@ -80070,7 +78799,7 @@ entities: pos: 29.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13796 components: - type: Transform @@ -80078,7 +78807,7 @@ entities: pos: 29.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13797 components: - type: Transform @@ -80086,28 +78815,152 @@ entities: pos: 29.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 13955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 13956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-44.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14448 + components: + - type: Transform + pos: 21.5,12.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14454 + components: + - type: Transform + pos: -25.5,8.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14461 + components: + - type: Transform + pos: 21.5,13.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-61.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-59.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14498 + components: + - type: Transform + pos: -25.5,11.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,15.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-62.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,12.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,11.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 14974 components: - type: Transform pos: 16.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14975 components: - type: Transform pos: 16.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14977 components: - type: Transform pos: 16.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14980 components: - type: Transform @@ -80115,7 +78968,7 @@ entities: pos: 19.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14981 components: - type: Transform @@ -80123,63 +78976,63 @@ entities: pos: 18.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14988 components: - type: Transform pos: 16.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14990 components: - type: Transform pos: 16.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15018 components: - type: Transform pos: 16.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15049 components: - type: Transform pos: 16.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15053 components: - type: Transform pos: 16.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15054 components: - type: Transform pos: 16.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15055 components: - type: Transform pos: 16.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15061 components: - type: Transform pos: 16.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15453 components: - type: Transform @@ -80187,7 +79040,7 @@ entities: pos: 50.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15454 components: - type: Transform @@ -80195,7 +79048,7 @@ entities: pos: 48.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15455 components: - type: Transform @@ -80203,7 +79056,7 @@ entities: pos: 46.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15456 components: - type: Transform @@ -80211,7 +79064,7 @@ entities: pos: 44.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15457 components: - type: Transform @@ -80219,7 +79072,7 @@ entities: pos: 33.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15458 components: - type: Transform @@ -80227,7 +79080,7 @@ entities: pos: 35.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15459 components: - type: Transform @@ -80235,7 +79088,7 @@ entities: pos: 37.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15618 components: - type: Transform @@ -80243,7 +79096,7 @@ entities: pos: 52.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15624 components: - type: Transform @@ -80251,21 +79104,21 @@ entities: pos: 38.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15734 components: - type: Transform pos: 42.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15735 components: - type: Transform pos: 42.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15740 components: - type: Transform @@ -80273,7 +79126,7 @@ entities: pos: 39.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15741 components: - type: Transform @@ -80281,7 +79134,7 @@ entities: pos: 40.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15743 components: - type: Transform @@ -80289,35 +79142,35 @@ entities: pos: 41.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15744 components: - type: Transform pos: 42.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15745 components: - type: Transform pos: 42.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15746 components: - type: Transform pos: 42.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15747 components: - type: Transform pos: 42.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15748 components: - type: Transform @@ -80325,14 +79178,14 @@ entities: pos: 52.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15994 components: - type: Transform pos: 32.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16101 components: - type: Transform @@ -80340,7 +79193,7 @@ entities: pos: 34.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16102 components: - type: Transform @@ -80348,7 +79201,7 @@ entities: pos: 26.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16122 components: - type: Transform @@ -80356,7 +79209,7 @@ entities: pos: 24.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16783 components: - type: Transform @@ -80364,56 +79217,79 @@ entities: pos: 17.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 17715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18077 + components: + - type: Transform + pos: 16.5,11.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 18377 components: - type: Transform pos: -45.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18378 components: - type: Transform pos: -45.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18379 components: - type: Transform pos: -45.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18381 components: - type: Transform pos: -45.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18382 components: - type: Transform pos: -45.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18383 components: - type: Transform pos: -45.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18384 components: - type: Transform pos: -45.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18388 components: - type: Transform @@ -80421,7 +79297,7 @@ entities: pos: -60.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18389 components: - type: Transform @@ -80429,7 +79305,7 @@ entities: pos: -59.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18390 components: - type: Transform @@ -80437,7 +79313,7 @@ entities: pos: -58.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18392 components: - type: Transform @@ -80445,7 +79321,7 @@ entities: pos: -56.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18393 components: - type: Transform @@ -80453,7 +79329,7 @@ entities: pos: -55.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18394 components: - type: Transform @@ -80461,7 +79337,7 @@ entities: pos: -54.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18395 components: - type: Transform @@ -80469,7 +79345,7 @@ entities: pos: -53.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18396 components: - type: Transform @@ -80477,7 +79353,7 @@ entities: pos: -52.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18398 components: - type: Transform @@ -80485,7 +79361,7 @@ entities: pos: -50.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18399 components: - type: Transform @@ -80493,7 +79369,7 @@ entities: pos: -51.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18400 components: - type: Transform @@ -80501,7 +79377,7 @@ entities: pos: -48.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18401 components: - type: Transform @@ -80509,7 +79385,7 @@ entities: pos: -47.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18402 components: - type: Transform @@ -80517,91 +79393,91 @@ entities: pos: -46.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18404 components: - type: Transform pos: -44.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18405 components: - type: Transform pos: -44.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18406 components: - type: Transform pos: -44.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18407 components: - type: Transform pos: -44.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18408 components: - type: Transform pos: -44.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18409 components: - type: Transform pos: -44.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18410 components: - type: Transform pos: -44.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18411 components: - type: Transform pos: -44.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18413 components: - type: Transform pos: -44.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18414 components: - type: Transform pos: -44.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18417 components: - type: Transform pos: -62.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18418 components: - type: Transform pos: -62.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18419 components: - type: Transform @@ -80609,7 +79485,7 @@ entities: pos: -60.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18420 components: - type: Transform @@ -80617,7 +79493,7 @@ entities: pos: -59.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18422 components: - type: Transform @@ -80625,7 +79501,7 @@ entities: pos: -57.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18423 components: - type: Transform @@ -80633,7 +79509,7 @@ entities: pos: -56.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18424 components: - type: Transform @@ -80641,7 +79517,7 @@ entities: pos: -55.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18425 components: - type: Transform @@ -80649,7 +79525,7 @@ entities: pos: -54.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18427 components: - type: Transform @@ -80657,7 +79533,7 @@ entities: pos: -52.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18428 components: - type: Transform @@ -80665,7 +79541,7 @@ entities: pos: -49.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18429 components: - type: Transform @@ -80673,7 +79549,7 @@ entities: pos: -50.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18431 components: - type: Transform @@ -80681,7 +79557,7 @@ entities: pos: -48.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18432 components: - type: Transform @@ -80689,7 +79565,7 @@ entities: pos: -47.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18433 components: - type: Transform @@ -80697,7 +79573,7 @@ entities: pos: -46.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18434 components: - type: Transform @@ -80705,7 +79581,7 @@ entities: pos: -45.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18443 components: - type: Transform @@ -80713,21 +79589,21 @@ entities: pos: -62.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18444 components: - type: Transform pos: -63.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18445 components: - type: Transform pos: -63.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18448 components: - type: Transform @@ -80735,189 +79611,189 @@ entities: pos: -63.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18452 components: - type: Transform pos: -62.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18453 components: - type: Transform pos: -62.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18454 components: - type: Transform pos: -62.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18455 components: - type: Transform pos: -62.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18456 components: - type: Transform pos: -62.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18457 components: - type: Transform pos: -62.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18458 components: - type: Transform pos: -62.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18459 components: - type: Transform pos: -62.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18460 components: - type: Transform pos: -62.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18461 components: - type: Transform pos: -62.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18462 components: - type: Transform pos: -62.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18463 components: - type: Transform pos: -62.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18464 components: - type: Transform pos: -62.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18465 components: - type: Transform pos: -61.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18466 components: - type: Transform pos: -61.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18467 components: - type: Transform pos: -61.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18468 components: - type: Transform pos: -61.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18469 components: - type: Transform pos: -61.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18470 components: - type: Transform pos: -61.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18471 components: - type: Transform pos: -61.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18472 components: - type: Transform pos: -61.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18473 components: - type: Transform pos: -61.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18474 components: - type: Transform pos: -61.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18475 components: - type: Transform pos: -61.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18476 components: - type: Transform pos: -61.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18477 components: - type: Transform pos: -61.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18480 components: - type: Transform @@ -80925,7 +79801,7 @@ entities: pos: -63.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18481 components: - type: Transform @@ -80933,7 +79809,7 @@ entities: pos: -60.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18482 components: - type: Transform @@ -80941,7 +79817,7 @@ entities: pos: -59.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18483 components: - type: Transform @@ -80949,49 +79825,49 @@ entities: pos: -64.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18486 components: - type: Transform pos: -65.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18487 components: - type: Transform pos: -65.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18488 components: - type: Transform pos: -65.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18489 components: - type: Transform pos: -65.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18490 components: - type: Transform pos: -65.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18491 components: - type: Transform pos: -65.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18494 components: - type: Transform @@ -80999,28 +79875,28 @@ entities: pos: -63.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18495 components: - type: Transform pos: -62.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18496 components: - type: Transform pos: -62.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18497 components: - type: Transform pos: -62.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18499 components: - type: Transform @@ -81028,7 +79904,7 @@ entities: pos: -66.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18500 components: - type: Transform @@ -81036,7 +79912,7 @@ entities: pos: -67.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18502 components: - type: Transform @@ -81044,7 +79920,7 @@ entities: pos: -69.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18503 components: - type: Transform @@ -81052,7 +79928,7 @@ entities: pos: -70.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18504 components: - type: Transform @@ -81060,7 +79936,7 @@ entities: pos: -71.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18505 components: - type: Transform @@ -81068,7 +79944,7 @@ entities: pos: -72.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18506 components: - type: Transform @@ -81076,7 +79952,7 @@ entities: pos: -73.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18507 components: - type: Transform @@ -81084,7 +79960,7 @@ entities: pos: -74.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18508 components: - type: Transform @@ -81092,7 +79968,7 @@ entities: pos: -75.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18509 components: - type: Transform @@ -81100,21 +79976,21 @@ entities: pos: -76.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18511 components: - type: Transform pos: -77.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18512 components: - type: Transform pos: -77.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18514 components: - type: Transform @@ -81122,7 +79998,7 @@ entities: pos: -78.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18515 components: - type: Transform @@ -81130,7 +80006,7 @@ entities: pos: -78.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18516 components: - type: Transform @@ -81138,7 +80014,7 @@ entities: pos: -78.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18517 components: - type: Transform @@ -81146,7 +80022,7 @@ entities: pos: -78.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18518 components: - type: Transform @@ -81154,7 +80030,7 @@ entities: pos: -78.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18522 components: - type: Transform @@ -81162,7 +80038,7 @@ entities: pos: -68.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18527 components: - type: Transform @@ -81170,7 +80046,7 @@ entities: pos: -64.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18528 components: - type: Transform @@ -81178,7 +80054,7 @@ entities: pos: -65.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18529 components: - type: Transform @@ -81186,63 +80062,63 @@ entities: pos: -66.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18530 components: - type: Transform pos: -67.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18531 components: - type: Transform pos: -67.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18532 components: - type: Transform pos: -67.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18533 components: - type: Transform pos: -67.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18535 components: - type: Transform pos: -67.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18536 components: - type: Transform pos: -67.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18537 components: - type: Transform pos: -67.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18538 components: - type: Transform pos: -67.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18539 components: - type: Transform @@ -81250,7 +80126,7 @@ entities: pos: -66.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18540 components: - type: Transform @@ -81258,7 +80134,7 @@ entities: pos: -65.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18541 components: - type: Transform @@ -81266,7 +80142,7 @@ entities: pos: -64.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18543 components: - type: Transform @@ -81274,15 +80150,7 @@ entities: pos: -62.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-59.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18545 components: - type: Transform @@ -81290,7 +80158,7 @@ entities: pos: -60.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18546 components: - type: Transform @@ -81298,7 +80166,7 @@ entities: pos: -59.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18548 components: - type: Transform @@ -81306,7 +80174,7 @@ entities: pos: -57.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18549 components: - type: Transform @@ -81314,7 +80182,7 @@ entities: pos: -56.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18551 components: - type: Transform @@ -81322,7 +80190,7 @@ entities: pos: -56.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18552 components: - type: Transform @@ -81330,7 +80198,7 @@ entities: pos: -56.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18553 components: - type: Transform @@ -81338,7 +80206,7 @@ entities: pos: -56.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18555 components: - type: Transform @@ -81346,7 +80214,7 @@ entities: pos: -56.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18556 components: - type: Transform @@ -81354,7 +80222,7 @@ entities: pos: -56.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18557 components: - type: Transform @@ -81362,7 +80230,7 @@ entities: pos: -56.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18558 components: - type: Transform @@ -81370,7 +80238,7 @@ entities: pos: -57.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18559 components: - type: Transform @@ -81378,7 +80246,7 @@ entities: pos: -58.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18560 components: - type: Transform @@ -81386,7 +80254,7 @@ entities: pos: -59.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18561 components: - type: Transform @@ -81394,7 +80262,7 @@ entities: pos: -60.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18562 components: - type: Transform @@ -81402,63 +80270,63 @@ entities: pos: -61.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18563 components: - type: Transform pos: -55.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18564 components: - type: Transform pos: -55.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18565 components: - type: Transform pos: -55.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18567 components: - type: Transform pos: -55.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18569 components: - type: Transform pos: -55.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18571 components: - type: Transform pos: -55.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18572 components: - type: Transform pos: -55.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18573 components: - type: Transform pos: -55.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18574 components: - type: Transform @@ -81466,7 +80334,7 @@ entities: pos: -56.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18575 components: - type: Transform @@ -81474,7 +80342,7 @@ entities: pos: -57.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18576 components: - type: Transform @@ -81482,7 +80350,7 @@ entities: pos: -58.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18577 components: - type: Transform @@ -81490,7 +80358,7 @@ entities: pos: -59.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18579 components: - type: Transform @@ -81498,7 +80366,7 @@ entities: pos: -62.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18580 components: - type: Transform @@ -81506,7 +80374,7 @@ entities: pos: -63.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18581 components: - type: Transform @@ -81514,7 +80382,7 @@ entities: pos: -64.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18582 components: - type: Transform @@ -81522,7 +80390,7 @@ entities: pos: -65.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18583 components: - type: Transform @@ -81530,7 +80398,7 @@ entities: pos: -66.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18584 components: - type: Transform @@ -81538,7 +80406,7 @@ entities: pos: -67.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18585 components: - type: Transform @@ -81546,7 +80414,7 @@ entities: pos: -68.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18586 components: - type: Transform @@ -81554,7 +80422,7 @@ entities: pos: -68.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18587 components: - type: Transform @@ -81562,7 +80430,7 @@ entities: pos: -68.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18588 components: - type: Transform @@ -81570,7 +80438,7 @@ entities: pos: -68.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18589 components: - type: Transform @@ -81578,7 +80446,7 @@ entities: pos: -68.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18590 components: - type: Transform @@ -81586,7 +80454,7 @@ entities: pos: -68.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18592 components: - type: Transform @@ -81594,7 +80462,7 @@ entities: pos: -68.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18593 components: - type: Transform @@ -81602,7 +80470,7 @@ entities: pos: -68.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18594 components: - type: Transform @@ -81610,7 +80478,7 @@ entities: pos: -68.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18595 components: - type: Transform @@ -81618,7 +80486,7 @@ entities: pos: -68.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18596 components: - type: Transform @@ -81626,7 +80494,7 @@ entities: pos: -67.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18597 components: - type: Transform @@ -81634,7 +80502,7 @@ entities: pos: -66.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18598 components: - type: Transform @@ -81642,7 +80510,7 @@ entities: pos: -65.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18600 components: - type: Transform @@ -81650,15 +80518,7 @@ entities: pos: -63.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18602 components: - type: Transform @@ -81666,7 +80526,7 @@ entities: pos: -61.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18605 components: - type: Transform @@ -81674,7 +80534,7 @@ entities: pos: -58.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18606 components: - type: Transform @@ -81682,7 +80542,7 @@ entities: pos: -57.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18607 components: - type: Transform @@ -81690,7 +80550,7 @@ entities: pos: -56.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18617 components: - type: Transform @@ -81698,7 +80558,7 @@ entities: pos: -61.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18619 components: - type: Transform @@ -81706,7 +80566,7 @@ entities: pos: -60.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18620 components: - type: Transform @@ -81714,7 +80574,7 @@ entities: pos: -59.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18622 components: - type: Transform @@ -81722,7 +80582,7 @@ entities: pos: -58.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18624 components: - type: Transform @@ -81730,7 +80590,7 @@ entities: pos: -58.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18625 components: - type: Transform @@ -81738,7 +80598,7 @@ entities: pos: -58.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18626 components: - type: Transform @@ -81746,7 +80606,7 @@ entities: pos: -58.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18627 components: - type: Transform @@ -81754,7 +80614,7 @@ entities: pos: -58.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18628 components: - type: Transform @@ -81762,7 +80622,7 @@ entities: pos: -58.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18631 components: - type: Transform @@ -81770,7 +80630,7 @@ entities: pos: -62.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18632 components: - type: Transform @@ -81778,7 +80638,7 @@ entities: pos: -63.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18633 components: - type: Transform @@ -81786,7 +80646,7 @@ entities: pos: -64.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18634 components: - type: Transform @@ -81794,7 +80654,7 @@ entities: pos: -65.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18635 components: - type: Transform @@ -81802,7 +80662,7 @@ entities: pos: -66.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18638 components: - type: Transform @@ -81810,7 +80670,7 @@ entities: pos: -69.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18639 components: - type: Transform @@ -81818,7 +80678,7 @@ entities: pos: -70.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18640 components: - type: Transform @@ -81826,7 +80686,7 @@ entities: pos: -71.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18641 components: - type: Transform @@ -81834,7 +80694,7 @@ entities: pos: -72.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18642 components: - type: Transform @@ -81842,7 +80702,7 @@ entities: pos: -73.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18643 components: - type: Transform @@ -81850,7 +80710,7 @@ entities: pos: -74.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18645 components: - type: Transform @@ -81858,7 +80718,7 @@ entities: pos: -76.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18646 components: - type: Transform @@ -81866,7 +80726,7 @@ entities: pos: -77.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18647 components: - type: Transform @@ -81874,7 +80734,7 @@ entities: pos: -78.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18649 components: - type: Transform @@ -81882,7 +80742,7 @@ entities: pos: -79.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18650 components: - type: Transform @@ -81890,7 +80750,7 @@ entities: pos: -79.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18651 components: - type: Transform @@ -81898,7 +80758,7 @@ entities: pos: -79.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18652 components: - type: Transform @@ -81906,7 +80766,7 @@ entities: pos: -79.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18653 components: - type: Transform @@ -81914,7 +80774,7 @@ entities: pos: -79.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18654 components: - type: Transform @@ -81922,28 +80782,28 @@ entities: pos: -79.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18656 components: - type: Transform pos: -75.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18657 components: - type: Transform pos: -75.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18659 components: - type: Transform pos: -75.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18660 components: - type: Transform @@ -81951,7 +80811,7 @@ entities: pos: -76.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18664 components: - type: Transform @@ -81959,7 +80819,7 @@ entities: pos: -67.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18665 components: - type: Transform @@ -81967,7 +80827,7 @@ entities: pos: -67.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18666 components: - type: Transform @@ -81975,7 +80835,7 @@ entities: pos: -67.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18669 components: - type: Transform @@ -81983,7 +80843,7 @@ entities: pos: -56.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18670 components: - type: Transform @@ -81991,7 +80851,7 @@ entities: pos: -56.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18671 components: - type: Transform @@ -81999,7 +80859,7 @@ entities: pos: -56.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18672 components: - type: Transform @@ -82007,7 +80867,7 @@ entities: pos: -55.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18673 components: - type: Transform @@ -82015,7 +80875,7 @@ entities: pos: -55.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18680 components: - type: Transform @@ -82023,7 +80883,7 @@ entities: pos: -54.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18681 components: - type: Transform @@ -82031,7 +80891,7 @@ entities: pos: -53.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18682 components: - type: Transform @@ -82039,7 +80899,7 @@ entities: pos: -55.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18683 components: - type: Transform @@ -82047,7 +80907,7 @@ entities: pos: -54.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18684 components: - type: Transform @@ -82055,7 +80915,7 @@ entities: pos: -53.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18685 components: - type: Transform @@ -82063,7 +80923,7 @@ entities: pos: -54.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18686 components: - type: Transform @@ -82071,7 +80931,7 @@ entities: pos: -53.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18687 components: - type: Transform @@ -82079,7 +80939,7 @@ entities: pos: -54.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18688 components: - type: Transform @@ -82087,7 +80947,7 @@ entities: pos: -53.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18689 components: - type: Transform @@ -82095,7 +80955,7 @@ entities: pos: -55.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18690 components: - type: Transform @@ -82103,7 +80963,7 @@ entities: pos: -55.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18701 components: - type: Transform @@ -82111,7 +80971,7 @@ entities: pos: -69.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18702 components: - type: Transform @@ -82119,7 +80979,7 @@ entities: pos: -70.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18703 components: - type: Transform @@ -82127,7 +80987,7 @@ entities: pos: -71.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18705 components: - type: Transform @@ -82135,7 +80995,7 @@ entities: pos: -68.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18706 components: - type: Transform @@ -82143,7 +81003,7 @@ entities: pos: -69.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18707 components: - type: Transform @@ -82151,7 +81011,7 @@ entities: pos: -70.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18708 components: - type: Transform @@ -82159,7 +81019,7 @@ entities: pos: -71.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18709 components: - type: Transform @@ -82167,7 +81027,7 @@ entities: pos: -72.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18710 components: - type: Transform @@ -82175,7 +81035,7 @@ entities: pos: -73.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18712 components: - type: Transform @@ -82183,7 +81043,7 @@ entities: pos: -75.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18713 components: - type: Transform @@ -82191,7 +81051,7 @@ entities: pos: -76.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18714 components: - type: Transform @@ -82199,7 +81059,7 @@ entities: pos: -77.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18715 components: - type: Transform @@ -82207,7 +81067,7 @@ entities: pos: -78.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18716 components: - type: Transform @@ -82215,7 +81075,7 @@ entities: pos: -79.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18718 components: - type: Transform @@ -82223,7 +81083,7 @@ entities: pos: -81.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18719 components: - type: Transform @@ -82231,7 +81091,7 @@ entities: pos: -82.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18721 components: - type: Transform @@ -82239,7 +81099,7 @@ entities: pos: -76.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18722 components: - type: Transform @@ -82247,7 +81107,7 @@ entities: pos: -74.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18723 components: - type: Transform @@ -82255,7 +81115,7 @@ entities: pos: -73.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18724 components: - type: Transform @@ -82263,7 +81123,7 @@ entities: pos: -72.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18725 components: - type: Transform @@ -82271,7 +81131,7 @@ entities: pos: -77.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18726 components: - type: Transform @@ -82279,7 +81139,7 @@ entities: pos: -78.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18727 components: - type: Transform @@ -82287,7 +81147,7 @@ entities: pos: -79.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18728 components: - type: Transform @@ -82295,7 +81155,7 @@ entities: pos: -75.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18735 components: - type: Transform @@ -82303,7 +81163,7 @@ entities: pos: -68.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18736 components: - type: Transform @@ -82311,7 +81171,7 @@ entities: pos: -69.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18737 components: - type: Transform @@ -82319,7 +81179,7 @@ entities: pos: -70.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18738 components: - type: Transform @@ -82327,7 +81187,7 @@ entities: pos: -71.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18740 components: - type: Transform @@ -82335,7 +81195,7 @@ entities: pos: -73.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18741 components: - type: Transform @@ -82343,7 +81203,7 @@ entities: pos: -74.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18742 components: - type: Transform @@ -82351,7 +81211,7 @@ entities: pos: -75.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18746 components: - type: Transform @@ -82359,7 +81219,7 @@ entities: pos: -69.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18747 components: - type: Transform @@ -82367,7 +81227,7 @@ entities: pos: -70.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18749 components: - type: Transform @@ -82375,7 +81235,7 @@ entities: pos: -72.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18750 components: - type: Transform @@ -82383,7 +81243,7 @@ entities: pos: -73.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18751 components: - type: Transform @@ -82391,7 +81251,7 @@ entities: pos: -74.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18752 components: - type: Transform @@ -82399,7 +81259,7 @@ entities: pos: -75.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18755 components: - type: Transform @@ -82407,7 +81267,7 @@ entities: pos: -71.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18760 components: - type: Transform @@ -82415,102 +81275,138 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 18761 + - uid: 20329 components: - type: Transform - pos: -59.5,-62.5 + pos: 4.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18762 + color: '#0000FFFF' + - uid: 20330 components: - type: Transform - pos: -59.5,-63.5 + pos: 4.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18764 + color: '#0000FFFF' + - uid: 20331 components: - type: Transform - pos: -58.5,-60.5 + pos: 4.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18765 + color: '#0000FFFF' + - uid: 20332 components: - type: Transform - pos: -58.5,-61.5 + pos: 4.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18766 + color: '#0000FFFF' + - uid: 20333 components: - type: Transform - pos: -58.5,-62.5 + pos: 4.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18767 + color: '#0000FFFF' + - uid: 20640 components: - type: Transform - pos: -58.5,-63.5 + rot: -1.5707963267948966 rad + pos: -2.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18768 + color: '#FF0000FF' + - uid: 20641 components: - type: Transform - pos: -58.5,-64.5 + rot: 1.5707963267948966 rad + pos: -3.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18771 + color: '#FF0000FF' + - uid: 20643 components: - type: Transform - pos: -64.5,-61.5 + rot: 1.5707963267948966 rad + pos: 5.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18773 + color: '#03FCD3FF' + - uid: 20646 components: - type: Transform - pos: -64.5,-63.5 + rot: -1.5707963267948966 rad + pos: 6.5,-51.5 parent: 30 - - uid: 20329 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20650 components: - type: Transform - pos: 4.5,-3.5 + rot: 3.141592653589793 rad + pos: -3.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 20330 + color: '#FF0000FF' + - uid: 20651 components: - type: Transform - pos: 4.5,-4.5 + pos: 3.5,-54.5 + parent: 30 + - uid: 20652 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 30 + - uid: 20658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 20331 + color: '#03FCD3FF' + - uid: 20659 components: - type: Transform - pos: 4.5,-5.5 + rot: 1.5707963267948966 rad + pos: 4.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 20332 + color: '#03FCD3FF' + - uid: 20660 components: - type: Transform - pos: 4.5,-6.5 + rot: 1.5707963267948966 rad + pos: 3.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 20333 + color: '#03FCD3FF' + - uid: 20661 components: - type: Transform - pos: 4.5,-7.5 + rot: 1.5707963267948966 rad + pos: 2.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#03FCD3FF' + - uid: 20662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20669 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 21264 components: - type: Transform @@ -82518,7 +81414,7 @@ entities: pos: 22.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21265 components: - type: Transform @@ -82526,7 +81422,7 @@ entities: pos: 23.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21266 components: - type: Transform @@ -82534,7 +81430,7 @@ entities: pos: 24.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21267 components: - type: Transform @@ -82542,7 +81438,7 @@ entities: pos: 25.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21268 components: - type: Transform @@ -82550,7 +81446,7 @@ entities: pos: 26.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21271 components: - type: Transform @@ -82558,7 +81454,7 @@ entities: pos: 27.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21272 components: - type: Transform @@ -82566,7 +81462,7 @@ entities: pos: 26.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21273 components: - type: Transform @@ -82574,28 +81470,28 @@ entities: pos: 25.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21546 components: - type: Transform pos: 39.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21547 components: - type: Transform pos: 39.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21548 components: - type: Transform pos: 39.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21550 components: - type: Transform @@ -82603,7 +81499,7 @@ entities: pos: 43.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21551 components: - type: Transform @@ -82611,7 +81507,7 @@ entities: pos: 43.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21552 components: - type: Transform @@ -82619,7 +81515,7 @@ entities: pos: 43.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21987 components: - type: Transform @@ -82627,7 +81523,7 @@ entities: pos: -0.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21988 components: - type: Transform @@ -82635,7 +81531,7 @@ entities: pos: -0.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21989 components: - type: Transform @@ -82643,7 +81539,7 @@ entities: pos: -0.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21990 components: - type: Transform @@ -82651,7 +81547,7 @@ entities: pos: -0.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21991 components: - type: Transform @@ -82659,7 +81555,7 @@ entities: pos: -0.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21992 components: - type: Transform @@ -82667,7 +81563,7 @@ entities: pos: -0.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21993 components: - type: Transform @@ -82675,7 +81571,7 @@ entities: pos: -0.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21994 components: - type: Transform @@ -82683,7 +81579,7 @@ entities: pos: -0.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21995 components: - type: Transform @@ -82691,7 +81587,7 @@ entities: pos: -0.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21996 components: - type: Transform @@ -82699,7 +81595,7 @@ entities: pos: -0.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21997 components: - type: Transform @@ -82707,7 +81603,7 @@ entities: pos: -0.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21998 components: - type: Transform @@ -82715,7 +81611,7 @@ entities: pos: -0.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21999 components: - type: Transform @@ -82723,7 +81619,7 @@ entities: pos: -0.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22000 components: - type: Transform @@ -82731,7 +81627,7 @@ entities: pos: -0.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22001 components: - type: Transform @@ -82739,7 +81635,7 @@ entities: pos: -0.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22002 components: - type: Transform @@ -82747,7 +81643,7 @@ entities: pos: -0.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22003 components: - type: Transform @@ -82755,7 +81651,7 @@ entities: pos: -0.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22004 components: - type: Transform @@ -82763,7 +81659,7 @@ entities: pos: -0.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22005 components: - type: Transform @@ -82771,7 +81667,7 @@ entities: pos: -0.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22006 components: - type: Transform @@ -82779,7 +81675,7 @@ entities: pos: -0.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22007 components: - type: Transform @@ -82787,7 +81683,7 @@ entities: pos: -0.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22008 components: - type: Transform @@ -82795,7 +81691,7 @@ entities: pos: -0.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22009 components: - type: Transform @@ -82803,7 +81699,7 @@ entities: pos: -0.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22010 components: - type: Transform @@ -82811,7 +81707,7 @@ entities: pos: -0.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22011 components: - type: Transform @@ -82819,7 +81715,7 @@ entities: pos: -0.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22012 components: - type: Transform @@ -82827,7 +81723,7 @@ entities: pos: -0.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22013 components: - type: Transform @@ -82835,316 +81731,106 @@ entities: pos: -0.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22015 components: - type: Transform pos: -0.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22016 components: - type: Transform pos: -0.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22017 components: - type: Transform pos: -0.5,68.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22018 components: - type: Transform pos: -0.5,69.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22019 components: - type: Transform pos: -0.5,70.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22020 components: - type: Transform pos: -0.5,71.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22021 components: - type: Transform pos: -0.5,72.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22022 components: - type: Transform pos: -0.5,73.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22267 components: - type: Transform pos: 43.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22268 components: - type: Transform pos: 43.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22269 components: - type: Transform pos: 43.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22270 components: - type: Transform pos: 43.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22271 components: - type: Transform pos: 43.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-50.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22776 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-55.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-56.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-57.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-59.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22794 + color: '#0000FFFF' +- proto: GasPipeTJunction + entities: + - uid: 336 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-58.5 + pos: -53.5,-63.5 parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasPipeTJunction - entities: - uid: 924 components: - type: Transform @@ -83152,17 +81838,7 @@ entities: pos: -45.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 925 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: -11.5,-56.5 - parent: 30 - - type: Physics - canCollide: True - bodyType: Dynamic + color: '#FF0000FF' - uid: 962 components: - type: Transform @@ -83170,14 +81846,7 @@ entities: pos: -45.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1938 - components: - - type: Transform - pos: -5.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' - uid: 2431 components: - type: Transform @@ -83185,7 +81854,7 @@ entities: pos: -34.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2440 components: - type: Transform @@ -83193,7 +81862,7 @@ entities: pos: -34.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2441 components: - type: Transform @@ -83201,7 +81870,7 @@ entities: pos: -36.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2442 components: - type: Transform @@ -83209,28 +81878,28 @@ entities: pos: -34.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2456 components: - type: Transform pos: -42.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2458 components: - type: Transform pos: -41.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2459 components: - type: Transform pos: -41.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2463 components: - type: Transform @@ -83238,7 +81907,7 @@ entities: pos: -45.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2496 components: - type: Transform @@ -83246,7 +81915,7 @@ entities: pos: -36.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2497 components: - type: Transform @@ -83254,28 +81923,28 @@ entities: pos: -34.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2507 components: - type: Transform pos: -36.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2508 components: - type: Transform pos: -34.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2509 components: - type: Transform pos: -35.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2510 components: - type: Transform @@ -83283,7 +81952,7 @@ entities: pos: -33.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2512 components: - type: Transform @@ -83291,7 +81960,7 @@ entities: pos: -33.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2513 components: - type: Transform @@ -83299,7 +81968,7 @@ entities: pos: -31.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2519 components: - type: Transform @@ -83307,7 +81976,7 @@ entities: pos: -33.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2520 components: - type: Transform @@ -83315,7 +81984,7 @@ entities: pos: -31.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2521 components: - type: Transform @@ -83323,7 +81992,7 @@ entities: pos: -31.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2527 components: - type: Transform @@ -83331,7 +82000,7 @@ entities: pos: -33.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2532 components: - type: Transform @@ -83339,7 +82008,7 @@ entities: pos: -38.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2542 components: - type: Transform @@ -83347,7 +82016,7 @@ entities: pos: -40.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2553 components: - type: Transform @@ -83355,7 +82024,7 @@ entities: pos: -31.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2554 components: - type: Transform @@ -83363,49 +82032,49 @@ entities: pos: -33.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2582 components: - type: Transform pos: -34.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2583 components: - type: Transform pos: -30.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2596 components: - type: Transform pos: -38.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2597 components: - type: Transform pos: -40.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2598 components: - type: Transform pos: -42.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2599 components: - type: Transform pos: -44.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2600 components: - type: Transform @@ -83413,7 +82082,7 @@ entities: pos: -46.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2601 components: - type: Transform @@ -83421,7 +82090,7 @@ entities: pos: -48.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2619 components: - type: Transform @@ -83429,14 +82098,14 @@ entities: pos: -41.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2628 components: - type: Transform pos: -43.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2654 components: - type: Transform @@ -83444,7 +82113,7 @@ entities: pos: -48.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2658 components: - type: Transform @@ -83452,7 +82121,7 @@ entities: pos: -48.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2659 components: - type: Transform @@ -83460,7 +82129,7 @@ entities: pos: -46.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2662 components: - type: Transform @@ -83468,7 +82137,7 @@ entities: pos: -46.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2667 components: - type: Transform @@ -83476,7 +82145,7 @@ entities: pos: -48.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2668 components: - type: Transform @@ -83484,7 +82153,7 @@ entities: pos: -46.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2677 components: - type: Transform @@ -83492,7 +82161,7 @@ entities: pos: -46.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2688 components: - type: Transform @@ -83500,7 +82169,7 @@ entities: pos: -50.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2689 components: - type: Transform @@ -83508,14 +82177,14 @@ entities: pos: -46.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2709 components: - type: Transform pos: -48.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2717 components: - type: Transform @@ -83523,7 +82192,7 @@ entities: pos: -51.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2718 components: - type: Transform @@ -83531,14 +82200,14 @@ entities: pos: -47.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2729 components: - type: Transform pos: -48.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2750 components: - type: Transform @@ -83546,7 +82215,7 @@ entities: pos: -36.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2753 components: - type: Transform @@ -83554,7 +82223,7 @@ entities: pos: -36.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2760 components: - type: Transform @@ -83562,7 +82231,7 @@ entities: pos: -36.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2762 components: - type: Transform @@ -83570,7 +82239,7 @@ entities: pos: -36.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2767 components: - type: Transform @@ -83578,7 +82247,7 @@ entities: pos: -34.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2777 components: - type: Transform @@ -83586,7 +82255,7 @@ entities: pos: -34.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2779 components: - type: Transform @@ -83594,7 +82263,7 @@ entities: pos: -32.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2786 components: - type: Transform @@ -83602,7 +82271,7 @@ entities: pos: -27.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2788 components: - type: Transform @@ -83610,7 +82279,7 @@ entities: pos: -21.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2796 components: - type: Transform @@ -83618,28 +82287,28 @@ entities: pos: -17.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2802 components: - type: Transform pos: -8.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2812 components: - type: Transform pos: 1.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2814 components: - type: Transform pos: 3.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2819 components: - type: Transform @@ -83647,7 +82316,7 @@ entities: pos: 8.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2831 components: - type: Transform @@ -83655,7 +82324,7 @@ entities: pos: 10.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2833 components: - type: Transform @@ -83663,7 +82332,7 @@ entities: pos: 10.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2842 components: - type: Transform @@ -83671,7 +82340,7 @@ entities: pos: 8.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2851 components: - type: Transform @@ -83679,14 +82348,14 @@ entities: pos: 3.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2854 components: - type: Transform pos: -2.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2857 components: - type: Transform @@ -83694,7 +82363,7 @@ entities: pos: -4.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2866 components: - type: Transform @@ -83702,7 +82371,7 @@ entities: pos: -14.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2871 components: - type: Transform @@ -83710,21 +82379,21 @@ entities: pos: -23.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2873 components: - type: Transform pos: -21.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2879 components: - type: Transform pos: -27.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2888 components: - type: Transform @@ -83732,7 +82401,7 @@ entities: pos: -34.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2893 components: - type: Transform @@ -83740,7 +82409,7 @@ entities: pos: -34.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2899 components: - type: Transform @@ -83748,7 +82417,7 @@ entities: pos: -34.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2905 components: - type: Transform @@ -83756,7 +82425,7 @@ entities: pos: -34.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2913 components: - type: Transform @@ -83764,21 +82433,21 @@ entities: pos: -34.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2919 components: - type: Transform pos: -31.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2924 components: - type: Transform pos: -24.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2932 components: - type: Transform @@ -83786,21 +82455,21 @@ entities: pos: -19.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2935 components: - type: Transform pos: -14.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2941 components: - type: Transform pos: -6.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2962 components: - type: Transform @@ -83808,7 +82477,7 @@ entities: pos: 10.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2975 components: - type: Transform @@ -83816,7 +82485,7 @@ entities: pos: 8.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2985 components: - type: Transform @@ -83824,21 +82493,21 @@ entities: pos: 10.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2994 components: - type: Transform pos: 0.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2997 components: - type: Transform pos: -0.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3000 components: - type: Transform @@ -83846,7 +82515,7 @@ entities: pos: -3.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3012 components: - type: Transform @@ -83854,28 +82523,28 @@ entities: pos: -15.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3019 components: - type: Transform pos: -22.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3020 components: - type: Transform pos: -19.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3022 components: - type: Transform pos: -26.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3023 components: - type: Transform @@ -83883,14 +82552,14 @@ entities: pos: -25.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3027 components: - type: Transform pos: -30.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3084 components: - type: Transform @@ -83898,28 +82567,28 @@ entities: pos: -42.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3087 components: - type: Transform pos: -41.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3091 components: - type: Transform pos: -39.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3093 components: - type: Transform pos: -39.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3097 components: - type: Transform @@ -83927,14 +82596,14 @@ entities: pos: -44.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3098 components: - type: Transform pos: -45.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3120 components: - type: Transform @@ -83942,19 +82611,7 @@ entities: pos: -51.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-57.5 - parent: 30 - - uid: 3131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-56.5 - parent: 30 + color: '#FF0000FF' - uid: 3134 components: - type: Transform @@ -83962,7 +82619,7 @@ entities: pos: -52.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3137 components: - type: Transform @@ -83970,7 +82627,7 @@ entities: pos: -44.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3138 components: - type: Transform @@ -83978,7 +82635,7 @@ entities: pos: -45.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3154 components: - type: Transform @@ -83986,7 +82643,7 @@ entities: pos: -44.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3213 components: - type: Transform @@ -83994,7 +82651,7 @@ entities: pos: -44.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3241 components: - type: Transform @@ -84002,7 +82659,7 @@ entities: pos: -44.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3245 components: - type: Transform @@ -84010,7 +82667,7 @@ entities: pos: -43.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3246 components: - type: Transform @@ -84018,14 +82675,14 @@ entities: pos: -42.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3255 components: - type: Transform pos: -41.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3268 components: - type: Transform @@ -84033,7 +82690,7 @@ entities: pos: -49.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3275 components: - type: Transform @@ -84041,14 +82698,14 @@ entities: pos: -50.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3278 components: - type: Transform pos: -52.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3283 components: - type: Transform @@ -84056,7 +82713,7 @@ entities: pos: -57.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3284 components: - type: Transform @@ -84064,7 +82721,7 @@ entities: pos: -57.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3285 components: - type: Transform @@ -84072,7 +82729,7 @@ entities: pos: -57.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3294 components: - type: Transform @@ -84080,7 +82737,7 @@ entities: pos: -57.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3306 components: - type: Transform @@ -84088,22 +82745,14 @@ entities: pos: -49.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3333 components: - type: Transform pos: -19.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,10.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3349 components: - type: Transform @@ -84111,14 +82760,14 @@ entities: pos: -23.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3353 components: - type: Transform pos: -21.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3381 components: - type: Transform @@ -84126,7 +82775,7 @@ entities: pos: -17.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3388 components: - type: Transform @@ -84134,7 +82783,7 @@ entities: pos: -16.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3397 components: - type: Transform @@ -84142,7 +82791,7 @@ entities: pos: -17.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3399 components: - type: Transform @@ -84150,7 +82799,7 @@ entities: pos: -16.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3404 components: - type: Transform @@ -84164,7 +82813,7 @@ entities: pos: -3.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3420 components: - type: Transform @@ -84172,21 +82821,21 @@ entities: pos: -1.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3423 components: - type: Transform pos: -3.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3424 components: - type: Transform pos: -1.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3442 components: - type: Transform @@ -84194,21 +82843,21 @@ entities: pos: -4.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3452 components: - type: Transform pos: -0.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3458 components: - type: Transform pos: -8.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3459 components: - type: Transform @@ -84216,7 +82865,7 @@ entities: pos: -10.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3460 components: - type: Transform @@ -84224,7 +82873,7 @@ entities: pos: -9.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3461 components: - type: Transform @@ -84232,13 +82881,7 @@ entities: pos: -12.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-58.5 - parent: 30 + color: '#FF0000FF' - uid: 5857 components: - type: Transform @@ -84258,14 +82901,14 @@ entities: pos: -8.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6111 components: - type: Transform pos: -10.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6132 components: - type: Transform @@ -84273,7 +82916,7 @@ entities: pos: -14.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6140 components: - type: Transform @@ -84281,21 +82924,21 @@ entities: pos: -4.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6151 components: - type: Transform pos: -11.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6153 components: - type: Transform pos: -9.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6170 components: - type: Transform @@ -84303,7 +82946,7 @@ entities: pos: -15.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6172 components: - type: Transform @@ -84311,7 +82954,7 @@ entities: pos: -15.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6179 components: - type: Transform @@ -84319,7 +82962,7 @@ entities: pos: -3.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6185 components: - type: Transform @@ -84327,7 +82970,7 @@ entities: pos: -3.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6193 components: - type: Transform @@ -84335,7 +82978,7 @@ entities: pos: -9.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6199 components: - type: Transform @@ -84343,14 +82986,14 @@ entities: pos: -7.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6234 components: - type: Transform pos: -20.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6240 components: - type: Transform @@ -84358,14 +83001,14 @@ entities: pos: -20.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6252 components: - type: Transform pos: -19.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6254 components: - type: Transform @@ -84373,7 +83016,7 @@ entities: pos: -21.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6261 components: - type: Transform @@ -84381,29 +83024,14 @@ entities: pos: -26.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6600 - components: - - type: Transform - pos: -11.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' - uid: 6666 components: - type: Transform pos: -30.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6687 components: - type: Transform @@ -84411,7 +83039,7 @@ entities: pos: -17.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6713 components: - type: Transform @@ -84419,7 +83047,7 @@ entities: pos: -13.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6933 components: - type: Transform @@ -84427,7 +83055,7 @@ entities: pos: -18.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7014 components: - type: Transform @@ -84435,7 +83063,7 @@ entities: pos: -23.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7044 components: - type: Transform @@ -84443,14 +83071,14 @@ entities: pos: -19.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7045 components: - type: Transform pos: -22.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7058 components: - type: Transform @@ -84458,64 +83086,28 @@ entities: pos: -30.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7061 components: - type: Transform pos: -19.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7074 components: - type: Transform pos: -20.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-57.5 - parent: 30 - - uid: 7097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-58.5 - parent: 30 - - uid: 7124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' - uid: 7147 components: - type: Transform pos: -28.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7310 components: - type: Transform @@ -84523,7 +83115,7 @@ entities: pos: -8.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7311 components: - type: Transform @@ -84531,7 +83123,7 @@ entities: pos: -3.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7321 components: - type: Transform @@ -84539,7 +83131,7 @@ entities: pos: -1.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7322 components: - type: Transform @@ -84547,7 +83139,7 @@ entities: pos: -10.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7323 components: - type: Transform @@ -84555,7 +83147,7 @@ entities: pos: -2.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7337 components: - type: Transform @@ -84563,7 +83155,7 @@ entities: pos: -11.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7338 components: - type: Transform @@ -84571,21 +83163,21 @@ entities: pos: -12.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7351 components: - type: Transform pos: -18.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7374 components: - type: Transform pos: -7.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7534 components: - type: Transform @@ -84593,14 +83185,14 @@ entities: pos: -17.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7545 components: - type: Transform pos: -23.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7593 components: - type: Transform @@ -84614,7 +83206,7 @@ entities: pos: -29.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7819 components: - type: Transform @@ -84622,14 +83214,14 @@ entities: pos: -28.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7878 components: - type: Transform pos: -13.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7886 components: - type: Transform @@ -84637,7 +83229,7 @@ entities: pos: -12.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7924 components: - type: Transform @@ -84645,7 +83237,7 @@ entities: pos: -22.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7926 components: - type: Transform @@ -84653,7 +83245,7 @@ entities: pos: -22.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7946 components: - type: Transform @@ -84661,14 +83253,14 @@ entities: pos: -25.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7948 components: - type: Transform pos: -29.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7949 components: - type: Transform @@ -84676,7 +83268,7 @@ entities: pos: -28.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7961 components: - type: Transform @@ -84684,7 +83276,7 @@ entities: pos: -17.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8018 components: - type: Transform @@ -84692,7 +83284,7 @@ entities: pos: -20.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8028 components: - type: Transform @@ -84700,7 +83292,7 @@ entities: pos: -22.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8089 components: - type: Transform @@ -84708,14 +83300,14 @@ entities: pos: -30.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8104 components: - type: Transform pos: -21.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8107 components: - type: Transform @@ -84723,77 +83315,68 @@ entities: pos: -20.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8235 + color: '#FF0000FF' + - uid: 8299 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-51.5 + pos: 20.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8237 + color: '#FF0000FF' + - uid: 8360 components: - type: Transform - pos: -9.5,-49.5 + pos: -16.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8239 + color: '#FF0000FF' + - uid: 8376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-49.5 + rot: 3.141592653589793 rad + pos: -1.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8269 + color: '#0000FFFF' + - uid: 8408 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-47.5 + pos: -13.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8299 + color: '#FF0000FF' + - uid: 8427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-19.5 + rot: -1.5707963267948966 rad + pos: -13.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8376 + color: '#FF0000FF' + - uid: 8790 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,37.5 + pos: 20.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8790 + color: '#FF0000FF' + - uid: 8820 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-21.5 + pos: -21.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8853 components: - type: Transform pos: -2.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8872 components: - type: Transform @@ -84801,7 +83384,7 @@ entities: pos: 9.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8876 components: - type: Transform @@ -84809,14 +83392,14 @@ entities: pos: 7.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8877 components: - type: Transform pos: 2.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8884 components: - type: Transform @@ -84824,7 +83407,7 @@ entities: pos: 11.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8893 components: - type: Transform @@ -84832,7 +83415,7 @@ entities: pos: 9.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8901 components: - type: Transform @@ -84840,7 +83423,7 @@ entities: pos: 11.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8903 components: - type: Transform @@ -84848,7 +83431,7 @@ entities: pos: 11.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8912 components: - type: Transform @@ -84856,14 +83439,14 @@ entities: pos: 12.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8919 components: - type: Transform pos: 4.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8920 components: - type: Transform @@ -84871,21 +83454,21 @@ entities: pos: 6.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8936 components: - type: Transform pos: 5.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8939 components: - type: Transform pos: 7.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8940 components: - type: Transform @@ -84893,7 +83476,7 @@ entities: pos: 7.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8947 components: - type: Transform @@ -84901,7 +83484,7 @@ entities: pos: 13.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8957 components: - type: Transform @@ -84909,7 +83492,7 @@ entities: pos: 20.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8960 components: - type: Transform @@ -84917,14 +83500,14 @@ entities: pos: 13.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8968 components: - type: Transform pos: 9.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8979 components: - type: Transform @@ -84932,7 +83515,7 @@ entities: pos: 7.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9085 components: - type: Transform @@ -84940,29 +83523,43 @@ entities: pos: 3.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9658 + color: '#FF0000FF' + - uid: 9353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-52.5 + pos: 3.5,-49.5 parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 9444 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9689 components: - type: Transform pos: -25.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9694 components: - type: Transform pos: -25.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9697 components: - type: Transform @@ -84970,7 +83567,7 @@ entities: pos: -25.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9728 components: - type: Transform @@ -84978,7 +83575,7 @@ entities: pos: 2.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9744 components: - type: Transform @@ -84986,23 +83583,7 @@ entities: pos: -1.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-29.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-27.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9754 components: - type: Transform @@ -85010,14 +83591,14 @@ entities: pos: -3.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9763 components: - type: Transform pos: 4.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9774 components: - type: Transform @@ -85025,7 +83606,7 @@ entities: pos: 0.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9779 components: - type: Transform @@ -85033,7 +83614,15 @@ entities: pos: 2.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 9818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-55.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9847 components: - type: Transform @@ -85041,7 +83630,7 @@ entities: pos: -11.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9850 components: - type: Transform @@ -85049,99 +83638,131 @@ entities: pos: -29.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9867 + color: '#FF0000FF' + - uid: 9885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-53.5 + rot: 1.5707963267948966 rad + pos: -18.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9981 + color: '#0000FFFF' + - uid: 9896 components: - type: Transform - pos: 6.5,-27.5 + rot: -1.5707963267948966 rad + pos: -16.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10388 + color: '#FF0000FF' + - uid: 9918 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-17.5 + pos: -11.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10402 + color: '#0000FFFF' + - uid: 9981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-18.5 + pos: 6.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11073 + color: '#0000FFFF' + - uid: 9992 components: - type: Transform - pos: -11.5,-39.5 + rot: 3.141592653589793 rad + pos: -8.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11080 + color: '#FF0000FF' + - uid: 10137 components: - type: Transform - pos: -3.5,-39.5 + rot: -1.5707963267948966 rad + pos: -11.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11087 + color: '#0000FFFF' + - uid: 10160 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-39.5 + pos: -5.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11122 + color: '#FF0000FF' + - uid: 10214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-39.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10265 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-41.5 + pos: -23.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11132 + color: '#0000FFFF' + - uid: 10266 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-41.5 + pos: -11.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11138 + color: '#0000FFFF' + - uid: 10279 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10388 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-42.5 + pos: 21.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11140 + color: '#FF0000FF' + - uid: 10402 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-42.5 + rot: 1.5707963267948966 rad + pos: 21.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' + - uid: 10430 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 11193 components: - type: Transform pos: 6.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11694 components: - type: Transform @@ -85149,7 +83770,7 @@ entities: pos: 25.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11746 components: - type: Transform @@ -85157,14 +83778,14 @@ entities: pos: 33.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11763 components: - type: Transform pos: 24.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11776 components: - type: Transform @@ -85172,7 +83793,7 @@ entities: pos: 6.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11859 components: - type: Transform @@ -85180,7 +83801,7 @@ entities: pos: 24.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11860 components: - type: Transform @@ -85188,7 +83809,7 @@ entities: pos: 26.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11861 components: - type: Transform @@ -85196,7 +83817,7 @@ entities: pos: 25.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11877 components: - type: Transform @@ -85204,7 +83825,7 @@ entities: pos: 21.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11879 components: - type: Transform @@ -85212,7 +83833,7 @@ entities: pos: 20.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11904 components: - type: Transform @@ -85220,7 +83841,7 @@ entities: pos: 19.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11934 components: - type: Transform @@ -85228,14 +83849,14 @@ entities: pos: 16.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11935 components: - type: Transform pos: 17.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11936 components: - type: Transform @@ -85243,7 +83864,7 @@ entities: pos: 21.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11950 components: - type: Transform @@ -85251,7 +83872,7 @@ entities: pos: 13.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11968 components: - type: Transform @@ -85259,7 +83880,7 @@ entities: pos: 20.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11999 components: - type: Transform @@ -85267,21 +83888,21 @@ entities: pos: 6.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12018 components: - type: Transform pos: 24.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12020 components: - type: Transform pos: 33.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12062 components: - type: Transform @@ -85289,7 +83910,7 @@ entities: pos: 29.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12472 components: - type: Transform @@ -85297,7 +83918,7 @@ entities: pos: 8.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12473 components: - type: Transform @@ -85305,21 +83926,21 @@ entities: pos: 10.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12488 components: - type: Transform pos: 10.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12503 components: - type: Transform pos: 16.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12513 components: - type: Transform @@ -85327,7 +83948,7 @@ entities: pos: 21.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12523 components: - type: Transform @@ -85335,7 +83956,7 @@ entities: pos: 18.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12528 components: - type: Transform @@ -85343,7 +83964,7 @@ entities: pos: 23.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12540 components: - type: Transform @@ -85351,7 +83972,7 @@ entities: pos: 23.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12542 components: - type: Transform @@ -85359,7 +83980,7 @@ entities: pos: 23.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12543 components: - type: Transform @@ -85367,14 +83988,14 @@ entities: pos: 21.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12544 components: - type: Transform pos: 23.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12545 components: - type: Transform @@ -85382,7 +84003,7 @@ entities: pos: 20.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12559 components: - type: Transform @@ -85390,7 +84011,7 @@ entities: pos: 24.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12582 components: - type: Transform @@ -85398,7 +84019,7 @@ entities: pos: 20.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12584 components: - type: Transform @@ -85406,7 +84027,7 @@ entities: pos: 25.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12599 components: - type: Transform @@ -85414,19 +84035,26 @@ entities: pos: 23.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12600 components: - type: Transform pos: 26.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12754 components: - type: Transform pos: 32.5,14.5 parent: 30 + - uid: 12835 + components: + - type: Transform + pos: -61.5,-59.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 12882 components: - type: Transform @@ -85434,14 +84062,14 @@ entities: pos: 23.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12885 components: - type: Transform pos: 28.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12940 components: - type: Transform @@ -85449,15 +84077,7 @@ entities: pos: 14.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12951 components: - type: Transform @@ -85465,7 +84085,7 @@ entities: pos: 23.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12954 components: - type: Transform @@ -85473,14 +84093,14 @@ entities: pos: 23.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12963 components: - type: Transform pos: 28.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12989 components: - type: Transform @@ -85488,7 +84108,7 @@ entities: pos: 14.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12991 components: - type: Transform @@ -85496,14 +84116,14 @@ entities: pos: 14.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12997 components: - type: Transform pos: 23.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13007 components: - type: Transform @@ -85511,7 +84131,7 @@ entities: pos: 8.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13011 components: - type: Transform @@ -85519,14 +84139,14 @@ entities: pos: 12.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13017 components: - type: Transform pos: 13.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13022 components: - type: Transform @@ -85534,7 +84154,7 @@ entities: pos: 12.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13030 components: - type: Transform @@ -85542,7 +84162,7 @@ entities: pos: 18.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13033 components: - type: Transform @@ -85550,7 +84170,7 @@ entities: pos: 21.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13059 components: - type: Transform @@ -85558,7 +84178,7 @@ entities: pos: 25.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13076 components: - type: Transform @@ -85566,7 +84186,7 @@ entities: pos: 38.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13634 components: - type: Transform @@ -85574,21 +84194,21 @@ entities: pos: 52.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13753 components: - type: Transform pos: 31.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13757 components: - type: Transform pos: 35.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13765 components: - type: Transform @@ -85596,7 +84216,7 @@ entities: pos: 43.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13768 components: - type: Transform @@ -85604,7 +84224,7 @@ entities: pos: 31.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13772 components: - type: Transform @@ -85612,14 +84232,14 @@ entities: pos: 35.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13776 components: - type: Transform pos: 39.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13784 components: - type: Transform @@ -85627,7 +84247,7 @@ entities: pos: 30.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13790 components: - type: Transform @@ -85635,7 +84255,43 @@ entities: pos: 30.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 14440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,10.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14512 + components: + - type: Transform + pos: 17.5,15.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16802 + components: + - type: Transform + pos: -62.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-64.5 + parent: 30 - uid: 18380 components: - type: Transform @@ -85643,7 +84299,7 @@ entities: pos: -45.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18387 components: - type: Transform @@ -85651,14 +84307,14 @@ entities: pos: -61.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18391 components: - type: Transform pos: -57.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18397 components: - type: Transform @@ -85666,7 +84322,7 @@ entities: pos: -53.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18403 components: - type: Transform @@ -85674,7 +84330,7 @@ entities: pos: -44.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18412 components: - type: Transform @@ -85682,14 +84338,14 @@ entities: pos: -44.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18416 components: - type: Transform pos: -61.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18421 components: - type: Transform @@ -85697,14 +84353,14 @@ entities: pos: -58.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18426 components: - type: Transform pos: -51.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18430 components: - type: Transform @@ -85712,7 +84368,7 @@ entities: pos: -49.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18446 components: - type: Transform @@ -85720,7 +84376,7 @@ entities: pos: -63.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18492 components: - type: Transform @@ -85728,7 +84384,7 @@ entities: pos: -65.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18493 components: - type: Transform @@ -85736,7 +84392,7 @@ entities: pos: -64.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18501 components: - type: Transform @@ -85744,14 +84400,14 @@ entities: pos: -68.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18510 components: - type: Transform pos: -77.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18521 components: - type: Transform @@ -85759,7 +84415,7 @@ entities: pos: -68.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18525 components: - type: Transform @@ -85767,14 +84423,14 @@ entities: pos: -62.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18526 components: - type: Transform pos: -60.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18542 components: - type: Transform @@ -85782,14 +84438,7 @@ entities: pos: -60.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18547 - components: - - type: Transform - pos: -59.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18550 components: - type: Transform @@ -85797,7 +84446,7 @@ entities: pos: -56.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18554 components: - type: Transform @@ -85805,7 +84454,7 @@ entities: pos: -56.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18566 components: - type: Transform @@ -85813,7 +84462,7 @@ entities: pos: -55.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18568 components: - type: Transform @@ -85821,7 +84470,7 @@ entities: pos: -67.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18570 components: - type: Transform @@ -85829,7 +84478,7 @@ entities: pos: -55.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18578 components: - type: Transform @@ -85837,7 +84486,7 @@ entities: pos: -63.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18591 components: - type: Transform @@ -85845,28 +84494,14 @@ entities: pos: -68.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18599 - components: - - type: Transform - pos: -64.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18603 components: - type: Transform pos: -63.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18604 - components: - - type: Transform - pos: -58.5,-59.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18610 components: - type: Transform @@ -85874,7 +84509,7 @@ entities: pos: -67.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18611 components: - type: Transform @@ -85882,7 +84517,7 @@ entities: pos: -68.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18614 components: - type: Transform @@ -85890,7 +84525,7 @@ entities: pos: -56.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18615 components: - type: Transform @@ -85898,7 +84533,7 @@ entities: pos: -55.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18616 components: - type: Transform @@ -85906,14 +84541,14 @@ entities: pos: -61.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18618 components: - type: Transform pos: -61.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18623 components: - type: Transform @@ -85921,7 +84556,7 @@ entities: pos: -58.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18636 components: - type: Transform @@ -85929,7 +84564,7 @@ entities: pos: -67.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18637 components: - type: Transform @@ -85937,7 +84572,7 @@ entities: pos: -68.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18644 components: - type: Transform @@ -85945,7 +84580,7 @@ entities: pos: -75.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18658 components: - type: Transform @@ -85953,28 +84588,28 @@ entities: pos: -75.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18704 components: - type: Transform pos: -74.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18711 components: - type: Transform pos: -75.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18717 components: - type: Transform pos: -80.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18739 components: - type: Transform @@ -85982,7 +84617,7 @@ entities: pos: -72.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18748 components: - type: Transform @@ -85990,17 +84625,20 @@ entities: pos: -71.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18780 + color: '#0000FFFF' + - uid: 20668 components: - type: Transform - pos: -65.5,-64.5 + rot: 1.5707963267948966 rad + pos: -3.5,-50.5 parent: 30 - - uid: 18781 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-64.5 + rot: 1.5707963267948966 rad + pos: -3.5,-48.5 parent: 30 - uid: 22014 components: @@ -86009,35 +84647,9 @@ entities: pos: -0.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22787 - components: - - type: Transform - pos: -26.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22788 - components: - - type: Transform - pos: -30.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasPort entities: - - uid: 6670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-48.5 - parent: 30 - - uid: 6711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-48.5 - parent: 30 - uid: 6757 components: - type: Transform @@ -86050,34 +84662,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-10.5 parent: 30 - - uid: 8800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-51.5 - parent: 30 - - uid: 8801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-51.5 - parent: 30 - - uid: 9064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 10390 components: - type: Transform @@ -86085,7 +84669,7 @@ entities: pos: 20.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 10392 components: - type: Transform @@ -86093,7 +84677,7 @@ entities: pos: 20.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11744 components: - type: Transform @@ -86101,7 +84685,7 @@ entities: pos: 5.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11869 components: - type: Transform @@ -86109,7 +84693,13 @@ entities: pos: 5.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 12699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-63.5 + parent: 30 - uid: 12867 components: - type: Transform @@ -86128,37 +84718,57 @@ entities: rot: 3.141592653589793 rad pos: 38.5,9.5 parent: 30 + - uid: 14363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-65.5 + parent: 30 - uid: 16775 components: - type: Transform pos: 36.5,10.5 parent: 30 - - uid: 18776 + - uid: 18772 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-65.5 + rot: -1.5707963267948966 rad + pos: -52.5,-64.5 parent: 30 - - uid: 18777 + - uid: 19440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-65.5 + rot: 1.5707963267948966 rad + pos: -5.5,-8.5 parent: 30 - - uid: 18778 + - uid: 20655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-65.5 + pos: -3.5,-47.5 parent: 30 - - uid: 19440 + - uid: 20656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-8.5 + pos: -2.5,-47.5 + parent: 30 + - uid: 20657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-50.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasPressurePump entities: + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-61.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 7140 components: - type: MetaData @@ -86187,7 +84797,7 @@ entities: pos: -30.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8781 components: - type: Transform @@ -86195,7 +84805,7 @@ entities: pos: 16.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8792 components: - type: Transform @@ -86243,32 +84853,12 @@ entities: parent: 30 - type: AtmosPipeColor color: '#EB9834FF' - - uid: 9066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9862 + - uid: 9182 components: - - type: MetaData - name: mix to sme loop - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-54.5 + pos: 4.5,-48.5 parent: 30 - - type: AtmosPipeColor - color: '#34E5EBFF' - uid: 12922 components: - type: Transform @@ -86280,14 +84870,13 @@ entities: - type: Transform pos: 38.5,10.5 parent: 30 - - uid: 18772 + - uid: 20670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-62.5 + pos: -3.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - proto: GasThermoMachineFreezer entities: - uid: 482 @@ -86300,33 +84889,24 @@ entities: - type: Transform pos: -36.5,-9.5 parent: 30 - - uid: 6659 - components: - - type: Transform - pos: -10.5,-47.5 - parent: 30 - - uid: 7109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7112 + - uid: 905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-52.5 + rot: -1.5707963267948966 rad + pos: 4.5,-53.5 parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 7598 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-13.5 parent: 30 + - uid: 11013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-52.5 + parent: 30 - uid: 12038 components: - type: Transform @@ -86351,10 +84931,11 @@ entities: parent: 30 - proto: GasThermoMachineHeater entities: - - uid: 6642 + - uid: 9997 components: - type: Transform - pos: -11.5,-47.5 + rot: 1.5707963267948966 rad + pos: -5.5,-53.5 parent: 30 - uid: 12085 components: @@ -86362,66 +84943,33 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-35.5 parent: 30 -- proto: GasValve - entities: - - uid: 6714 - components: - - type: Transform - pos: -11.5,-55.5 - parent: 30 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7222 - components: - - type: MetaData - name: Emergency Dump Valve - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-48.5 - parent: 30 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8278 + - uid: 13960 components: - - type: MetaData - name: Cold Loop Valve - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-49.5 + rot: 1.5707963267948966 rad + pos: -5.5,-52.5 parent: 30 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9657 +- proto: GasValve + entities: + - uid: 20648 components: - type: Transform - pos: -9.5,-55.5 + pos: -4.5,-53.5 parent: 30 - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-55.5 - parent: 30 - - type: GasValve - open: False - - uid: 9808 + color: '#FF0000FF' + - uid: 20649 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-55.5 + pos: -3.5,-53.5 parent: 30 - type: GasValve open: False + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 21274 components: - type: MetaData @@ -86433,7 +84981,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasVentPump entities: - uid: 2451 @@ -86443,7 +84991,7 @@ entities: pos: -35.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2454 components: - type: Transform @@ -86451,7 +84999,7 @@ entities: pos: -35.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2482 components: - type: Transform @@ -86459,7 +85007,7 @@ entities: pos: -49.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2491 components: - type: Transform @@ -86467,14 +85015,14 @@ entities: pos: -41.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2493 components: - type: Transform pos: -45.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2503 components: - type: Transform @@ -86482,14 +85030,14 @@ entities: pos: -35.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2523 components: - type: Transform pos: -33.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2524 components: - type: Transform @@ -86497,7 +85045,7 @@ entities: pos: -30.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2544 components: - type: Transform @@ -86505,14 +85053,14 @@ entities: pos: -41.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2551 components: - type: Transform pos: -40.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2573 components: - type: Transform @@ -86520,7 +85068,7 @@ entities: pos: -25.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2592 components: - type: Transform @@ -86528,7 +85076,7 @@ entities: pos: -31.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2594 components: - type: Transform @@ -86536,7 +85084,7 @@ entities: pos: -30.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2638 components: - type: Transform @@ -86544,7 +85092,7 @@ entities: pos: -38.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2639 components: - type: Transform @@ -86552,7 +85100,7 @@ entities: pos: -42.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2640 components: - type: Transform @@ -86560,14 +85108,14 @@ entities: pos: -46.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2644 components: - type: Transform pos: -41.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2669 components: - type: Transform @@ -86575,7 +85123,7 @@ entities: pos: -47.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2676 components: - type: Transform @@ -86583,14 +85131,14 @@ entities: pos: -50.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2705 components: - type: Transform pos: -48.5,68.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2706 components: - type: Transform @@ -86598,7 +85146,7 @@ entities: pos: -48.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2707 components: - type: Transform @@ -86606,7 +85154,7 @@ entities: pos: -49.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2708 components: - type: Transform @@ -86614,7 +85162,7 @@ entities: pos: -45.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2734 components: - type: Transform @@ -86622,7 +85170,7 @@ entities: pos: -47.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2743 components: - type: Transform @@ -86630,14 +85178,14 @@ entities: pos: -28.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2862 components: - type: Transform pos: -8.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3042 components: - type: Transform @@ -86645,7 +85193,7 @@ entities: pos: -26.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3050 components: - type: Transform @@ -86653,7 +85201,7 @@ entities: pos: -30.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3056 components: - type: Transform @@ -86661,7 +85209,7 @@ entities: pos: -26.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3062 components: - type: Transform @@ -86669,7 +85217,7 @@ entities: pos: -22.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3064 components: - type: Transform @@ -86677,7 +85225,7 @@ entities: pos: -35.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3066 components: - type: Transform @@ -86685,7 +85233,7 @@ entities: pos: -35.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3069 components: - type: Transform @@ -86693,21 +85241,21 @@ entities: pos: -35.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3077 components: - type: Transform pos: -40.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3099 components: - type: Transform pos: -42.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3111 components: - type: Transform @@ -86715,7 +85263,7 @@ entities: pos: -39.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3135 components: - type: Transform @@ -86723,7 +85271,7 @@ entities: pos: -53.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3148 components: - type: Transform @@ -86731,7 +85279,7 @@ entities: pos: -45.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3171 components: - type: Transform @@ -86739,7 +85287,7 @@ entities: pos: -45.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3228 components: - type: Transform @@ -86747,28 +85295,28 @@ entities: pos: -31.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3230 components: - type: Transform pos: -32.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3253 components: - type: Transform pos: -43.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3266 components: - type: Transform pos: -44.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3302 components: - type: Transform @@ -86776,7 +85324,7 @@ entities: pos: -60.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3303 components: - type: Transform @@ -86784,7 +85332,7 @@ entities: pos: -60.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3304 components: - type: Transform @@ -86792,7 +85340,7 @@ entities: pos: -60.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3305 components: - type: Transform @@ -86800,7 +85348,7 @@ entities: pos: -60.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3323 components: - type: Transform @@ -86808,43 +85356,35 @@ entities: pos: -56.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3324 components: - type: Transform pos: -50.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3325 components: - type: Transform pos: -27.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3327 components: - type: Transform pos: -17.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,10.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3376 components: - type: Transform pos: -26.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3401 components: - type: Transform @@ -86852,21 +85392,21 @@ entities: pos: -13.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3407 components: - type: Transform pos: -10.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3410 components: - type: Transform pos: 5.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3422 components: - type: Transform @@ -86874,14 +85414,14 @@ entities: pos: -0.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3469 components: - type: Transform pos: -16.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3479 components: - type: Transform @@ -86889,14 +85429,14 @@ entities: pos: -8.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3480 components: - type: Transform pos: -9.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3481 components: - type: Transform @@ -86904,7 +85444,7 @@ entities: pos: 3.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3485 components: - type: Transform @@ -86912,21 +85452,21 @@ entities: pos: -0.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6109 components: - type: Transform pos: -23.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6113 components: - type: Transform pos: 3.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6123 components: - type: Transform @@ -86934,14 +85474,14 @@ entities: pos: -0.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6205 components: - type: Transform pos: -9.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6214 components: - type: Transform @@ -86949,7 +85489,7 @@ entities: pos: -7.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6223 components: - type: Transform @@ -86957,7 +85497,7 @@ entities: pos: 0.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6229 components: - type: Transform @@ -86965,7 +85505,7 @@ entities: pos: -19.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6239 components: - type: Transform @@ -86973,7 +85513,7 @@ entities: pos: -25.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6245 components: - type: Transform @@ -86981,7 +85521,7 @@ entities: pos: -20.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6246 components: - type: Transform @@ -86989,7 +85529,7 @@ entities: pos: -19.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6834 components: - type: Transform @@ -86997,7 +85537,7 @@ entities: pos: -25.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6900 components: - type: Transform @@ -87005,7 +85545,7 @@ entities: pos: -28.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6920 components: - type: Transform @@ -87013,7 +85553,7 @@ entities: pos: -33.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6939 components: - type: Transform @@ -87021,14 +85561,25 @@ entities: pos: -18.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 7099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-40.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 7115 components: - type: Transform pos: -28.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7136 components: - type: Transform @@ -87038,7 +85589,7 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7137 components: - type: Transform @@ -87048,14 +85599,14 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7340 components: - type: Transform pos: -12.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7373 components: - type: Transform @@ -87063,7 +85614,7 @@ entities: pos: -7.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7424 components: - type: Transform @@ -87071,7 +85622,18 @@ entities: pos: -35.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 7443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-43.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 7569 components: - type: Transform @@ -87082,14 +85644,14 @@ entities: deviceLists: - 8254 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8033 components: - type: Transform pos: -13.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8100 components: - type: Transform @@ -87097,14 +85659,36 @@ entities: pos: -13.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8224 components: - type: Transform pos: -22.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 8297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-47.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-52.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 8316 components: - type: Transform @@ -87112,14 +85696,36 @@ entities: pos: -29.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 8335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-48.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-47.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 9046 components: - type: Transform pos: -25.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9686 components: - type: Transform @@ -87130,7 +85736,7 @@ entities: deviceLists: - 9671 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9811 components: - type: Transform @@ -87138,60 +85744,84 @@ entities: pos: -54.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11153 + color: '#0000FFFF' + - uid: 9884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-42.5 + pos: -23.5,-42.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11154 + color: '#0000FFFF' + - uid: 9903 components: - type: Transform - pos: -12.5,-40.5 + rot: 1.5707963267948966 rad + pos: -12.5,-35.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11155 + color: '#0000FFFF' + - uid: 9908 components: - type: Transform - pos: -2.5,-40.5 + rot: 1.5707963267948966 rad + pos: -16.5,-29.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11162 + color: '#0000FFFF' + - uid: 10022 components: - type: Transform - pos: -6.5,-35.5 + rot: 1.5707963267948966 rad + pos: -12.5,-31.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11163 + color: '#0000FFFF' + - uid: 10233 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-43.5 + pos: -63.5,-63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11165 + color: '#0000FFFF' + - uid: 11026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-32.5 + pos: -6.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11176 + color: '#0000FFFF' + - uid: 11134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-45.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 9996 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11165 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-28.5 + pos: 1.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11178 components: - type: Transform @@ -87199,36 +85829,42 @@ entities: pos: -2.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11180 components: - type: Transform pos: 10.5,-23.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11188 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-28.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11200 components: - type: Transform pos: 2.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11208 components: - type: Transform pos: 9.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11211 components: - type: Transform @@ -87236,14 +85872,14 @@ entities: pos: 12.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11216 components: - type: Transform pos: -2.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11217 components: - type: Transform @@ -87251,7 +85887,7 @@ entities: pos: 5.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11220 components: - type: Transform @@ -87259,7 +85895,7 @@ entities: pos: 8.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11222 components: - type: Transform @@ -87267,21 +85903,14 @@ entities: pos: 14.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11224 components: - type: Transform pos: 12.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11227 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11664 components: - type: Transform @@ -87289,7 +85918,7 @@ entities: pos: 33.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11868 components: - type: Transform @@ -87297,7 +85926,7 @@ entities: pos: 24.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11872 components: - type: Transform @@ -87305,7 +85934,7 @@ entities: pos: 24.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11922 components: - type: Transform @@ -87313,7 +85942,7 @@ entities: pos: 37.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11938 components: - type: Transform @@ -87321,7 +85950,7 @@ entities: pos: 17.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11939 components: - type: Transform @@ -87329,14 +85958,14 @@ entities: pos: 20.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11981 components: - type: Transform pos: 20.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11991 components: - type: Transform @@ -87344,21 +85973,21 @@ entities: pos: 19.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12007 components: - type: Transform pos: 30.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12010 components: - type: Transform pos: 25.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12060 components: - type: Transform @@ -87366,7 +85995,7 @@ entities: pos: 37.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12081 components: - type: Transform @@ -87374,7 +86003,7 @@ entities: pos: 30.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12230 components: - type: Transform @@ -87382,7 +86011,7 @@ entities: pos: 34.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12491 components: - type: Transform @@ -87390,7 +86019,7 @@ entities: pos: 9.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12492 components: - type: Transform @@ -87398,14 +86027,14 @@ entities: pos: 11.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12495 components: - type: Transform pos: 9.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12537 components: - type: Transform @@ -87413,14 +86042,14 @@ entities: pos: 9.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12538 components: - type: Transform pos: 18.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12579 components: - type: Transform @@ -87428,7 +86057,7 @@ entities: pos: 18.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12580 components: - type: Transform @@ -87436,7 +86065,7 @@ entities: pos: 18.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12581 components: - type: Transform @@ -87444,14 +86073,14 @@ entities: pos: 18.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12587 components: - type: Transform pos: 25.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12605 components: - type: Transform @@ -87459,14 +86088,14 @@ entities: pos: 24.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12611 components: - type: Transform pos: 27.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12756 components: - type: Transform @@ -87479,7 +86108,7 @@ entities: pos: 32.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12959 components: - type: Transform @@ -87487,7 +86116,7 @@ entities: pos: 27.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12976 components: - type: Transform @@ -87495,23 +86124,18 @@ entities: pos: 37.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,10.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13002 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,13.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13003 components: - type: Transform @@ -87519,7 +86143,7 @@ entities: pos: 28.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13004 components: - type: Transform @@ -87527,14 +86151,14 @@ entities: pos: 24.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13005 components: - type: Transform pos: 14.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13006 components: - type: Transform @@ -87542,14 +86166,18 @@ entities: pos: 13.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13081 + color: '#0000FFFF' + - uid: 13085 components: - type: Transform - pos: 18.5,16.5 + rot: 3.141592653589793 rad + pos: 17.5,14.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13335 components: - type: Transform @@ -87557,7 +86185,7 @@ entities: pos: 9.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13360 components: - type: Transform @@ -87565,28 +86193,28 @@ entities: pos: 26.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13469 components: - type: Transform pos: 16.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13470 components: - type: Transform pos: 20.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13593 components: - type: Transform pos: 35.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13783 components: - type: Transform @@ -87594,7 +86222,7 @@ entities: pos: 45.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13788 components: - type: Transform @@ -87602,14 +86230,22 @@ entities: pos: 30.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13789 components: - type: Transform pos: 30.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 14510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,10.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 15441 components: - type: Transform @@ -87617,14 +86253,14 @@ entities: pos: 51.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15619 components: - type: Transform pos: 52.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16096 components: - type: Transform @@ -87632,7 +86268,18 @@ entities: pos: 6.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 18074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,12.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 18436 components: - type: Transform @@ -87640,7 +86287,7 @@ entities: pos: -45.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18437 components: - type: Transform @@ -87648,35 +86295,35 @@ entities: pos: -45.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18438 components: - type: Transform pos: -58.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18439 components: - type: Transform pos: -49.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18440 components: - type: Transform pos: -53.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18449 components: - type: Transform pos: -63.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18450 components: - type: Transform @@ -87684,7 +86331,7 @@ entities: pos: -62.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18629 components: - type: Transform @@ -87692,49 +86339,49 @@ entities: pos: -59.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18655 components: - type: Transform pos: -79.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18662 components: - type: Transform pos: -77.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18663 components: - type: Transform pos: -75.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18667 components: - type: Transform pos: -68.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18668 components: - type: Transform pos: -67.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18674 components: - type: Transform pos: -55.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18678 components: - type: Transform @@ -87742,7 +86389,7 @@ entities: pos: -52.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18679 components: - type: Transform @@ -87750,7 +86397,7 @@ entities: pos: -52.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18720 components: - type: Transform @@ -87758,7 +86405,7 @@ entities: pos: -83.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18731 components: - type: Transform @@ -87766,7 +86413,7 @@ entities: pos: -80.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18732 components: - type: Transform @@ -87774,7 +86421,7 @@ entities: pos: -74.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18753 components: - type: Transform @@ -87782,21 +86429,21 @@ entities: pos: -76.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18754 components: - type: Transform pos: -71.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18757 components: - type: Transform pos: -60.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18758 components: - type: Transform @@ -87804,15 +86451,7 @@ entities: pos: -60.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-64.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 20335 components: - type: Transform @@ -87820,7 +86459,7 @@ entities: pos: 4.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21549 components: - type: Transform @@ -87828,14 +86467,14 @@ entities: pos: 39.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22023 components: - type: Transform pos: -0.5,74.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22024 components: - type: Transform @@ -87843,46 +86482,14 @@ entities: pos: 0.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22025 components: - type: Transform pos: -1.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-47.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-59.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasVentScrubber entities: - uid: 2324 @@ -87897,7 +86504,7 @@ entities: pos: -35.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2453 components: - type: Transform @@ -87905,7 +86512,7 @@ entities: pos: -35.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2483 components: - type: Transform @@ -87913,7 +86520,7 @@ entities: pos: -50.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2490 components: - type: Transform @@ -87921,7 +86528,7 @@ entities: pos: -42.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2492 components: - type: Transform @@ -87929,7 +86536,7 @@ entities: pos: -41.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2504 components: - type: Transform @@ -87937,7 +86544,7 @@ entities: pos: -35.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2525 components: - type: Transform @@ -87945,7 +86552,7 @@ entities: pos: -35.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2526 components: - type: Transform @@ -87953,7 +86560,7 @@ entities: pos: -34.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2545 components: - type: Transform @@ -87961,14 +86568,14 @@ entities: pos: -41.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2552 components: - type: Transform pos: -38.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2574 components: - type: Transform @@ -87976,7 +86583,7 @@ entities: pos: -25.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2593 components: - type: Transform @@ -87984,7 +86591,7 @@ entities: pos: -33.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2595 components: - type: Transform @@ -87992,7 +86599,7 @@ entities: pos: -34.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2641 components: - type: Transform @@ -88000,7 +86607,7 @@ entities: pos: -48.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2642 components: - type: Transform @@ -88008,7 +86615,7 @@ entities: pos: -44.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2643 components: - type: Transform @@ -88016,7 +86623,7 @@ entities: pos: -40.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2645 components: - type: Transform @@ -88024,7 +86631,7 @@ entities: pos: -43.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2670 components: - type: Transform @@ -88032,7 +86639,7 @@ entities: pos: -47.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2675 components: - type: Transform @@ -88040,7 +86647,7 @@ entities: pos: -50.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2730 components: - type: Transform @@ -88048,7 +86655,7 @@ entities: pos: -48.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2731 components: - type: Transform @@ -88056,7 +86663,7 @@ entities: pos: -50.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2732 components: - type: Transform @@ -88064,7 +86671,7 @@ entities: pos: -46.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2733 components: - type: Transform @@ -88072,7 +86679,7 @@ entities: pos: -49.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2742 components: - type: Transform @@ -88080,7 +86687,7 @@ entities: pos: -28.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3006 components: - type: Transform @@ -88088,7 +86695,7 @@ entities: pos: -10.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3041 components: - type: Transform @@ -88096,7 +86703,7 @@ entities: pos: -30.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3049 components: - type: Transform @@ -88104,7 +86711,7 @@ entities: pos: -31.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3055 components: - type: Transform @@ -88112,7 +86719,7 @@ entities: pos: -27.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3063 components: - type: Transform @@ -88120,7 +86727,7 @@ entities: pos: -21.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3065 components: - type: Transform @@ -88128,7 +86735,7 @@ entities: pos: -35.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3067 components: - type: Transform @@ -88136,7 +86743,7 @@ entities: pos: -35.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3068 components: - type: Transform @@ -88144,7 +86751,7 @@ entities: pos: -35.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3076 components: - type: Transform @@ -88152,7 +86759,7 @@ entities: pos: -39.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3100 components: - type: Transform @@ -88160,7 +86767,7 @@ entities: pos: -39.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3112 components: - type: Transform @@ -88168,7 +86775,7 @@ entities: pos: -41.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3136 components: - type: Transform @@ -88176,7 +86783,7 @@ entities: pos: -52.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3147 components: - type: Transform @@ -88184,7 +86791,7 @@ entities: pos: -44.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3170 components: - type: Transform @@ -88192,7 +86799,7 @@ entities: pos: -44.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3229 components: - type: Transform @@ -88200,7 +86807,7 @@ entities: pos: -31.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3231 components: - type: Transform @@ -88208,14 +86815,14 @@ entities: pos: -31.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3254 components: - type: Transform pos: -42.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3267 components: - type: Transform @@ -88223,7 +86830,7 @@ entities: pos: -41.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3317 components: - type: Transform @@ -88231,7 +86838,7 @@ entities: pos: -53.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3318 components: - type: Transform @@ -88239,7 +86846,7 @@ entities: pos: -53.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3326 components: - type: Transform @@ -88247,7 +86854,7 @@ entities: pos: -24.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3328 components: - type: Transform @@ -88255,7 +86862,7 @@ entities: pos: -14.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3358 components: - type: Transform @@ -88263,7 +86870,7 @@ entities: pos: -24.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3377 components: - type: Transform @@ -88271,14 +86878,14 @@ entities: pos: -24.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3398 components: - type: Transform pos: -17.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3400 components: - type: Transform @@ -88286,7 +86893,7 @@ entities: pos: -13.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3408 components: - type: Transform @@ -88294,7 +86901,7 @@ entities: pos: -6.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3409 components: - type: Transform @@ -88302,7 +86909,7 @@ entities: pos: 1.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3421 components: - type: Transform @@ -88310,21 +86917,21 @@ entities: pos: -4.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3482 components: - type: Transform pos: -12.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3483 components: - type: Transform pos: -10.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3484 components: - type: Transform @@ -88332,14 +86939,14 @@ entities: pos: 3.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3486 components: - type: Transform pos: -4.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5029 components: - type: Transform @@ -88347,7 +86954,7 @@ entities: pos: -28.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6108 components: - type: Transform @@ -88355,7 +86962,7 @@ entities: pos: -19.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6112 components: - type: Transform @@ -88363,7 +86970,7 @@ entities: pos: 0.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6122 components: - type: Transform @@ -88371,7 +86978,7 @@ entities: pos: -2.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6204 components: - type: Transform @@ -88379,7 +86986,7 @@ entities: pos: -9.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6213 components: - type: Transform @@ -88387,7 +86994,7 @@ entities: pos: -11.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6222 components: - type: Transform @@ -88395,7 +87002,7 @@ entities: pos: 0.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6265 components: - type: Transform @@ -88403,7 +87010,7 @@ entities: pos: -27.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6266 components: - type: Transform @@ -88411,7 +87018,7 @@ entities: pos: -21.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6268 components: - type: Transform @@ -88419,14 +87026,14 @@ entities: pos: -19.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6911 components: - type: Transform pos: -28.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6935 components: - type: Transform @@ -88434,7 +87041,28 @@ entities: pos: -33.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 7098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7100 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 7119 components: - type: Transform @@ -88442,7 +87070,7 @@ entities: pos: -28.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7130 components: - type: Transform @@ -88453,7 +87081,7 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7131 components: - type: Transform @@ -88464,14 +87092,47 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 7222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-46.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-52.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-42.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 7339 components: - type: Transform pos: -11.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7377 components: - type: Transform @@ -88479,7 +87140,7 @@ entities: pos: -7.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7378 components: - type: Transform @@ -88487,7 +87148,7 @@ entities: pos: -5.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7407 components: - type: Transform @@ -88495,7 +87156,7 @@ entities: pos: -18.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7567 components: - type: Transform @@ -88503,7 +87164,7 @@ entities: pos: -17.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7571 components: - type: Transform @@ -88513,7 +87174,7 @@ entities: deviceLists: - 8254 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7572 components: - type: Transform @@ -88521,21 +87182,32 @@ entities: pos: -13.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8223 components: - type: Transform pos: -24.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 8609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-47.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9049 components: - type: Transform pos: -25.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9713 components: - type: Transform @@ -88543,7 +87215,18 @@ entities: pos: -25.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 9793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-45.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 9996 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9846 components: - type: Transform @@ -88551,7 +87234,7 @@ entities: pos: -29.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9864 components: - type: Transform @@ -88562,69 +87245,66 @@ entities: deviceLists: - 9671 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10039 + color: '#FF0000FF' + - uid: 9897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-9.5 + rot: 3.141592653589793 rad + pos: -22.5,-47.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11094 + color: '#FF0000FF' + - uid: 9899 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11097 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-40.5 + pos: -15.5,-30.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11099 + color: '#FF0000FF' + - uid: 10039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-40.5 + rot: 1.5707963267948966 rad + pos: -55.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11107 + color: '#FF0000FF' + - uid: 10042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-30.5 + rot: -1.5707963267948966 rad + pos: -12.5,-34.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11114 + color: '#FF0000FF' + - uid: 10043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-43.5 + rot: -1.5707963267948966 rad + pos: -12.5,-30.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11115 + color: '#FF0000FF' + - uid: 10752 components: - type: Transform - pos: -8.5,-35.5 + pos: -8.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11166 components: - type: Transform @@ -88632,7 +87312,7 @@ entities: pos: 1.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11179 components: - type: Transform @@ -88640,23 +87320,29 @@ entities: pos: -2.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11189 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-28.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11192 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-23.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11201 components: - type: Transform @@ -88664,14 +87350,14 @@ entities: pos: 4.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11209 components: - type: Transform pos: 7.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11210 components: - type: Transform @@ -88679,14 +87365,14 @@ entities: pos: 12.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11214 components: - type: Transform pos: 20.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11215 components: - type: Transform @@ -88694,14 +87380,14 @@ entities: pos: -2.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11218 components: - type: Transform pos: 6.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11219 components: - type: Transform @@ -88709,7 +87395,7 @@ entities: pos: 8.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11221 components: - type: Transform @@ -88717,7 +87403,7 @@ entities: pos: 12.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11223 components: - type: Transform @@ -88725,14 +87411,14 @@ entities: pos: 9.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11681 components: - type: Transform pos: 25.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11714 components: - type: Transform @@ -88740,35 +87426,35 @@ entities: pos: 6.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11764 components: - type: Transform pos: 24.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11797 components: - type: Transform pos: 32.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11944 components: - type: Transform pos: 19.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11945 components: - type: Transform pos: 16.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11985 components: - type: Transform @@ -88776,28 +87462,28 @@ entities: pos: 18.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12043 components: - type: Transform pos: 29.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12044 components: - type: Transform pos: 26.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12489 components: - type: Transform pos: 8.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12490 components: - type: Transform @@ -88805,7 +87491,7 @@ entities: pos: 9.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12536 components: - type: Transform @@ -88813,7 +87499,7 @@ entities: pos: 9.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12539 components: - type: Transform @@ -88821,7 +87507,7 @@ entities: pos: 16.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12576 components: - type: Transform @@ -88829,7 +87515,7 @@ entities: pos: 18.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12577 components: - type: Transform @@ -88837,7 +87523,7 @@ entities: pos: 18.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12578 components: - type: Transform @@ -88845,21 +87531,21 @@ entities: pos: 18.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12583 components: - type: Transform pos: 21.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12606 components: - type: Transform pos: 24.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12619 components: - type: Transform @@ -88867,7 +87553,7 @@ entities: pos: 27.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12755 components: - type: Transform @@ -88881,7 +87567,7 @@ entities: pos: 29.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12824 components: - type: Transform @@ -88889,15 +87575,7 @@ entities: pos: 28.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13078 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13079 components: - type: Transform @@ -88905,7 +87583,7 @@ entities: pos: 13.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13080 components: - type: Transform @@ -88913,14 +87591,17 @@ entities: pos: 13.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13082 components: - type: Transform pos: 18.5,15.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13084 components: - type: Transform @@ -88928,22 +87609,14 @@ entities: pos: 22.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,11.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13086 components: - type: Transform pos: 25.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13336 components: - type: Transform @@ -88951,21 +87624,21 @@ entities: pos: 9.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13353 components: - type: Transform pos: 40.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13355 components: - type: Transform pos: 38.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13782 components: - type: Transform @@ -88973,21 +87646,32 @@ entities: pos: 45.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13798 components: - type: Transform pos: 29.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13799 components: - type: Transform pos: 30.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 14522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,11.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 14540 components: - type: Transform @@ -88995,14 +87679,25 @@ entities: pos: 20.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18060 components: - type: Transform pos: 30.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 18214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 18435 components: - type: Transform @@ -89010,7 +87705,7 @@ entities: pos: -44.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18441 components: - type: Transform @@ -89018,7 +87713,7 @@ entities: pos: -57.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18442 components: - type: Transform @@ -89026,14 +87721,14 @@ entities: pos: -51.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18451 components: - type: Transform pos: -61.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18519 components: - type: Transform @@ -89041,28 +87736,36 @@ entities: pos: -77.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18520 components: - type: Transform pos: -78.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18523 components: - type: Transform pos: -68.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18524 components: - type: Transform pos: -64.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 18547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-63.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 18630 components: - type: Transform @@ -89070,14 +87773,14 @@ entities: pos: -67.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18675 components: - type: Transform pos: -56.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18676 components: - type: Transform @@ -89085,7 +87788,7 @@ entities: pos: -52.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18677 components: - type: Transform @@ -89093,7 +87796,7 @@ entities: pos: -52.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18729 components: - type: Transform @@ -89101,7 +87804,7 @@ entities: pos: -80.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18730 components: - type: Transform @@ -89109,21 +87812,21 @@ entities: pos: -75.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18744 components: - type: Transform pos: -76.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18745 components: - type: Transform pos: -72.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18756 components: - type: Transform @@ -89131,22 +87834,14 @@ entities: pos: -63.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18759 components: - type: Transform pos: -63.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-65.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21545 components: - type: Transform @@ -89154,37 +87849,53 @@ entities: pos: 35.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21553 components: - type: Transform pos: 43.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasVolumePump entities: - - uid: 8255 + - uid: 9216 components: - type: Transform - pos: -9.5,-50.5 + pos: -5.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8258 + color: '#FF0000FF' + - uid: 9373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10044 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-50.5 + pos: -1.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-49.5 parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - proto: GeneratorRTG entities: - - uid: 22223 + - uid: 2402 components: - type: Transform - pos: -67.5,-64.5 + pos: -53.5,-59.5 parent: 30 - proto: Girder entities: @@ -89281,7 +87992,8 @@ entities: - uid: 194 components: - type: Transform - pos: -11.5,-56.5 + rot: 3.141592653589793 rad + pos: -4.5,-54.5 parent: 30 - uid: 317 components: @@ -89293,6 +88005,11 @@ entities: - type: Transform pos: -19.5,8.5 parent: 30 + - uid: 331 + components: + - type: Transform + pos: -62.5,-66.5 + parent: 30 - uid: 348 components: - type: Transform @@ -89408,6 +88125,11 @@ entities: - type: Transform pos: 6.5,0.5 parent: 30 + - uid: 399 + components: + - type: Transform + pos: -56.5,-18.5 + parent: 30 - uid: 425 components: - type: Transform @@ -89848,10 +88570,11 @@ entities: - type: Transform pos: -42.5,34.5 parent: 30 - - uid: 1493 + - uid: 1476 components: - type: Transform - pos: -53.5,34.5 + rot: -1.5707963267948966 rad + pos: -53.5,37.5 parent: 30 - uid: 1494 components: @@ -90342,41 +89065,26 @@ entities: - type: Transform pos: -53.5,72.5 parent: 30 - - uid: 2402 - components: - - type: Transform - pos: -34.5,66.5 - parent: 30 - - uid: 2403 - components: - - type: Transform - pos: -33.5,66.5 - parent: 30 - uid: 2933 components: - type: Transform pos: -15.5,-16.5 parent: 30 - - uid: 3712 + - uid: 3348 components: - type: Transform - pos: -46.5,3.5 + rot: 3.141592653589793 rad + pos: -61.5,-70.5 parent: 30 - - uid: 4241 + - uid: 3712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-67.5 + pos: -46.5,3.5 parent: 30 - uid: 4370 components: - type: Transform - pos: -34.5,67.5 - parent: 30 - - uid: 4371 - components: - - type: Transform - pos: -35.5,67.5 + pos: -79.5,42.5 parent: 30 - uid: 4390 components: @@ -90393,27 +89101,6 @@ entities: - type: Transform pos: -46.5,-5.5 parent: 30 - - uid: 4412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-67.5 - parent: 30 - - uid: 4424 - components: - - type: Transform - pos: -36.5,68.5 - parent: 30 - - uid: 4426 - components: - - type: Transform - pos: -35.5,68.5 - parent: 30 - - uid: 4455 - components: - - type: Transform - pos: -32.5,65.5 - parent: 30 - uid: 4789 components: - type: Transform @@ -90465,6 +89152,12 @@ entities: - type: Transform pos: -60.5,5.5 parent: 30 + - uid: 4893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-54.5 + parent: 30 - uid: 5018 components: - type: Transform @@ -90730,11 +89423,6 @@ entities: - type: Transform pos: -50.5,4.5 parent: 30 - - uid: 5732 - components: - - type: Transform - pos: 4.5,-42.5 - parent: 30 - uid: 5771 components: - type: Transform @@ -90883,7 +89571,8 @@ entities: - uid: 6496 components: - type: Transform - pos: -32.5,64.5 + rot: -1.5707963267948966 rad + pos: -85.5,40.5 parent: 30 - uid: 6534 components: @@ -91007,7 +89696,8 @@ entities: - uid: 6717 components: - type: Transform - pos: -31.5,64.5 + rot: -1.5707963267948966 rad + pos: -88.5,40.5 parent: 30 - uid: 6746 components: @@ -91076,16 +89766,6 @@ entities: - type: Transform pos: -12.5,-13.5 parent: 30 - - uid: 7110 - components: - - type: Transform - pos: 2.5,-48.5 - parent: 30 - - uid: 7111 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 30 - uid: 7172 components: - type: Transform @@ -91162,11 +89842,6 @@ entities: - type: Transform pos: -63.5,42.5 parent: 30 - - uid: 7449 - components: - - type: Transform - pos: -89.5,42.5 - parent: 30 - uid: 7457 components: - type: Transform @@ -91242,6 +89917,12 @@ entities: - type: Transform pos: 47.5,12.5 parent: 30 + - uid: 7751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-79.5 + parent: 30 - uid: 7839 components: - type: Transform @@ -91278,11 +89959,6 @@ entities: - type: Transform pos: -32.5,-5.5 parent: 30 - - uid: 8256 - components: - - type: Transform - pos: -20.5,-47.5 - parent: 30 - uid: 8271 components: - type: Transform @@ -91328,11 +90004,6 @@ entities: - type: Transform pos: 7.5,-12.5 parent: 30 - - uid: 8361 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 30 - uid: 8373 components: - type: Transform @@ -91373,16 +90044,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-26.5 parent: 30 - - uid: 8418 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 30 - - uid: 8422 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 30 - uid: 8423 components: - type: Transform @@ -91403,11 +90064,6 @@ entities: - type: Transform pos: 17.5,-16.5 parent: 30 - - uid: 8427 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 30 - uid: 8446 components: - type: Transform @@ -91742,11 +90398,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-35.5 parent: 30 - - uid: 9104 - components: - - type: Transform - pos: -4.5,-56.5 - parent: 30 - uid: 9105 components: - type: Transform @@ -91782,15 +90433,11 @@ entities: - type: Transform pos: 24.5,-34.5 parent: 30 - - uid: 9129 - components: - - type: Transform - pos: -5.5,-56.5 - parent: 30 - - uid: 9164 + - uid: 9122 components: - type: Transform - pos: -9.5,-56.5 + rot: -1.5707963267948966 rad + pos: -53.5,35.5 parent: 30 - uid: 9165 components: @@ -91805,7 +90452,8 @@ entities: - uid: 9174 components: - type: Transform - pos: -2.5,-56.5 + rot: 3.141592653589793 rad + pos: -2.5,-54.5 parent: 30 - uid: 9185 components: @@ -91837,170 +90485,241 @@ entities: - type: Transform pos: -0.5,-32.5 parent: 30 - - uid: 9295 + - uid: 9297 components: - type: Transform - pos: 4.5,-44.5 + pos: 4.5,-38.5 parent: 30 - - uid: 9297 + - uid: 9324 components: - type: Transform - pos: 4.5,-38.5 + rot: 3.141592653589793 rad + pos: -3.5,-60.5 parent: 30 - - uid: 9342 + - uid: 9326 components: - type: Transform - pos: -3.5,-56.5 + rot: 3.141592653589793 rad + pos: -0.5,-60.5 parent: 30 - - uid: 9343 + - uid: 9328 components: - type: Transform - pos: -12.5,-56.5 + rot: 3.141592653589793 rad + pos: 2.5,-60.5 + parent: 30 + - uid: 9329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-60.5 + parent: 30 + - uid: 9348 + components: + - type: Transform + pos: 13.5,-52.5 parent: 30 - uid: 9362 components: - type: Transform pos: -8.5,-37.5 parent: 30 + - uid: 9364 + components: + - type: Transform + pos: 11.5,-45.5 + parent: 30 - uid: 9365 components: - type: Transform pos: -6.5,-37.5 parent: 30 - - uid: 9424 + - uid: 9371 components: - type: Transform - pos: -20.5,-43.5 + pos: 8.5,-58.5 parent: 30 - - uid: 9425 + - uid: 9372 components: - type: Transform - pos: -20.5,-40.5 + pos: 8.5,-55.5 parent: 30 - - uid: 9589 + - uid: 9398 components: - type: Transform - pos: -17.5,-37.5 + pos: 8.5,-57.5 parent: 30 - - uid: 9590 + - uid: 9399 components: - type: Transform - pos: -19.5,-37.5 + pos: 8.5,-54.5 parent: 30 - - uid: 9662 + - uid: 9409 components: - type: Transform - pos: 12.5,37.5 + rot: 3.141592653589793 rad + pos: -3.5,-44.5 parent: 30 - - uid: 9682 + - uid: 9504 components: - type: Transform - pos: 1.5,-55.5 + pos: 13.5,-49.5 parent: 30 - - uid: 9719 + - uid: 9505 components: - type: Transform - pos: 12.5,36.5 + pos: 13.5,-47.5 parent: 30 - - uid: 9814 + - uid: 9572 components: - type: Transform - pos: 0.5,-55.5 + rot: 3.141592653589793 rad + pos: -18.5,-49.5 parent: 30 - - uid: 9815 + - uid: 9573 components: - type: Transform - pos: 0.5,-47.5 + rot: 3.141592653589793 rad + pos: -6.5,-42.5 parent: 30 - - uid: 9816 + - uid: 9579 components: - type: Transform - pos: 1.5,-47.5 + rot: 3.141592653589793 rad + pos: -14.5,-39.5 parent: 30 - - uid: 9819 + - uid: 9580 components: - type: Transform - pos: 1.5,-45.5 + rot: 3.141592653589793 rad + pos: -22.5,-45.5 parent: 30 - - uid: 9820 + - uid: 9584 components: - type: Transform - pos: 3.5,-45.5 + rot: 3.141592653589793 rad + pos: -18.5,-45.5 parent: 30 - - uid: 9918 + - uid: 9585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-54.5 + rot: 3.141592653589793 rad + pos: -24.5,-45.5 parent: 30 - - uid: 9919 + - uid: 9586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-53.5 + rot: 3.141592653589793 rad + pos: -16.5,-45.5 parent: 30 - - uid: 9920 + - uid: 9587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-52.5 + rot: 3.141592653589793 rad + pos: -16.5,-49.5 parent: 30 - - uid: 9921 + - uid: 9588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-44.5 + parent: 30 + - uid: 9645 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 30 + - uid: 9649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-60.5 + parent: 30 + - uid: 9650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-60.5 + parent: 30 + - uid: 9662 + components: + - type: Transform + pos: 12.5,37.5 + parent: 30 + - uid: 9719 + components: + - type: Transform + pos: 12.5,36.5 + parent: 30 + - uid: 9816 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-50.5 + pos: -1.5,-42.5 parent: 30 - - uid: 9922 + - uid: 9819 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-49.5 + pos: 2.5,-42.5 parent: 30 - - uid: 9936 + - uid: 9823 components: - type: Transform - pos: -0.5,-54.5 + rot: 1.5707963267948966 rad + pos: -16.5,-57.5 parent: 30 - - uid: 9937 + - uid: 9824 components: - type: Transform - pos: -0.5,-52.5 + rot: -1.5707963267948966 rad + pos: -9.5,-45.5 parent: 30 - - uid: 9938 + - uid: 9825 components: - type: Transform - pos: -0.5,-51.5 + rot: -1.5707963267948966 rad + pos: -9.5,-43.5 parent: 30 - - uid: 9939 + - uid: 9826 components: - type: Transform - pos: -0.5,-50.5 + rot: -1.5707963267948966 rad + pos: -7.5,-42.5 parent: 30 - - uid: 9945 + - uid: 9827 components: - type: Transform - pos: -10.5,-56.5 + rot: -1.5707963267948966 rad + pos: -5.5,-42.5 parent: 30 - - uid: 9989 + - uid: 9828 components: - type: Transform - pos: -8.5,-42.5 + rot: 1.5707963267948966 rad + pos: -17.5,-57.5 parent: 30 - - uid: 9990 + - uid: 9829 components: - type: Transform - pos: -6.5,-42.5 + rot: 1.5707963267948966 rad + pos: -15.5,-57.5 parent: 30 - - uid: 9991 + - uid: 9867 components: - type: Transform - pos: -10.5,-42.5 + rot: 1.5707963267948966 rad + pos: -18.5,-57.5 parent: 30 - - uid: 9992 + - uid: 9973 components: - type: Transform - pos: -4.5,-42.5 + pos: 11.5,-54.5 + parent: 30 + - uid: 9975 + components: + - type: Transform + pos: 10.5,-54.5 parent: 30 - uid: 10068 components: @@ -92037,192 +90756,243 @@ entities: - type: Transform pos: -57.5,-10.5 parent: 30 - - uid: 10137 + - uid: 10191 components: - type: Transform - pos: -18.5,-49.5 + rot: -1.5707963267948966 rad + pos: -14.5,-29.5 parent: 30 - - uid: 10138 + - uid: 10193 components: - type: Transform - pos: -16.5,-49.5 + rot: -1.5707963267948966 rad + pos: -14.5,-28.5 parent: 30 - - uid: 10139 + - uid: 10221 components: - type: Transform - pos: -16.5,-52.5 + pos: -62.5,6.5 parent: 30 - - uid: 10140 + - uid: 10222 components: - type: Transform - pos: -18.5,-52.5 + pos: -62.5,7.5 parent: 30 - - uid: 10147 + - uid: 10224 components: - type: Transform - pos: -38.5,68.5 + pos: -62.5,8.5 parent: 30 - - uid: 10148 + - uid: 10234 components: - type: Transform - pos: -36.5,66.5 + pos: -57.5,-7.5 parent: 30 - - uid: 10149 + - uid: 10288 components: - type: Transform - pos: -37.5,67.5 + rot: 1.5707963267948966 rad + pos: 2.5,-21.5 parent: 30 - - uid: 10187 + - uid: 10396 components: - type: Transform - pos: -37.5,65.5 + pos: 23.5,-16.5 parent: 30 - - uid: 10188 + - uid: 10553 components: - type: Transform - pos: -36.5,64.5 + pos: 13.5,-51.5 parent: 30 - - uid: 10189 + - uid: 10555 components: - type: Transform - pos: -37.5,64.5 + pos: 12.5,-54.5 parent: 30 - - uid: 10207 + - uid: 10582 components: - type: Transform - pos: -37.5,68.5 + rot: 3.141592653589793 rad + pos: 4.5,-60.5 parent: 30 - - uid: 10209 + - uid: 10614 components: - type: Transform - pos: -38.5,67.5 + pos: 7.5,-59.5 parent: 30 - - uid: 10210 + - uid: 10639 components: - type: Transform - pos: -34.5,65.5 + pos: 10.5,-45.5 parent: 30 - - uid: 10221 + - uid: 10641 components: - type: Transform - pos: -62.5,6.5 + rot: 3.141592653589793 rad + pos: -3.5,-61.5 parent: 30 - - uid: 10222 + - uid: 10655 components: - type: Transform - pos: -62.5,7.5 + rot: 3.141592653589793 rad + pos: 16.5,-19.5 parent: 30 - - uid: 10224 + - uid: 10657 components: - type: Transform - pos: -62.5,8.5 + pos: -8.5,-64.5 parent: 30 - - uid: 10227 + - uid: 10738 components: - type: Transform - pos: -37.5,66.5 + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 parent: 30 - - uid: 10228 + - uid: 11030 components: - type: Transform - pos: -38.5,66.5 + pos: -32.5,-52.5 parent: 30 - - uid: 10229 + - uid: 11031 components: - type: Transform - pos: -38.5,65.5 + pos: -31.5,-52.5 parent: 30 - - uid: 10230 + - uid: 11033 components: - type: Transform - pos: -34.5,64.5 + pos: -30.5,-52.5 parent: 30 - - uid: 10231 + - uid: 11034 components: - type: Transform - pos: -36.5,65.5 + pos: -28.5,-53.5 parent: 30 - - uid: 10232 + - uid: 11036 components: - type: Transform - pos: -35.5,66.5 + pos: -27.5,-53.5 parent: 30 - - uid: 10233 + - uid: 11040 components: - type: Transform - pos: -35.5,65.5 + pos: -24.5,-76.5 parent: 30 - - uid: 10234 + - uid: 11041 components: - type: Transform - pos: -57.5,-7.5 + pos: -15.5,-76.5 parent: 30 - - uid: 10235 + - uid: 11043 components: - type: Transform - pos: -36.5,67.5 + pos: -8.5,-68.5 parent: 30 - - uid: 10236 + - uid: 11044 components: - type: Transform - pos: -33.5,64.5 + pos: -34.5,-52.5 parent: 30 - - uid: 10237 + - uid: 11045 components: - type: Transform - pos: -33.5,65.5 + pos: -35.5,-52.5 parent: 30 - - uid: 10288 + - uid: 11046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-21.5 + pos: -37.5,-52.5 parent: 30 - - uid: 10396 + - uid: 11047 components: - type: Transform - pos: 23.5,-16.5 + pos: -38.5,-52.5 parent: 30 - - uid: 10435 + - uid: 11048 components: - type: Transform - pos: -25.5,-67.5 + pos: -40.5,-52.5 parent: 30 - - uid: 10436 + - uid: 11049 components: - type: Transform - pos: -26.5,-67.5 + pos: -40.5,-51.5 parent: 30 - - uid: 10437 + - uid: 11050 components: - type: Transform - pos: -27.5,-67.5 + pos: -40.5,-50.5 parent: 30 - - uid: 10438 + - uid: 11051 components: - type: Transform - pos: -28.5,-67.5 + pos: -43.5,-54.5 parent: 30 - - uid: 10439 + - uid: 11052 components: - type: Transform - pos: -29.5,-67.5 + pos: -44.5,-54.5 parent: 30 - - uid: 10440 + - uid: 11053 components: - type: Transform - pos: -33.5,-67.5 + pos: -44.5,-56.5 parent: 30 - - uid: 10441 + - uid: 11054 components: - type: Transform - pos: -32.5,-67.5 + pos: -44.5,-58.5 parent: 30 - - uid: 10738 + - uid: 11055 + components: + - type: Transform + pos: -45.5,-58.5 + parent: 30 + - uid: 11056 + components: + - type: Transform + pos: -46.5,-58.5 + parent: 30 + - uid: 11085 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-26.5 + pos: -14.5,-57.5 + parent: 30 + - uid: 11105 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 30 + - uid: 11111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-32.5 + parent: 30 + - uid: 11136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-54.5 + parent: 30 + - uid: 11137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-57.5 + parent: 30 + - uid: 11163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-17.5 + parent: 30 + - uid: 11173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-72.5 parent: 30 - uid: 11194 components: @@ -92235,15 +91005,41 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-12.5 parent: 30 - - uid: 11257 + - uid: 11264 components: - type: Transform - pos: -18.5,-45.5 + rot: 3.141592653589793 rad + pos: -7.5,-78.5 parent: 30 - - uid: 11258 + - uid: 11265 components: - type: Transform - pos: -16.5,-45.5 + rot: 3.141592653589793 rad + pos: -8.5,-78.5 + parent: 30 + - uid: 11266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-78.5 + parent: 30 + - uid: 11267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-79.5 + parent: 30 + - uid: 11276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-76.5 + parent: 30 + - uid: 11279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-78.5 parent: 30 - uid: 11293 components: @@ -92277,6 +91073,12 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-22.5 parent: 30 + - uid: 11309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 30 - uid: 11580 components: - type: Transform @@ -92398,15 +91200,17 @@ entities: - type: Transform pos: 47.5,6.5 parent: 30 - - uid: 12629 + - uid: 12442 components: - type: Transform - pos: 13.5,13.5 + rot: 1.5707963267948966 rad + pos: -20.5,-57.5 parent: 30 - uid: 12650 components: - type: Transform - pos: 15.5,13.5 + rot: -1.5707963267948966 rad + pos: -88.5,42.5 parent: 30 - uid: 12662 components: @@ -92455,6 +91259,12 @@ entities: - type: Transform pos: 19.5,24.5 parent: 30 + - uid: 12860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-71.5 + parent: 30 - uid: 12863 components: - type: Transform @@ -92480,6 +91290,11 @@ entities: - type: Transform pos: 35.5,11.5 parent: 30 + - uid: 12929 + components: + - type: Transform + pos: -61.5,-18.5 + parent: 30 - uid: 13097 components: - type: Transform @@ -92690,6 +91505,48 @@ entities: - type: Transform pos: 40.5,36.5 parent: 30 + - uid: 13954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-54.5 + parent: 30 + - uid: 13973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-72.5 + parent: 30 + - uid: 13979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-71.5 + parent: 30 + - uid: 13980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-77.5 + parent: 30 + - uid: 13981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-78.5 + parent: 30 + - uid: 13982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-78.5 + parent: 30 + - uid: 14358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 30 - uid: 14514 components: - type: Transform @@ -92700,11 +91557,6 @@ entities: - type: Transform pos: 54.5,23.5 parent: 30 - - uid: 14517 - components: - - type: Transform - pos: 49.5,23.5 - parent: 30 - uid: 14518 components: - type: Transform @@ -92725,6 +91577,36 @@ entities: - type: Transform pos: 47.5,27.5 parent: 30 + - uid: 14526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,65.5 + parent: 30 + - uid: 14527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,68.5 + parent: 30 + - uid: 14528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,65.5 + parent: 30 + - uid: 14529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,66.5 + parent: 30 + - uid: 14534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,65.5 + parent: 30 - uid: 14536 components: - type: Transform @@ -92735,11 +91617,6 @@ entities: - type: Transform pos: 15.5,65.5 parent: 30 - - uid: 14538 - components: - - type: Transform - pos: -26.5,-54.5 - parent: 30 - uid: 14778 components: - type: Transform @@ -92770,6 +91647,18 @@ entities: - type: Transform pos: 20.5,60.5 parent: 30 + - uid: 14845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,69.5 + parent: 30 + - uid: 14970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,64.5 + parent: 30 - uid: 14971 components: - type: Transform @@ -92780,6 +91669,24 @@ entities: - type: Transform pos: 41.5,24.5 parent: 30 + - uid: 15073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,66.5 + parent: 30 + - uid: 15166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,65.5 + parent: 30 + - uid: 15180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,69.5 + parent: 30 - uid: 15207 components: - type: Transform @@ -92800,6 +91707,12 @@ entities: - type: Transform pos: 17.5,63.5 parent: 30 + - uid: 15280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,63.5 + parent: 30 - uid: 15336 components: - type: Transform @@ -92825,6 +91738,18 @@ entities: - type: Transform pos: 52.5,31.5 parent: 30 + - uid: 15349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,67.5 + parent: 30 + - uid: 15353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-70.5 + parent: 30 - uid: 15445 components: - type: Transform @@ -93105,6 +92030,17 @@ entities: - type: Transform pos: 47.5,9.5 parent: 30 + - uid: 15985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,65.5 + parent: 30 + - uid: 16133 + components: + - type: Transform + pos: -75.5,42.5 + parent: 30 - uid: 16259 components: - type: Transform @@ -93316,6 +92252,12 @@ entities: rot: 3.141592653589793 rad pos: 36.5,11.5 parent: 30 + - uid: 16795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-71.5 + parent: 30 - uid: 16807 components: - type: Transform @@ -93351,11 +92293,6 @@ entities: - type: Transform pos: -58.5,36.5 parent: 30 - - uid: 16951 - components: - - type: Transform - pos: -51.5,36.5 - parent: 30 - uid: 17032 components: - type: Transform @@ -93884,6 +92821,11 @@ entities: - type: Transform pos: -79.5,-37.5 parent: 30 + - uid: 17734 + components: + - type: Transform + pos: -66.5,-18.5 + parent: 30 - uid: 17796 components: - type: Transform @@ -93932,6 +92874,11 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,-22.5 parent: 30 + - uid: 17810 + components: + - type: Transform + pos: -85.5,-44.5 + parent: 30 - uid: 17975 components: - type: Transform @@ -94057,6 +93004,21 @@ entities: - type: Transform pos: -37.5,-38.5 parent: 30 + - uid: 18070 + components: + - type: Transform + pos: -71.5,42.5 + parent: 30 + - uid: 18072 + components: + - type: Transform + pos: -57.5,-18.5 + parent: 30 + - uid: 18086 + components: + - type: Transform + pos: -85.5,-46.5 + parent: 30 - uid: 18154 components: - type: Transform @@ -94132,15 +93094,11 @@ entities: - type: Transform pos: -85.5,-59.5 parent: 30 - - uid: 18187 - components: - - type: Transform - pos: -59.5,-69.5 - parent: 30 - - uid: 18188 + - uid: 18206 components: - type: Transform - pos: -58.5,-69.5 + rot: 3.141592653589793 rad + pos: 15.5,10.5 parent: 30 - uid: 18260 components: @@ -94247,6 +93205,40 @@ entities: - type: Transform pos: -52.5,-40.5 parent: 30 + - uid: 18358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-71.5 + parent: 30 + - uid: 18789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-70.5 + parent: 30 + - uid: 18797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-71.5 + parent: 30 + - uid: 18801 + components: + - type: Transform + pos: -64.5,-66.5 + parent: 30 + - uid: 18802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,40.5 + parent: 30 + - uid: 18803 + components: + - type: Transform + pos: -63.5,-66.5 + parent: 30 - uid: 18816 components: - type: Transform @@ -94257,11 +93249,107 @@ entities: - type: Transform pos: -74.5,-67.5 parent: 30 + - uid: 18835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,40.5 + parent: 30 - uid: 19067 components: - type: Transform pos: -51.5,-40.5 parent: 30 + - uid: 19190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-77.5 + parent: 30 + - uid: 19191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-62.5 + parent: 30 + - uid: 19192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-76.5 + parent: 30 + - uid: 19193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-64.5 + parent: 30 + - uid: 19194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-63.5 + parent: 30 + - uid: 19231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-63.5 + parent: 30 + - uid: 19232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-64.5 + parent: 30 + - uid: 19233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-62.5 + parent: 30 + - uid: 19236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-79.5 + parent: 30 + - uid: 19237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-79.5 + parent: 30 + - uid: 19238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-79.5 + parent: 30 + - uid: 19239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-79.5 + parent: 30 + - uid: 19423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-70.5 + parent: 30 + - uid: 19425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-71.5 + parent: 30 + - uid: 19426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-70.5 + parent: 30 - uid: 19641 components: - type: Transform @@ -94717,6 +93805,36 @@ entities: - type: Transform pos: -36.5,-36.5 parent: 30 + - uid: 20664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-54.5 + parent: 30 + - uid: 20666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-51.5 + parent: 30 + - uid: 20675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-50.5 + parent: 30 + - uid: 20676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-49.5 + parent: 30 + - uid: 20677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-48.5 + parent: 30 - uid: 20969 components: - type: Transform @@ -94827,96 +93945,6 @@ entities: - type: Transform pos: -40.5,32.5 parent: 30 - - uid: 21392 - components: - - type: Transform - pos: -25.5,-54.5 - parent: 30 - - uid: 21393 - components: - - type: Transform - pos: -24.5,-54.5 - parent: 30 - - uid: 21394 - components: - - type: Transform - pos: -23.5,-54.5 - parent: 30 - - uid: 21397 - components: - - type: Transform - pos: -10.5,-63.5 - parent: 30 - - uid: 21398 - components: - - type: Transform - pos: -9.5,-63.5 - parent: 30 - - uid: 21399 - components: - - type: Transform - pos: -8.5,-63.5 - parent: 30 - - uid: 21400 - components: - - type: Transform - pos: -7.5,-63.5 - parent: 30 - - uid: 21401 - components: - - type: Transform - pos: -6.5,-63.5 - parent: 30 - - uid: 21402 - components: - - type: Transform - pos: -5.5,-63.5 - parent: 30 - - uid: 21403 - components: - - type: Transform - pos: -4.5,-63.5 - parent: 30 - - uid: 21404 - components: - - type: Transform - pos: 6.5,-54.5 - parent: 30 - - uid: 21405 - components: - - type: Transform - pos: 6.5,-53.5 - parent: 30 - - uid: 21406 - components: - - type: Transform - pos: 6.5,-52.5 - parent: 30 - - uid: 21407 - components: - - type: Transform - pos: 6.5,-51.5 - parent: 30 - - uid: 21408 - components: - - type: Transform - pos: 6.5,-50.5 - parent: 30 - - uid: 21409 - components: - - type: Transform - pos: 6.5,-49.5 - parent: 30 - - uid: 21410 - components: - - type: Transform - pos: 6.5,-48.5 - parent: 30 - - uid: 21411 - components: - - type: Transform - pos: 6.5,-55.5 - parent: 30 - uid: 21412 components: - type: Transform @@ -94977,21 +94005,11 @@ entities: - type: Transform pos: 10.5,-42.5 parent: 30 - - uid: 21424 - components: - - type: Transform - pos: 6.5,-44.5 - parent: 30 - uid: 21425 components: - type: Transform pos: 23.5,-41.5 parent: 30 - - uid: 21426 - components: - - type: Transform - pos: 6.5,-41.5 - parent: 30 - uid: 21427 components: - type: Transform @@ -95002,16 +94020,6 @@ entities: - type: Transform pos: 8.5,-41.5 parent: 30 - - uid: 21429 - components: - - type: Transform - pos: 7.5,-44.5 - parent: 30 - - uid: 21430 - components: - - type: Transform - pos: 8.5,-44.5 - parent: 30 - uid: 21431 components: - type: Transform @@ -95092,11 +94100,6 @@ entities: - type: Transform pos: 19.5,65.5 parent: 30 - - uid: 21457 - components: - - type: Transform - pos: -14.5,-43.5 - parent: 30 - uid: 21516 components: - type: Transform @@ -95142,16 +94145,6 @@ entities: - type: Transform pos: -69.5,-52.5 parent: 30 - - uid: 22211 - components: - - type: Transform - pos: -69.5,-60.5 - parent: 30 - - uid: 22212 - components: - - type: Transform - pos: -69.5,-59.5 - parent: 30 - uid: 22273 components: - type: Transform @@ -95167,261 +94160,6 @@ entities: - type: Transform pos: 3.5,62.5 parent: 30 - - uid: 22623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-63.5 - parent: 30 - - uid: 22624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-62.5 - parent: 30 - - uid: 22625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-61.5 - parent: 30 - - uid: 22626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-61.5 - parent: 30 - - uid: 22627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-61.5 - parent: 30 - - uid: 22628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-59.5 - parent: 30 - - uid: 22629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-59.5 - parent: 30 - - uid: 22630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-59.5 - parent: 30 - - uid: 22651 - components: - - type: Transform - pos: -32.5,-57.5 - parent: 30 - - uid: 22652 - components: - - type: Transform - pos: -32.5,-58.5 - parent: 30 - - uid: 22653 - components: - - type: Transform - pos: -30.5,-61.5 - parent: 30 - - uid: 22856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-67.5 - parent: 30 - - uid: 22857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-67.5 - parent: 30 - - uid: 22858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-67.5 - parent: 30 - - uid: 22859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-67.5 - parent: 30 - - uid: 22860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-67.5 - parent: 30 - - uid: 22861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-67.5 - parent: 30 - - uid: 22862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-66.5 - parent: 30 - - uid: 22863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-65.5 - parent: 30 - - uid: 22864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-64.5 - parent: 30 - - uid: 22865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-63.5 - parent: 30 - - uid: 22866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-62.5 - parent: 30 - - uid: 22867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-61.5 - parent: 30 - - uid: 22868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-60.5 - parent: 30 - - uid: 22869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-59.5 - parent: 30 - - uid: 22870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-58.5 - parent: 30 - - uid: 22871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-57.5 - parent: 30 - - uid: 22872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-56.5 - parent: 30 - - uid: 22873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-55.5 - parent: 30 - - uid: 22874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-54.5 - parent: 30 - - uid: 22875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-53.5 - parent: 30 - - uid: 22876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-53.5 - parent: 30 - - uid: 22877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-53.5 - parent: 30 - - uid: 22878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-53.5 - parent: 30 - - uid: 22879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-53.5 - parent: 30 - - uid: 22880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-53.5 - parent: 30 - - uid: 22881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-53.5 - parent: 30 - - uid: 22882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-53.5 - parent: 30 - - uid: 22883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-53.5 - parent: 30 - - uid: 22884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-53.5 - parent: 30 - - uid: 22885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-53.5 - parent: 30 - - uid: 22886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-53.5 - parent: 30 - - uid: 22887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-53.5 - parent: 30 - proto: GrilleBroken entities: - uid: 695 @@ -95509,29 +94247,16 @@ entities: - type: Transform pos: -62.5,9.5 parent: 30 - - uid: 10529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-68.5 - parent: 30 - - uid: 10530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-67.5 - parent: 30 - - uid: 10531 + - uid: 11042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-67.5 + pos: -26.5,-70.5 parent: 30 - - uid: 10532 + - uid: 13978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-67.5 + rot: 3.141592653589793 rad + pos: -8.5,-72.5 parent: 30 - uid: 15444 components: @@ -95612,6 +94337,12 @@ entities: rot: 3.141592653589793 rad pos: 56.5,39.5 parent: 30 + - uid: 16132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,41.5 + parent: 30 - uid: 16410 components: - type: Transform @@ -95759,6 +94490,12 @@ entities: rot: -1.5707963267948966 rad pos: -65.5,-21.5 parent: 30 + - uid: 18599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,40.5 + parent: 30 - uid: 19643 components: - type: Transform @@ -95834,10 +94571,10 @@ entities: - type: Transform pos: -32.534565,30.536125 parent: 30 - - uid: 9421 + - uid: 18923 components: - type: Transform - pos: -22.512821,-47.59407 + pos: -15.53532,-37.702564 parent: 30 - proto: HandheldHealthAnalyzer entities: @@ -95899,33 +94636,27 @@ entities: parent: 30 - proto: HeatExchanger entities: - - uid: 3118 - components: - - type: Transform - pos: -3.5,-58.5 - parent: 30 - - uid: 3155 + - uid: 9651 components: - type: Transform - pos: -3.5,-57.5 + rot: 3.141592653589793 rad + pos: 3.5,-56.5 parent: 30 - - uid: 7104 + - uid: 11122 components: - type: Transform - pos: -11.5,-58.5 + rot: 3.141592653589793 rad + pos: -4.5,-56.5 parent: 30 - - uid: 8295 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20644 components: - type: Transform - pos: 3.5,-51.5 + pos: 7.5,-50.5 parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 9621 - components: - - type: Transform - pos: -11.5,-57.5 - parent: 30 - proto: HighSecCommandLocked entities: - uid: 2128 @@ -96089,15 +94820,15 @@ entities: parent: 30 - proto: HydroponicsToolMiniHoe entities: - - uid: 434 + - uid: 2347 components: - type: Transform - pos: -25.483442,11.482555 + pos: -45.453583,69.54325 parent: 30 - - uid: 2347 + - uid: 18857 components: - type: Transform - pos: -45.453583,69.54325 + pos: -28.537731,11.513851 parent: 30 - uid: 19544 components: @@ -96113,15 +94844,15 @@ entities: parent: 30 - proto: HydroponicsToolSpade entities: - - uid: 435 + - uid: 697 components: - type: Transform - pos: -25.499067,11.52943 + pos: -45.386658,69.59978 parent: 30 - - uid: 697 + - uid: 18858 components: - type: Transform - pos: -45.386658,69.59978 + pos: -28.478325,11.558405 parent: 30 - uid: 19542 components: @@ -96145,105 +94876,100 @@ entities: - type: Transform pos: -21.5,12.5 parent: 30 - - uid: 331 - components: - - type: Transform - pos: -25.5,5.5 - parent: 30 - - uid: 332 + - uid: 341 components: - type: Transform - pos: -26.5,5.5 + pos: -27.5,13.5 parent: 30 - - uid: 333 + - uid: 342 components: - type: Transform - pos: -27.5,5.5 + pos: -26.5,13.5 parent: 30 - - uid: 334 + - uid: 2339 components: - type: Transform - pos: -28.5,5.5 + pos: -50.5,69.5 parent: 30 - - uid: 335 + - uid: 2340 components: - type: Transform - pos: -28.5,7.5 + pos: -50.5,68.5 parent: 30 - - uid: 336 + - uid: 2341 components: - type: Transform - pos: -28.5,8.5 + pos: -48.5,69.5 parent: 30 - - uid: 337 + - uid: 2342 components: - type: Transform - pos: -28.5,9.5 + pos: -48.5,68.5 parent: 30 - - uid: 338 + - uid: 2343 components: - type: Transform - pos: -28.5,10.5 + pos: -46.5,68.5 parent: 30 - - uid: 339 + - uid: 2344 components: - type: Transform - pos: -28.5,11.5 + pos: -46.5,69.5 parent: 30 - - uid: 340 + - uid: 10428 components: - type: Transform - pos: -28.5,13.5 + pos: -49.5,69.5 parent: 30 - - uid: 341 + - uid: 11649 components: - type: Transform - pos: -27.5,13.5 + pos: -47.5,69.5 parent: 30 - - uid: 342 + - uid: 16138 components: - type: Transform - pos: -26.5,13.5 + pos: -28.5,12.5 parent: 30 - - uid: 2339 + - uid: 16139 components: - type: Transform - pos: -50.5,69.5 + pos: -27.5,11.5 parent: 30 - - uid: 2340 + - uid: 16163 components: - type: Transform - pos: -50.5,68.5 + pos: -26.5,11.5 parent: 30 - - uid: 2341 + - uid: 16165 components: - type: Transform - pos: -48.5,69.5 + pos: -28.5,10.5 parent: 30 - - uid: 2342 + - uid: 16172 components: - type: Transform - pos: -48.5,68.5 + pos: -27.5,9.5 parent: 30 - - uid: 2343 + - uid: 16242 components: - type: Transform - pos: -46.5,68.5 + pos: -26.5,9.5 parent: 30 - - uid: 2344 + - uid: 18174 components: - type: Transform - pos: -46.5,69.5 + pos: -26.5,7.5 parent: 30 - - uid: 10428 + - uid: 18184 components: - type: Transform - pos: -49.5,69.5 + pos: -27.5,7.5 parent: 30 - - uid: 11649 + - uid: 18856 components: - type: Transform - pos: -47.5,69.5 + pos: -28.5,8.5 parent: 30 - proto: InflatableDoorStack entities: @@ -96390,23 +95116,12 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-33.5 parent: 30 - - uid: 22291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 30 - uid: 22514 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,82.5 parent: 30 - - uid: 22657 - components: - - type: Transform - pos: -29.5,-56.5 - parent: 30 - proto: IntercomMedical entities: - uid: 7346 @@ -96428,11 +95143,11 @@ entities: parent: 30 - proto: IntercomScience entities: - - uid: 22287 + - uid: 14357 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,14.5 + pos: 16.5,17.5 parent: 30 - uid: 22288 components: @@ -97920,12 +96635,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-7.5 parent: 30 - - uid: 961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,16.5 - parent: 30 - uid: 1753 components: - type: Transform @@ -97937,17 +96646,18 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-0.5 parent: 30 -- proto: JetpackBlueFilled - entities: - - uid: 8311 + - uid: 16403 components: - type: Transform - pos: -20.563852,-46.460617 + rot: 3.141592653589793 rad + pos: 13.5,14.5 parent: 30 - - uid: 21590 +- proto: JetpackBlueFilled + entities: + - uid: 5722 components: - type: Transform - pos: -17.545162,-28.366238 + pos: -10.241633,-47.32097 parent: 30 - proto: JetpackMini entities: @@ -97973,6 +96683,13 @@ entities: - type: Transform pos: -39.62777,56.71206 parent: 30 +- proto: KitchenElectricGrill + entities: + - uid: 18855 + components: + - type: Transform + pos: -14.5,7.5 + parent: 30 - proto: KitchenMicrowave entities: - uid: 483 @@ -98188,15 +96905,15 @@ entities: - type: Transform pos: -57.474648,-39.373875 parent: 30 - - uid: 19504 + - uid: 18354 components: - type: Transform - pos: -77.46411,-65.291664 + pos: -62.42038,-64.31795 parent: 30 - - uid: 19505 + - uid: 19504 components: - type: Transform - pos: -60.62825,-65.170204 + pos: -77.46411,-65.291664 parent: 30 - uid: 21649 components: @@ -98217,11 +96934,6 @@ entities: - type: Transform pos: -51.439194,-51.2885 parent: 30 - - uid: 19431 - components: - - type: Transform - pos: -57.92594,-62.49692 - parent: 30 - uid: 21670 components: - type: Transform @@ -98500,40 +97212,11 @@ entities: - 0 - proto: LockerChiefEngineerFilled entities: - - uid: 9604 + - uid: 11058 components: - type: Transform - pos: -19.5,-34.5 + pos: -5.5,-36.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 9329 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerChiefMedicalOfficerFilledHardsuit entities: - uid: 6941 @@ -98568,33 +97251,15 @@ entities: - 0 - proto: LockerElectricalSuppliesFilled entities: - - uid: 16994 + - uid: 11061 components: - type: Transform - pos: -59.5,37.5 + pos: -4.5,-45.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 16995 + - uid: 16994 components: - type: Transform - pos: -5.5,-36.5 + pos: -59.5,37.5 parent: 30 - type: EntityStorage air: @@ -98616,47 +97281,42 @@ entities: - 0 - proto: LockerEngineerFilled entities: - - uid: 9048 - components: - - type: Transform - pos: 3.5,-42.5 - parent: 30 - - uid: 9435 + - uid: 10760 components: - type: Transform - pos: 3.5,-41.5 + pos: -22.5,-50.5 parent: 30 -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 8835 + - uid: 10762 components: - type: Transform - pos: -25.5,-43.5 + pos: -23.5,-50.5 parent: 30 - - uid: 8836 + - uid: 15013 components: - type: Transform - pos: -25.5,-42.5 + pos: -25.5,-48.5 parent: 30 - - uid: 8837 + - uid: 16038 components: - type: Transform - pos: -25.5,-44.5 + pos: -25.5,-49.5 parent: 30 - - uid: 9700 + - uid: 19408 components: - type: Transform - pos: -21.5,-39.5 + pos: -21.5,-50.5 parent: 30 - - uid: 9701 +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 10763 components: - type: Transform - pos: -22.5,-39.5 + pos: 3.5,-40.5 parent: 30 - - uid: 20804 + - uid: 10766 components: - type: Transform - pos: -15.5,-38.5 + pos: 3.5,-39.5 parent: 30 - proto: LockerEvidence entities: @@ -99548,33 +98208,15 @@ entities: - type: Transform pos: -42.5,-23.5 parent: 30 - - uid: 15047 + - uid: 10587 components: - type: Transform - pos: 18.5,31.5 + pos: -4.5,-43.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 16996 + - uid: 15047 components: - type: Transform - pos: -9.5,-36.5 + pos: 18.5,31.5 parent: 30 - type: EntityStorage air: @@ -99648,48 +98290,6 @@ entities: - type: Transform pos: -6.5,-12.5 parent: 30 -- proto: MachineParticleAcceleratorEmitterForeCircuitboard - entities: - - uid: 10198 - components: - - type: Transform - pos: -20.589485,-68.29703 - parent: 30 -- proto: MachineParticleAcceleratorEmitterPortCircuitboard - entities: - - uid: 10199 - components: - - type: Transform - pos: -20.433235,-68.45328 - parent: 30 -- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard - entities: - - uid: 10203 - components: - - type: Transform - pos: -20.29261,-68.60953 - parent: 30 -- proto: MachineParticleAcceleratorEndCapCircuitboard - entities: - - uid: 10204 - components: - - type: Transform - pos: -20.620735,-69.29703 - parent: 30 -- proto: MachineParticleAcceleratorFuelChamberCircuitboard - entities: - - uid: 10200 - components: - - type: Transform - pos: -20.495735,-69.42203 - parent: 30 -- proto: MachineParticleAcceleratorPowerBoxCircuitboard - entities: - - uid: 10201 - components: - - type: Transform - pos: -20.370735,-69.56265 - parent: 30 - proto: MagazinePistolSubMachineGunTopMounted entities: - uid: 1999 @@ -99791,6 +98391,11 @@ entities: parent: 30 - proto: MaintenancePlantSpawner entities: + - uid: 10188 + components: + - type: Transform + pos: -54.5,-64.5 + parent: 30 - uid: 20805 components: - type: Transform @@ -99806,11 +98411,6 @@ entities: - type: Transform pos: 2.5,-13.5 parent: 30 - - uid: 20808 - components: - - type: Transform - pos: -63.5,-64.5 - parent: 30 - proto: MaintenanceToolSpawner entities: - uid: 9197 @@ -100471,10 +99071,15 @@ entities: - type: Transform pos: -7.520787,46.572483 parent: 30 - - uid: 10008 + - uid: 9396 components: - type: Transform - pos: -13.775943,-44.693085 + pos: -2.6778464,-45.34802 + parent: 30 + - uid: 9502 + components: + - type: Transform + pos: -11.53326,-33.503338 parent: 30 - uid: 11733 components: @@ -100486,11 +99091,6 @@ entities: - type: Transform pos: -52.471344,41.489742 parent: 30 - - uid: 22843 - components: - - type: Transform - pos: -31.465784,-57.403034 - parent: 30 - proto: MysteryFigureBox entities: - uid: 20788 @@ -100505,11 +99105,6 @@ entities: - type: Transform pos: -19.5,23.5 parent: 30 - - uid: 7770 - components: - - type: Transform - pos: -11.5,-37.5 - parent: 30 - uid: 8771 components: - type: Transform @@ -100520,10 +99115,15 @@ entities: - type: Transform pos: 21.5,-19.5 parent: 30 - - uid: 10397 + - uid: 10560 components: - type: Transform - pos: -14.5,-46.5 + pos: -5.5,-48.5 + parent: 30 + - uid: 11113 + components: + - type: Transform + pos: -11.5,-37.5 parent: 30 - uid: 15154 components: @@ -100552,15 +99152,10 @@ entities: parent: 30 - proto: NitrogenTankFilled entities: - - uid: 8247 - components: - - type: Transform - pos: -10.592361,-38.446224 - parent: 30 - - uid: 8266 + - uid: 7230 components: - type: Transform - pos: -10.592361,-38.446224 + pos: -9.3813,-38.5809 parent: 30 - proto: NitrousOxideCanister entities: @@ -100632,13 +99227,6 @@ entities: - Uranium - Gold - Silver -- proto: OrganHumanAppendix - entities: - - uid: 2088 - components: - - type: Transform - pos: -51.46508,-63.54434 - parent: 30 - proto: OxygenCanister entities: - uid: 778 @@ -100696,25 +99284,25 @@ entities: - type: Transform pos: 21.5,-13.5 parent: 30 - - uid: 9427 + - uid: 9676 components: - type: Transform - pos: -13.5,-37.5 + pos: -5.5,-47.5 parent: 30 - uid: 9845 components: - type: Transform pos: -38.5,-10.5 parent: 30 - - uid: 10444 + - uid: 11112 components: - type: Transform - pos: -14.5,-48.5 + pos: -13.5,-37.5 parent: 30 - - uid: 11266 + - uid: 13968 components: - type: Transform - pos: -18.5,-50.5 + pos: -16.5,-50.5 parent: 30 - uid: 15155 components: @@ -100748,25 +99336,20 @@ entities: parent: 30 - proto: OxygenTankFilled entities: - - uid: 8226 - components: - - type: Transform - pos: -10.326736,-38.446224 - parent: 30 - - uid: 8260 + - uid: 7228 components: - type: Transform - pos: -10.326736,-38.446224 + pos: -9.625428,-38.389084 parent: 30 - - uid: 10012 + - uid: 9061 components: - type: Transform - pos: -1.4952288,-44.42826 + pos: 4.148211,-46.341225 parent: 30 - - uid: 11333 + - uid: 9659 components: - type: Transform - pos: -1.4344845,-44.759243 + pos: 4.462089,-46.463287 parent: 30 - uid: 19791 components: @@ -101033,26 +99616,6 @@ entities: - type: Transform pos: -82.50391,-46.268623 parent: 30 - - uid: 19426 - components: - - type: Transform - pos: -60.607536,-67.34395 - parent: 30 - - uid: 19427 - components: - - type: Transform - pos: -60.545036,-67.39082 - parent: 30 - - uid: 19428 - components: - - type: Transform - pos: -60.420036,-67.48457 - parent: 30 - - uid: 19429 - components: - - type: Transform - pos: -60.34191,-67.51582 - parent: 30 - uid: 19499 components: - type: Transform @@ -101117,69 +99680,76 @@ entities: - type: Transform pos: 12.5,58.5 parent: 30 -- proto: ParticleAcceleratorComputerCircuitboard +- proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 11445 + - uid: 10674 components: - type: Transform - pos: -21.580353,-68.38637 + pos: -18.5,-53.5 parent: 30 -- proto: PartRodMetal +- proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 9247 + - uid: 8247 components: - type: Transform - pos: 13.637659,-25.423977 + pos: -17.5,-55.5 parent: 30 - - uid: 9420 +- proto: ParticleAcceleratorEmitterPortUnfinished + entities: + - uid: 6659 components: - type: Transform - pos: -22.434696,-47.53157 + pos: -16.5,-55.5 parent: 30 - - uid: 10193 +- proto: ParticleAcceleratorEmitterStarboardUnfinished + entities: + - uid: 10682 components: - type: Transform - pos: -14.444823,-68.47732 + pos: -18.5,-55.5 parent: 30 - - uid: 10196 +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 11159 components: - type: Transform - pos: -14.444823,-68.47732 + pos: -17.5,-52.5 parent: 30 - - uid: 10197 +- proto: ParticleAcceleratorFuelChamberUnfinished + entities: + - uid: 10650 components: - type: Transform - pos: -14.444823,-68.47732 + pos: -17.5,-53.5 parent: 30 - - uid: 10312 +- proto: ParticleAcceleratorPowerBoxUnfinished + entities: + - uid: 11310 components: - type: Transform - pos: -38.461082,27.525124 + pos: -17.5,-54.5 parent: 30 - - uid: 10313 +- proto: PartRodMetal + entities: + - uid: 9247 components: - type: Transform - pos: -38.461082,27.525124 + pos: 13.637659,-25.423977 parent: 30 - - uid: 10320 + - uid: 10312 components: - type: Transform pos: -38.461082,27.525124 parent: 30 - - uid: 11283 - components: - - type: Transform - pos: 0.5099411,-44.458656 - parent: 30 - - uid: 11284 + - uid: 10313 components: - type: Transform - pos: 0.5099411,-44.458656 + pos: -38.461082,27.525124 parent: 30 - - uid: 18789 + - uid: 10320 components: - type: Transform - pos: -62.4926,-63.50162 + pos: -38.461082,27.525124 parent: 30 - proto: PartRodMetal1 entities: @@ -101281,11 +99851,6 @@ entities: - type: Transform pos: 14.729029,-15.188093 parent: 30 - - uid: 9617 - components: - - type: Transform - pos: -17.887093,-35.280422 - parent: 30 - uid: 9624 components: - type: Transform @@ -101301,28 +99866,25 @@ entities: - type: Transform pos: 25.341276,2.226799 parent: 30 - - uid: 17651 + - uid: 16951 components: - type: Transform - pos: -82.31641,-46.003 + pos: -62.22052,-64.60359 parent: 30 - - uid: 19425 + - uid: 16966 components: - type: Transform - pos: -60.52941,-65.45332 + pos: -65.47299,-63.534283 parent: 30 - - uid: 19563 + - uid: 17651 components: - type: Transform - pos: -72.2945,-65.28793 + pos: -82.31641,-46.003 parent: 30 -- proto: PercentileDie - entities: - - uid: 19473 + - uid: 19563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.4998,-65.351234 + pos: -72.2945,-65.28793 parent: 30 - proto: PersonalAI entities: @@ -101341,10 +99903,10 @@ entities: - type: Transform pos: 23.590357,36.58234 parent: 30 - - uid: 19523 + - uid: 17527 components: - type: Transform - pos: -54.530502,-64.54973 + pos: -67.27615,-65.55618 parent: 30 - uid: 20308 components: @@ -101363,6 +99925,11 @@ entities: - type: Transform pos: -17.480167,35.60341 parent: 30 + - uid: 11129 + components: + - type: Transform + pos: -17.39583,-32.28552 + parent: 30 - proto: PianoInstrument entities: - uid: 555 @@ -101454,33 +100021,23 @@ entities: - type: Transform pos: 18.5,-14.5 parent: 30 - - uid: 9696 + - uid: 9656 components: - type: Transform - pos: 18.5,-13.5 + pos: -5.5,-49.5 parent: 30 - - uid: 10510 + - uid: 9696 components: - type: Transform - pos: -14.5,-51.5 + pos: 18.5,-13.5 parent: 30 - uid: 17005 components: - type: Transform pos: 27.5,-30.5 parent: 30 - - uid: 20465 - components: - - type: Transform - pos: -25.5,-48.5 - parent: 30 - proto: PlasticFlapsAirtightClear entities: - - uid: 1952 - components: - - type: Transform - pos: 48.5,24.5 - parent: 30 - uid: 11228 components: - type: Transform @@ -101526,6 +100083,11 @@ entities: - type: Transform pos: 39.5,12.5 parent: 30 + - uid: 17886 + components: + - type: Transform + pos: 48.5,25.5 + parent: 30 - proto: PlushieCarp entities: - uid: 17654 @@ -101568,10 +100130,10 @@ entities: parent: 30 - proto: PlushieSharkPink entities: - - uid: 22194 + - uid: 17526 components: - type: Transform - pos: -54.4992,-66.45244 + pos: -58.458496,-65.4756 parent: 30 - uid: 22217 components: @@ -101618,25 +100180,25 @@ entities: parent: 30 - proto: PortableGeneratorJrPacman entities: - - uid: 17594 + - uid: 11157 components: - type: Transform - pos: 23.5,4.5 + pos: -7.5,-48.5 parent: 30 - - uid: 19442 + - uid: 14479 components: - type: Transform - pos: -23.5,-28.5 + pos: -54.5,-62.5 parent: 30 - - uid: 19474 + - uid: 17594 components: - type: Transform - pos: -15.5,-32.5 + pos: 23.5,4.5 parent: 30 - - uid: 19475 + - uid: 19442 components: - type: Transform - pos: -65.5,-63.5 + pos: -23.5,-28.5 parent: 30 - uid: 19476 components: @@ -101665,17 +100227,17 @@ entities: parent: 30 - proto: PortableGeneratorPacman entities: - - uid: 9408 + - uid: 10787 components: - type: Transform - pos: -25.5,-46.5 + pos: -19.5,-36.5 parent: 30 - proto: PortableGeneratorSuperPacman entities: - - uid: 9389 + - uid: 19415 components: - type: Transform - pos: -25.5,-47.5 + pos: -19.5,-37.5 parent: 30 - uid: 21948 components: @@ -101709,11 +100271,6 @@ entities: - type: Transform pos: 40.5,14.5 parent: 30 - - uid: 22802 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 30 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - uid: 9181 @@ -101775,13 +100332,6 @@ entities: - type: Transform pos: -28.5,34.5 parent: 30 -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 8360 - components: - - type: Transform - pos: -10.5,-37.5 - parent: 30 - proto: PosterContrabandInterdyne entities: - uid: 12243 @@ -101893,13 +100443,6 @@ entities: - type: Transform pos: -17.5,-13.5 parent: 30 -- proto: PosterLegitBuild - entities: - - uid: 10142 - components: - - type: Transform - pos: -18.5,-33.5 - parent: 30 - proto: PosterLegitCarpMount entities: - uid: 14968 @@ -102131,10 +100674,11 @@ entities: - type: Transform pos: -22.5,-38.5 parent: 30 - - uid: 22543 + - uid: 18185 components: - type: Transform - pos: 19.5,16.5 + rot: 3.141592653589793 rad + pos: 20.5,9.5 parent: 30 - proto: PosterLegitSafetyInternals entities: @@ -102148,17 +100692,11 @@ entities: - type: Transform pos: 3.5,-35.5 parent: 30 - - uid: 22544 - components: - - type: Transform - pos: 19.5,14.5 - parent: 30 -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 10087 + - uid: 19795 components: - type: Transform - pos: -20.5,-39.5 + rot: -1.5707963267948966 rad + pos: 13.5,13.5 parent: 30 - proto: PosterLegitSafetyMothEpi entities: @@ -102194,11 +100732,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 30 - - uid: 10088 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 30 - proto: PosterLegitSafetyReport entities: - uid: 2412 @@ -102211,6 +100744,13 @@ entities: - type: Transform pos: 6.5,-14.5 parent: 30 +- proto: PosterLegitSecWatch + entities: + - uid: 20637 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 30 - proto: PosterLegitSpaceCops entities: - uid: 2411 @@ -102388,11 +100928,6 @@ entities: - type: Transform pos: 14.5,-13.5 parent: 30 - - uid: 12668 - components: - - type: Transform - pos: 20.5,16.5 - parent: 30 - uid: 12764 components: - type: Transform @@ -102403,15 +100938,20 @@ entities: - type: Transform pos: 33.5,9.5 parent: 30 - - uid: 12925 + - uid: 13376 components: - type: Transform - pos: 12.5,10.5 + pos: 12.5,18.5 parent: 30 - - uid: 13376 + - uid: 16402 components: - type: Transform - pos: 12.5,18.5 + pos: 16.5,12.5 + parent: 30 + - uid: 18609 + components: + - type: Transform + pos: 23.5,16.5 parent: 30 - uid: 20139 components: @@ -102597,6 +101137,16 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 7103 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 30 + - uid: 7110 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 30 - uid: 8613 components: - type: Transform @@ -102613,6 +101163,36 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 10653 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 30 + - uid: 11068 + components: + - type: Transform + pos: -21.5,-49.5 + parent: 30 + - uid: 11080 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 30 + - uid: 11145 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 30 + - uid: 11146 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 30 + - uid: 13971 + components: + - type: Transform + pos: -19.5,-44.5 + parent: 30 - uid: 16045 components: - type: Transform @@ -102645,6 +101225,11 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 16798 + components: + - type: Transform + pos: -63.5,-65.5 + parent: 30 - uid: 16920 components: - type: Transform @@ -102733,38 +101318,16 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 17910 - components: - - type: Transform - pos: -55.5,-60.5 - parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 17911 - components: - - type: Transform - pos: -68.5,-60.5 - parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 19415 + - uid: 18880 components: - type: Transform - pos: -57.5,-62.5 + pos: -19.5,-39.5 parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 19416 + - uid: 18991 components: - type: Transform - pos: -60.5,-62.5 + pos: -25.5,-39.5 parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 19527 components: - type: Transform @@ -102813,21 +101376,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} -- proto: PottedPlantRandomPlastic - entities: - - uid: 9615 - components: - - type: Transform - pos: -16.5,-38.5 - parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 22844 - components: - - type: Transform - pos: -30.5,-57.5 - parent: 30 - proto: PottedPlantRD entities: - uid: 12726 @@ -102889,66 +101437,55 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-27.5 parent: 30 + - uid: 10005 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 30 - uid: 10311 components: - type: Transform pos: -41.5,27.5 parent: 30 - - uid: 12106 + - uid: 10661 components: - type: Transform - pos: 20.5,-11.5 + pos: -25.5,-42.5 parent: 30 - - uid: 12733 + - uid: 10795 components: - type: Transform - pos: 25.5,21.5 + pos: 2.5,-41.5 parent: 30 - - uid: 12827 + - uid: 12106 components: - type: Transform - pos: 24.5,10.5 + pos: 20.5,-11.5 parent: 30 - - uid: 12837 + - uid: 12733 components: - type: Transform - pos: 15.5,12.5 + pos: 25.5,21.5 parent: 30 - - uid: 13643 + - uid: 12827 components: - type: Transform - pos: -15.5,-43.5 + pos: 24.5,10.5 parent: 30 - uid: 13645 components: - type: Transform pos: 16.5,23.5 parent: 30 - - uid: 20992 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 30 - - type: Physics - canCollide: False - - uid: 20993 - components: - - type: Transform - pos: -18.5,-35.5 - parent: 30 - - type: Physics - canCollide: False - - uid: 20995 + - uid: 18125 components: - type: Transform - pos: -11.5,-35.5 + pos: 16.5,14.5 parent: 30 - - type: Physics - canCollide: False - - uid: 20996 + - uid: 20992 components: - type: Transform - pos: 1.5,-44.5 + pos: 16.5,-0.5 parent: 30 - type: Physics canCollide: False @@ -103023,6 +101560,18 @@ entities: rot: 3.141592653589793 rad pos: -58.5,-9.5 parent: 30 + - uid: 906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-52.5 + parent: 30 + - uid: 916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-43.5 + parent: 30 - uid: 3203 components: - type: Transform @@ -104093,12 +102642,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-11.5 parent: 30 - - uid: 9103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-47.5 - parent: 30 - uid: 9250 components: - type: Transform @@ -104115,73 +102658,77 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9433 + - uid: 9700 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-55.5 + pos: -10.5,-31.5 parent: 30 - - uid: 9447 + - uid: 9800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-12.5 + parent: 30 + - uid: 9862 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-42.5 + pos: -2.5,-46.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9619 + - uid: 9868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-51.5 + rot: 1.5707963267948966 rad + pos: -5.5,-56.5 parent: 30 - - uid: 9705 + - uid: 10072 + components: + - type: Transform + pos: -56.5,10.5 + parent: 30 + - uid: 10585 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-55.5 + pos: -11.5,-34.5 parent: 30 - - uid: 9800 + - uid: 10591 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-12.5 + pos: -15.5,-53.5 parent: 30 - - uid: 9979 + - uid: 10622 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-47.5 + pos: -19.5,-50.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10072 + - uid: 10637 components: - type: Transform - pos: -56.5,10.5 + rot: 1.5707963267948966 rad + pos: -19.5,-46.5 parent: 30 - - uid: 10092 + - uid: 10798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-55.5 + rot: -1.5707963267948966 rad + pos: 4.5,-56.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10095 + - uid: 10799 components: - type: Transform - pos: -12.5,-43.5 + rot: -1.5707963267948966 rad + pos: 4.5,-46.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10096 + - uid: 10800 components: - type: Transform - pos: -2.5,-43.5 + rot: 1.5707963267948966 rad + pos: -5.5,-52.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10966 components: - type: Transform @@ -104384,77 +102931,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11003 - components: - - type: Transform - pos: -22.5,-39.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-46.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-50.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11013 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-44.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-41.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-41.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-42.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-43.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-39.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11027 components: - type: Transform @@ -104463,52 +102939,35 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-34.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11031 + - uid: 11037 components: - type: Transform - pos: -6.5,-27.5 + rot: 1.5707963267948966 rad + pos: -3.5,-35.5 parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11033 + - uid: 11077 components: - type: Transform - pos: -13.5,-27.5 + rot: 3.141592653589793 rad + pos: -6.5,-45.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11034 + - uid: 11079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-34.5 + pos: -20.5,-39.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11036 + - uid: 11083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-31.5 + pos: -4.5,-38.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11037 + - uid: 11095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-35.5 + pos: -10.5,-38.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11225 components: - type: Transform @@ -104555,38 +103014,24 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-38.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11348 + - uid: 11427 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-38.5 + pos: -3.5,-23.5 parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11349 + - uid: 11444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-38.5 + pos: -8.5,-27.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11427 + - uid: 11445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-23.5 + pos: -17.5,-29.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11469 components: - type: Transform @@ -104608,6 +103053,17 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 11588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-39.5 + parent: 30 + - uid: 11614 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 30 - uid: 11769 components: - type: Transform @@ -104821,13 +103277,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12654 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12763 components: - type: Transform @@ -104843,13 +103292,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 13077 - components: - - type: Transform - pos: 12.5,12.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 13363 components: - type: Transform @@ -104865,14 +103307,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 13365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 13366 components: - type: Transform @@ -104971,6 +103405,12 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 13974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-48.5 + parent: 30 - uid: 14842 components: - type: Transform @@ -105058,6 +103498,48 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 18079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 30 + - uid: 18762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,14.5 + parent: 30 + - uid: 18787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-64.5 + parent: 30 + - uid: 18796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-65.5 + parent: 30 + - uid: 18879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-44.5 + parent: 30 + - uid: 19234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-47.5 + parent: 30 + - uid: 19420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-49.5 + parent: 30 - uid: 19573 components: - type: Transform @@ -105206,29 +103688,29 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22852 +- proto: PoweredlightExterior + entities: + - uid: 833 components: - type: Transform - pos: -36.5,-57.5 + rot: 1.5707963267948966 rad + pos: 6.5,-52.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22853 + - uid: 10166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-60.5 + pos: -22.5,-58.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22854 + - uid: 10801 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-63.5 + pos: 7.5,-46.5 + parent: 30 + - uid: 11147 + components: + - type: Transform + pos: -12.5,-58.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - proto: PoweredlightLED entities: - uid: 10291 @@ -105360,12 +103842,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,15.5 parent: 30 - - uid: 3196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-59.5 - parent: 30 - uid: 3201 components: - type: Transform @@ -105378,6 +103854,17 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,5.5 parent: 30 + - uid: 4126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-61.5 + parent: 30 + - uid: 4127 + components: + - type: Transform + pos: -54.5,-62.5 + parent: 30 - uid: 4237 components: - type: Transform @@ -105711,12 +104198,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-11.5 parent: 30 - - uid: 7912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-64.5 - parent: 30 - uid: 8313 components: - type: Transform @@ -105724,17 +104205,11 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-58.5 - parent: 30 - - uid: 9060 + - uid: 9161 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-59.5 + pos: 12.5,11.5 parent: 30 - uid: 9225 components: @@ -105744,11 +104219,15 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9634 + - uid: 9998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-59.5 + pos: 16.5,-18.5 + parent: 30 + - uid: 10045 + components: + - type: Transform + pos: -17.5,-34.5 parent: 30 - uid: 10046 components: @@ -105756,6 +104235,11 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,42.5 parent: 30 + - uid: 10170 + components: + - type: Transform + pos: -23.5,-55.5 + parent: 30 - uid: 10252 components: - type: Transform @@ -105768,49 +104252,23 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,15.5 parent: 30 - - uid: 10997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-25.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11005 - components: - - type: Transform - pos: -22.5,-46.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11007 + - uid: 10598 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-50.5 + pos: -10.5,-56.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11014 + - uid: 10797 components: - type: Transform - pos: -18.5,-34.5 + rot: 3.141592653589793 rad + pos: -0.5,-56.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11015 + - uid: 10997 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-30.5 + pos: 7.5,-25.5 parent: 30 - type: ApcPowerReceiver powerLoad: 0 @@ -105864,6 +104322,18 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 12822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-22.5 + parent: 30 + - uid: 12925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-24.5 + parent: 30 - uid: 15014 components: - type: Transform @@ -105924,13 +104394,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 15349 - components: - - type: Transform - pos: 50.5,24.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 15350 components: - type: Transform @@ -106082,6 +104545,12 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 16131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-59.5 + parent: 30 - uid: 16168 components: - type: Transform @@ -106277,6 +104746,46 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 17730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-57.5 + parent: 30 + - uid: 17789 + components: + - type: Transform + pos: -70.5,-58.5 + parent: 30 + - uid: 18210 + components: + - type: Transform + pos: -36.5,-39.5 + parent: 30 + - uid: 18359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-60.5 + parent: 30 + - uid: 18375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,22.5 + parent: 30 + - uid: 18793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-63.5 + parent: 30 + - uid: 18794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-65.5 + parent: 30 - uid: 18821 components: - type: Transform @@ -106467,49 +104976,8 @@ entities: - uid: 18854 components: - type: Transform - pos: -63.5,-62.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18855 - components: - - type: Transform - pos: -66.5,-62.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-66.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-67.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-63.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-59.5 + pos: -69.5,-62.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 19579 components: - type: Transform @@ -106663,6 +105131,11 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 20665 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 30 - uid: 21112 components: - type: Transform @@ -106686,60 +105159,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22845 - components: - - type: Transform - pos: -30.5,-57.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-63.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-59.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-59.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-63.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22850 - components: - - type: Transform - pos: -22.5,-57.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-59.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - proto: PoweredSmallLightEmpty entities: - uid: 15072 @@ -106808,11 +105227,6 @@ entities: - type: Transform pos: -3.5,22.5 parent: 30 - - uid: 905 - components: - - type: Transform - pos: -17.5,-32.5 - parent: 30 - uid: 1340 components: - type: Transform @@ -106843,11 +105257,6 @@ entities: - type: Transform pos: -37.5,55.5 parent: 30 - - uid: 5615 - components: - - type: Transform - pos: -13.5,-35.5 - parent: 30 - uid: 6276 components: - type: Transform @@ -106868,15 +105277,15 @@ entities: - type: Transform pos: -38.5,-22.5 parent: 30 - - uid: 8263 + - uid: 7227 components: - type: Transform - pos: -10.5,-38.5 + pos: -9.5,-38.5 parent: 30 - - uid: 8335 + - uid: 8456 components: - type: Transform - pos: -4.5,-38.5 + pos: -5.5,-38.5 parent: 30 - uid: 9196 components: @@ -106898,70 +105307,67 @@ entities: - type: Transform pos: 9.5,-22.5 parent: 30 - - uid: 9417 - components: - - type: Transform - pos: -22.5,-47.5 - parent: 30 - uid: 9439 components: - type: Transform pos: 5.5,-23.5 parent: 30 - - uid: 10194 + - uid: 10126 components: - type: Transform - pos: -14.5,-68.5 + pos: -8.5,-43.5 parent: 30 - - uid: 10202 + - uid: 11086 components: - type: Transform - pos: -20.5,-68.5 + pos: -9.5,-41.5 parent: 30 - - uid: 10215 + - uid: 11255 components: - type: Transform - pos: -20.5,-69.5 + pos: -3.5,-35.5 parent: 30 - - uid: 11255 + - uid: 11421 components: - type: Transform - pos: -3.5,-35.5 + pos: 1.5,-15.5 parent: 30 - - uid: 11265 + - uid: 11737 components: - type: Transform - pos: -16.5,-50.5 + pos: 21.5,0.5 parent: 30 - - uid: 11300 + - uid: 11748 components: - type: Transform - pos: -18.5,-48.5 + pos: 23.5,-11.5 parent: 30 - - uid: 11421 + - uid: 12234 components: - type: Transform - pos: 1.5,-15.5 + pos: 17.5,-9.5 parent: 30 - - uid: 11444 + - uid: 12821 components: - type: Transform - pos: -21.5,-68.5 + pos: -52.5,-62.5 parent: 30 - - uid: 11737 + - uid: 13953 components: - type: Transform - pos: 21.5,0.5 + pos: -11.5,-33.5 parent: 30 - - uid: 11748 + - uid: 13967 components: - type: Transform - pos: 23.5,-11.5 + rot: -1.5707963267948966 rad + pos: 9.5,-26.5 parent: 30 - - uid: 12234 + - uid: 13969 components: - type: Transform - pos: 17.5,-9.5 + rot: 1.5707963267948966 rad + pos: -19.5,-50.5 parent: 30 - uid: 15019 components: @@ -107053,6 +105459,12 @@ entities: - type: Transform pos: -53.5,48.5 parent: 30 + - uid: 19413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-37.5 + parent: 30 - uid: 19616 components: - type: Transform @@ -107113,23 +105525,49 @@ entities: - type: Transform pos: 4.5,20.5 parent: 30 - - uid: 22836 +- proto: RadiationCollectorFullTank + entities: + - uid: 9419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-57.5 + pos: -15.5,-60.5 + parent: 30 + - uid: 10677 + components: + - type: Transform + pos: -14.5,-60.5 + parent: 30 + - uid: 11087 + components: + - type: Transform + pos: -19.5,-60.5 + parent: 30 + - uid: 11104 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 30 + - uid: 11108 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 30 + - uid: 19830 + components: + - type: Transform + pos: -20.5,-60.5 parent: 30 - proto: RadioHandheld entities: - - uid: 11289 + - uid: 11081 components: - type: Transform - pos: -19.595512,-44.335434 + pos: -21.680277,-41.431904 parent: 30 - - uid: 11290 + - uid: 19817 components: - type: Transform - pos: -19.361137,-44.44481 + pos: -21.453587,-41.32728 parent: 30 - proto: Railing entities: @@ -107167,6 +105605,30 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-7.5 parent: 30 + - uid: 13990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,6.5 + parent: 30 + - uid: 14043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,6.5 + parent: 30 + - uid: 14457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,6.5 + parent: 30 + - uid: 18844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,4.5 + parent: 30 - uid: 21323 components: - type: Transform @@ -107189,8 +105651,34 @@ entities: - type: Transform pos: 6.5,-10.5 parent: 30 +- proto: RailingCorner + entities: + - uid: 13389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,5.5 + parent: 30 + - uid: 13751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 30 - proto: RailingCornerSmall entities: + - uid: 14433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 30 + - uid: 18842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,4.5 + parent: 30 - uid: 21325 components: - type: Transform @@ -107231,11 +105719,6 @@ entities: - type: Transform pos: -5.5,23.5 parent: 30 - - uid: 22547 - components: - - type: Transform - pos: 41.5,13.5 - parent: 30 - proto: RandomBoard entities: - uid: 5616 @@ -107260,6 +105743,11 @@ entities: parent: 30 - proto: RandomFoodMeal entities: + - uid: 338 + components: + - type: Transform + pos: 18.5,10.5 + parent: 30 - uid: 5003 components: - type: Transform @@ -107289,6 +105777,11 @@ entities: - type: Transform pos: -32.5,23.5 parent: 30 + - uid: 3341 + components: + - type: Transform + pos: -55.5,-67.5 + parent: 30 - uid: 12463 components: - type: Transform @@ -107299,11 +105792,6 @@ entities: - type: Transform pos: -61.5,29.5 parent: 30 - - uid: 18375 - components: - - type: Transform - pos: -63.5,-67.5 - parent: 30 - proto: RandomPainting entities: - uid: 19149 @@ -107343,6 +105831,11 @@ entities: - type: Transform pos: -20.5,-32.5 parent: 30 + - uid: 20623 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 30 - proto: RandomPosterContraband entities: - uid: 2421 @@ -107552,6 +106045,21 @@ entities: - type: Transform pos: 47.5,41.5 parent: 30 + - uid: 20636 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 30 + - uid: 20638 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 30 + - uid: 20639 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 30 - uid: 22088 components: - type: Transform @@ -107603,6 +106111,11 @@ entities: - type: Transform pos: 39.5,19.5 parent: 30 + - uid: 14366 + components: + - type: Transform + pos: 53.5,22.5 + parent: 30 - uid: 15160 components: - type: Transform @@ -107798,16 +106311,6 @@ entities: - type: Transform pos: 45.5,31.5 parent: 30 - - uid: 15990 - components: - - type: Transform - pos: 53.5,24.5 - parent: 30 - - uid: 15991 - components: - - type: Transform - pos: 51.5,24.5 - parent: 30 - uid: 15992 components: - type: Transform @@ -108003,22 +106506,22 @@ entities: parent: 30 - proto: RCD entities: - - uid: 9601 + - uid: 10545 components: - type: Transform - pos: -15.481125,-35.377903 + pos: -5.524026,-35.43381 parent: 30 - proto: RCDAmmo entities: - - uid: 9602 + - uid: 9491 components: - type: Transform - pos: -15.3405,-34.940403 + pos: -5.614659,-35.18134 parent: 30 - - uid: 9603 + - uid: 11059 components: - type: Transform - pos: -15.606125,-34.956028 + pos: -5.3324804,-35.19619 parent: 30 - proto: ReagentContainerFlourSmall entities: @@ -108031,11 +106534,11 @@ entities: tags: [] - proto: Recycler entities: - - uid: 14530 + - uid: 12974 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,22.5 + pos: 49.5,23.5 parent: 30 - proto: ReinforcedGirder entities: @@ -108046,36 +106549,6 @@ entities: parent: 30 - proto: ReinforcedPlasmaWindow entities: - - uid: 3583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-56.5 - parent: 30 - - uid: 4406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-56.5 - parent: 30 - - uid: 4895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-56.5 - parent: 30 - - uid: 6271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-56.5 - parent: 30 - - uid: 7208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-56.5 - parent: 30 - uid: 8537 components: - type: Transform @@ -108153,24 +106626,6 @@ entities: - type: Transform pos: 24.5,-22.5 parent: 30 - - uid: 9058 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-56.5 - parent: 30 - - uid: 9061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-56.5 - parent: 30 - - uid: 9063 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-56.5 - parent: 30 - uid: 12898 components: - type: Transform @@ -108222,6 +106677,42 @@ entities: - type: Transform pos: -59.5,57.5 parent: 30 + - uid: 20678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-54.5 + parent: 30 + - uid: 20679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-54.5 + parent: 30 + - uid: 20680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-54.5 + parent: 30 + - uid: 20681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-54.5 + parent: 30 + - uid: 20682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-54.5 + parent: 30 + - uid: 20683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-54.5 + parent: 30 - proto: ReinforcedWindow entities: - uid: 66 @@ -108309,11 +106800,6 @@ entities: - type: Transform pos: -64.5,12.5 parent: 30 - - uid: 795 - components: - - type: Transform - pos: -33.5,-61.5 - parent: 30 - uid: 843 components: - type: Transform @@ -108641,21 +107127,11 @@ entities: - type: Transform pos: -42.5,34.5 parent: 30 - - uid: 1476 - components: - - type: Transform - pos: -51.5,36.5 - parent: 30 - uid: 1489 components: - type: Transform pos: -52.5,34.5 parent: 30 - - uid: 1490 - components: - - type: Transform - pos: -53.5,34.5 - parent: 30 - uid: 1491 components: - type: Transform @@ -109610,31 +108086,6 @@ entities: - type: Transform pos: -14.5,-17.5 parent: 30 - - uid: 7094 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 30 - - uid: 7095 - components: - - type: Transform - pos: -0.5,-54.5 - parent: 30 - - uid: 7107 - components: - - type: Transform - pos: 1.5,-45.5 - parent: 30 - - uid: 7108 - components: - - type: Transform - pos: 3.5,-45.5 - parent: 30 - - uid: 7125 - components: - - type: Transform - pos: -0.5,-51.5 - parent: 30 - uid: 7158 components: - type: Transform @@ -109706,6 +108157,12 @@ entities: - type: Transform pos: -14.5,-13.5 parent: 30 + - uid: 7912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,12.5 + parent: 30 - uid: 7996 components: - type: Transform @@ -109762,11 +108219,6 @@ entities: - type: Transform pos: -65.5,42.5 parent: 30 - - uid: 8359 - components: - - type: Transform - pos: -32.5,-61.5 - parent: 30 - uid: 8377 components: - type: Transform @@ -109824,11 +108276,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-26.5 parent: 30 - - uid: 8408 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 30 - uid: 8409 components: - type: Transform @@ -109844,11 +108291,6 @@ entities: - type: Transform pos: 16.5,-12.5 parent: 30 - - uid: 8419 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 30 - uid: 8420 components: - type: Transform @@ -109869,16 +108311,6 @@ entities: - type: Transform pos: 7.5,-22.5 parent: 30 - - uid: 8455 - components: - - type: Transform - pos: -32.5,-62.5 - parent: 30 - - uid: 8456 - components: - - type: Transform - pos: -32.5,-63.5 - parent: 30 - uid: 8457 components: - type: Transform @@ -110179,11 +108611,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-31.5 parent: 30 - - uid: 9194 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 30 - uid: 9277 components: - type: Transform @@ -110204,6 +108631,18 @@ entities: - type: Transform pos: -0.5,-32.5 parent: 30 + - uid: 9303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-50.5 + parent: 30 + - uid: 9316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-51.5 + parent: 30 - uid: 9321 components: - type: Transform @@ -110219,15 +108658,10 @@ entities: - type: Transform pos: -49.5,-10.5 parent: 30 - - uid: 9585 - components: - - type: Transform - pos: -17.5,-37.5 - parent: 30 - - uid: 9586 + - uid: 9495 components: - type: Transform - pos: -19.5,-37.5 + pos: -16.5,-45.5 parent: 30 - uid: 9597 components: @@ -110239,239 +108673,234 @@ entities: - type: Transform pos: -38.5,-36.5 parent: 30 - - uid: 9638 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 30 - - uid: 9639 - components: - - type: Transform - pos: -14.5,-43.5 - parent: 30 - - uid: 9640 + - uid: 9664 components: - type: Transform - pos: 2.5,-53.5 + pos: 4.5,37.5 parent: 30 - - uid: 9641 + - uid: 9679 components: - type: Transform - pos: 2.5,-52.5 + rot: 3.141592653589793 rad + pos: 5.5,-48.5 parent: 30 - - uid: 9642 + - uid: 9680 components: - type: Transform - pos: 2.5,-54.5 + rot: 3.141592653589793 rad + pos: 5.5,-49.5 parent: 30 - - uid: 9643 + - uid: 9702 components: - type: Transform - pos: -0.5,-50.5 + pos: -18.5,-45.5 parent: 30 - - uid: 9644 + - uid: 9706 components: - type: Transform - pos: 2.5,-50.5 + pos: 13.5,37.5 parent: 30 - - uid: 9645 + - uid: 9718 components: - type: Transform - pos: 2.5,-49.5 + pos: 13.5,38.5 parent: 30 - - uid: 9646 + - uid: 9723 components: - type: Transform - pos: 0.5,-47.5 + pos: -63.5,14.5 parent: 30 - - uid: 9647 + - uid: 9801 components: - type: Transform - pos: -0.5,-48.5 + pos: -57.5,5.5 parent: 30 - - uid: 9648 + - uid: 9815 components: - type: Transform - pos: 2.5,-48.5 + rot: -1.5707963267948966 rad + pos: -1.5,-42.5 parent: 30 - - uid: 9649 + - uid: 9820 components: - type: Transform - pos: -10.5,-42.5 + rot: -1.5707963267948966 rad + pos: 2.5,-42.5 parent: 30 - - uid: 9650 + - uid: 9848 components: - type: Transform - pos: -8.5,-42.5 + pos: -27.5,-17.5 parent: 30 - - uid: 9651 + - uid: 9857 components: - type: Transform - pos: -6.5,-42.5 + pos: -32.5,-5.5 parent: 30 - - uid: 9652 + - uid: 9858 components: - type: Transform - pos: -4.5,-42.5 + pos: -32.5,-7.5 parent: 30 - - uid: 9664 + - uid: 10053 components: - type: Transform - pos: 4.5,37.5 + pos: -15.5,-57.5 parent: 30 - - uid: 9706 + - uid: 10054 components: - type: Transform - pos: 13.5,37.5 + pos: -17.5,-57.5 parent: 30 - - uid: 9718 + - uid: 10058 components: - type: Transform - pos: 13.5,38.5 + pos: -16.5,-57.5 parent: 30 - - uid: 9723 + - uid: 10059 components: - type: Transform - pos: -63.5,14.5 + pos: -19.5,-57.5 parent: 30 - - uid: 9801 + - uid: 10088 components: - type: Transform - pos: -57.5,5.5 + pos: -14.5,-57.5 parent: 30 - - uid: 9813 + - uid: 10089 components: - type: Transform - pos: 1.5,-47.5 + rot: 1.5707963267948966 rad + pos: 0.5,-26.5 parent: 30 - - uid: 9817 + - uid: 10094 components: - type: Transform - pos: 1.5,-55.5 + pos: -18.5,-57.5 parent: 30 - - uid: 9818 + - uid: 10098 components: - type: Transform - pos: 0.5,-55.5 + pos: 4.5,-40.5 parent: 30 - - uid: 9848 + - uid: 10099 components: - type: Transform - pos: -27.5,-17.5 + pos: 4.5,-38.5 parent: 30 - - uid: 9857 + - uid: 10124 components: - type: Transform - pos: -32.5,-5.5 + rot: -1.5707963267948966 rad + pos: -14.5,-31.5 parent: 30 - - uid: 9858 + - uid: 10139 components: - type: Transform - pos: -32.5,-7.5 + pos: -20.5,-57.5 parent: 30 - - uid: 10089 + - uid: 10152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-26.5 + pos: -14.5,-39.5 parent: 30 - - uid: 10090 + - uid: 10185 components: - type: Transform - pos: 4.5,-44.5 + rot: -1.5707963267948966 rad + pos: -14.5,-28.5 parent: 30 - - uid: 10097 + - uid: 10395 components: - type: Transform - pos: 4.5,-42.5 + pos: 23.5,-16.5 parent: 30 - - uid: 10098 + - uid: 10623 components: - type: Transform - pos: 4.5,-40.5 + rot: -1.5707963267948966 rad + pos: -14.5,-29.5 parent: 30 - - uid: 10099 + - uid: 10656 components: - type: Transform - pos: 4.5,-38.5 + rot: 3.141592653589793 rad + pos: 16.5,-19.5 parent: 30 - - uid: 10114 + - uid: 10743 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-45.5 + pos: 3.5,-21.5 parent: 30 - - uid: 10115 + - uid: 11073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-45.5 + pos: -9.5,-45.5 parent: 30 - - uid: 10131 + - uid: 11076 components: - type: Transform pos: -16.5,-49.5 parent: 30 - - uid: 10132 - components: - - type: Transform - pos: -18.5,-49.5 - parent: 30 - - uid: 10133 + - uid: 11091 components: - type: Transform - pos: -18.5,-52.5 + pos: -9.5,-43.5 parent: 30 - - uid: 10134 + - uid: 11106 components: - type: Transform - pos: -16.5,-52.5 + rot: -1.5707963267948966 rad + pos: -12.5,-32.5 parent: 30 - - uid: 10262 + - uid: 11125 components: - type: Transform - pos: -33.5,-59.5 + pos: -18.5,-49.5 parent: 30 - - uid: 10263 + - uid: 11139 components: - type: Transform - pos: -32.5,-59.5 + pos: -7.5,-42.5 parent: 30 - - uid: 10264 + - uid: 11140 components: - type: Transform - pos: -32.5,-58.5 + pos: -5.5,-42.5 parent: 30 - - uid: 10265 + - uid: 11164 components: - type: Transform - pos: -32.5,-57.5 + rot: 3.141592653589793 rad + pos: 16.5,-17.5 parent: 30 - - uid: 10266 + - uid: 11270 components: - type: Transform - pos: -31.5,-59.5 + pos: -11.5,-32.5 parent: 30 - - uid: 10267 + - uid: 11308 components: - type: Transform - pos: -31.5,-61.5 + pos: -14.5,-44.5 parent: 30 - - uid: 10395 + - uid: 11438 components: - type: Transform - pos: 23.5,-16.5 + pos: -64.5,16.5 parent: 30 - - uid: 10743 + - uid: 11448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-21.5 + rot: 3.141592653589793 rad + pos: -53.5,37.5 parent: 30 - - uid: 11438 + - uid: 11450 components: - type: Transform - pos: -64.5,16.5 + rot: 3.141592653589793 rad + pos: -53.5,35.5 parent: 30 - uid: 11602 components: @@ -110552,10 +108981,11 @@ entities: - type: Transform pos: 28.5,-12.5 parent: 30 - - uid: 12680 + - uid: 12656 components: - type: Transform - pos: 15.5,13.5 + rot: 1.5707963267948966 rad + pos: 15.5,10.5 parent: 30 - uid: 12695 components: @@ -110574,11 +109004,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,13.5 parent: 30 - - uid: 12727 - components: - - type: Transform - pos: 13.5,13.5 - parent: 30 - uid: 12729 components: - type: Transform @@ -110604,6 +109029,11 @@ entities: - type: Transform pos: 27.5,17.5 parent: 30 + - uid: 12837 + components: + - type: Transform + pos: -64.5,-66.5 + parent: 30 - uid: 12857 components: - type: Transform @@ -110854,6 +109284,11 @@ entities: - type: Transform pos: 10.5,55.5 parent: 30 + - uid: 13984 + components: + - type: Transform + pos: -6.5,-42.5 + parent: 30 - uid: 14338 components: - type: Transform @@ -110869,11 +109304,6 @@ entities: - type: Transform pos: 27.5,12.5 parent: 30 - - uid: 14513 - components: - - type: Transform - pos: 49.5,23.5 - parent: 30 - uid: 14515 components: - type: Transform @@ -110894,6 +109324,11 @@ entities: - type: Transform pos: 16.5,63.5 parent: 30 + - uid: 14915 + components: + - type: Transform + pos: -22.5,-45.5 + parent: 30 - uid: 15328 components: - type: Transform @@ -110979,6 +109414,11 @@ entities: - type: Transform pos: -56.5,48.5 parent: 30 + - uid: 16803 + components: + - type: Transform + pos: -62.5,-66.5 + parent: 30 - uid: 17039 components: - type: Transform @@ -111471,6 +109911,12 @@ entities: - type: Transform pos: -79.5,-37.5 parent: 30 + - uid: 17593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-44.5 + parent: 30 - uid: 18006 components: - type: Transform @@ -111591,26 +110037,36 @@ entities: - type: Transform pos: -74.5,-67.5 parent: 30 - - uid: 18185 + - uid: 18343 components: - type: Transform - pos: -59.5,-69.5 + pos: -52.5,-38.5 parent: 30 - - uid: 18186 + - uid: 18372 components: - type: Transform - pos: -58.5,-69.5 + pos: -63.5,-66.5 parent: 30 - - uid: 18343 + - uid: 18763 components: - type: Transform - pos: -52.5,-38.5 + pos: -85.5,-46.5 + parent: 30 + - uid: 18764 + components: + - type: Transform + pos: -85.5,-44.5 parent: 30 - uid: 19066 components: - type: Transform pos: -51.5,-40.5 parent: 30 + - uid: 19373 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 30 - uid: 19632 components: - type: Transform @@ -111856,11 +110312,6 @@ entities: - type: Transform pos: -41.5,-28.5 parent: 30 - - uid: 22637 - components: - - type: Transform - pos: -30.5,-61.5 - parent: 30 - proto: ResearchAndDevelopmentServer entities: - uid: 12746 @@ -112004,10 +110455,10 @@ entities: - type: Transform pos: -42.32744,-20.937243 parent: 30 - - uid: 12822 + - uid: 18172 components: - type: Transform - pos: 16.462046,12.553694 + pos: 17.569016,13.6063385 parent: 30 - proto: SecurityTechFab entities: @@ -112023,15 +110474,15 @@ entities: - Steel - proto: SeedExtractor entities: - - uid: 415 + - uid: 2345 components: - type: Transform - pos: -25.5,8.5 + pos: -45.5,68.5 parent: 30 - - uid: 2345 + - uid: 16134 components: - type: Transform - pos: -45.5,68.5 + pos: -28.5,7.5 parent: 30 - uid: 19535 components: @@ -112040,49 +110491,39 @@ entities: parent: 30 - proto: SheetGlass entities: - - uid: 9419 - components: - - type: Transform - pos: -22.481571,-47.56282 - parent: 30 - - uid: 11281 - components: - - type: Transform - pos: 0.5411911,-43.91178 - parent: 30 - - uid: 11282 + - uid: 5635 components: - type: Transform - pos: 0.5411911,-43.91178 + pos: -25.515194,-43.69366 parent: 30 - - uid: 12820 + - uid: 18170 components: - type: Transform - pos: 19.709492,12.540524 + pos: 18.613844,13.552378 parent: 30 - - uid: 12821 + - uid: 18790 components: - type: Transform - pos: 19.80086,12.477194 + pos: -52.31846,-62.49577 parent: 30 - - uid: 18790 + - uid: 18878 components: - type: Transform - pos: -62.64885,-62.517246 + pos: -15.490766,-37.49464 parent: 30 - proto: SheetPlasma entities: - - uid: 9418 - components: - - type: Transform - pos: -22.465946,-47.515945 - parent: 30 - uid: 11365 components: - type: Transform parent: 11364 - type: Physics canCollide: False + - uid: 18692 + components: + - type: Transform + pos: -15.565023,-37.405533 + parent: 30 - uid: 21729 components: - type: Transform @@ -112110,30 +110551,22 @@ entities: - type: Transform pos: -39.48265,27.446999 parent: 30 - - uid: 11277 - components: - - type: Transform - pos: 0.5568161,-43.31803 - parent: 30 - - uid: 11278 - components: - - type: Transform - pos: 0.5568161,-43.31803 - parent: 30 - uid: 11736 components: - type: Transform pos: 19.262014,2.5731275 parent: 30 - - uid: 12816 + - uid: 19410 components: - type: Transform - pos: 19.2153,12.5261135 + pos: -21.505291,-47.848297 parent: 30 - - uid: 12817 +- proto: SheetPlasteel10 + entities: + - uid: 15989 components: - type: Transform - pos: 19.152752,12.557497 + pos: 19.503614,13.556404 parent: 30 - proto: SheetPlastic entities: @@ -112142,6 +110575,11 @@ entities: - type: Transform pos: 24.539536,9.582489 parent: 30 + - uid: 14827 + components: + - type: Transform + pos: -25.500341,-44.0501 + parent: 30 - proto: SheetRGlass entities: - uid: 779 @@ -112171,20 +110609,25 @@ entities: - type: Transform pos: -37.50003,55.530113 parent: 30 + - uid: 5615 + components: + - type: Transform + pos: -25.544897,-43.30752 + parent: 30 - uid: 6680 components: - type: Transform pos: -38.50112,-3.4785028 parent: 30 - - uid: 8384 + - uid: 9977 components: - type: Transform - pos: 14.431295,-25.50531 + pos: 2.432715,-46.481953 parent: 30 - - uid: 9246 + - uid: 10018 components: - type: Transform - pos: 14.418909,-25.502102 + pos: 12.534329,-26.430252 parent: 30 - uid: 10245 components: @@ -112201,57 +110644,52 @@ entities: - type: Transform pos: -39.967026,27.431374 parent: 30 - - uid: 11279 - components: - - type: Transform - pos: 0.5099411,-42.56803 - parent: 30 - - uid: 11280 + - uid: 10556 components: - type: Transform - pos: 0.5099411,-42.56803 + pos: 2.7814693,-46.481953 parent: 30 - - uid: 11701 + - uid: 10761 components: - type: Transform - pos: 14.431295,-25.50531 + pos: -21.470598,-47.509216 parent: 30 - - uid: 11735 + - uid: 11289 components: - type: Transform - pos: 19.908981,2.569995 + pos: 12.415517,-26.22233 parent: 30 - - uid: 12818 + - uid: 11299 components: - type: Transform - pos: 18.621367,12.577154 + pos: 12.593735,-26.22233 parent: 30 - - uid: 12819 + - uid: 11735 components: - type: Transform - pos: 18.711626,12.51626 + pos: 19.908981,2.569995 parent: 30 - uid: 15528 components: - type: Transform pos: 17.501102,60.54593 parent: 30 - - uid: 18791 + - uid: 17884 components: - type: Transform - pos: -62.6176,-62.579746 + pos: 18.973642,13.552378 parent: 30 - - uid: 20450 + - uid: 18791 components: - type: Transform - pos: -23.542912,-39.421722 + pos: -52.674896,-62.391804 parent: 30 - proto: SheetUranium entities: - - uid: 10290 + - uid: 19800 components: - type: Transform - pos: -22.492691,-47.491028 + pos: -15.342251,-37.568897 parent: 30 - proto: Shovel entities: @@ -112601,40 +111039,79 @@ entities: - type: Transform pos: -5.5,12.5 parent: 30 - - uid: 12656 + - uid: 12810 components: - type: Transform - pos: 14.5,13.5 + pos: 24.5,15.5 parent: 30 - - uid: 12657 + - uid: 14340 components: - type: Transform - pos: 13.5,13.5 + pos: 27.5,12.5 parent: 30 - - uid: 12810 + - uid: 14352 components: - type: Transform - pos: 24.5,15.5 + pos: 28.5,12.5 parent: 30 - - uid: 13075 + - uid: 14355 components: - type: Transform - pos: 15.5,13.5 + pos: 26.5,12.5 parent: 30 - - uid: 14340 + - uid: 14530 components: - type: Transform - pos: 27.5,12.5 + rot: -1.5707963267948966 rad + pos: 15.5,39.5 parent: 30 - - uid: 14352 + - uid: 14844 components: - type: Transform - pos: 28.5,12.5 + rot: -1.5707963267948966 rad + pos: 15.5,34.5 parent: 30 - - uid: 14355 + - uid: 15075 components: - type: Transform - pos: 26.5,12.5 + rot: -1.5707963267948966 rad + pos: 15.5,40.5 + parent: 30 + - uid: 15213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,36.5 + parent: 30 + - uid: 15986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,33.5 + parent: 30 + - uid: 15987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,37.5 + parent: 30 + - uid: 18696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 30 + - uid: 18733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,15.5 + parent: 30 + - uid: 18734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 parent: 30 - uid: 20394 components: @@ -112684,35 +111161,25 @@ entities: parent: 30 - proto: ShuttersRadiationOpen entities: - - uid: 9182 - components: - - type: Transform - pos: -10.5,-42.5 - parent: 30 - - uid: 9339 - components: - - type: Transform - pos: -14.5,-43.5 - parent: 30 - - uid: 10741 + - uid: 9408 components: - type: Transform - pos: -4.5,-42.5 + pos: -16.5,-49.5 parent: 30 - - uid: 10742 + - uid: 9410 components: - type: Transform - pos: -6.5,-42.5 + pos: -18.5,-45.5 parent: 30 - - uid: 11152 + - uid: 9411 components: - type: Transform - pos: -8.5,-42.5 + pos: -16.5,-45.5 parent: 30 - - uid: 18692 + - uid: 9415 components: - type: Transform - pos: -0.5,-43.5 + pos: -18.5,-49.5 parent: 30 - proto: SignAi entities: @@ -112792,18 +111259,6 @@ entities: - type: Transform pos: -39.5,9.5 parent: 30 - - uid: 3598 - components: - - type: MetaData - name: Janitorial Service Light - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-38.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 844: - - Pressed: Toggle - uid: 8570 components: - type: Transform @@ -112813,32 +111268,6 @@ entities: linkedPorts: 9068: - Pressed: Toggle - - uid: 8818 - components: - - type: Transform - pos: -13.5,-56.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 9827: - - Pressed: Toggle - 9826: - - Pressed: Toggle - 9825: - - Pressed: Toggle - - uid: 8821 - components: - - type: Transform - pos: -1.5,-56.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 9830: - - Pressed: Toggle - 9829: - - Pressed: Toggle - 9828: - - Pressed: Toggle - uid: 9038 components: - type: Transform @@ -112959,24 +111388,6 @@ entities: - Pressed: Toggle 13729: - Pressed: Toggle - - uid: 15985 - components: - - type: Transform - pos: 50.5,25.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 13751: - - Pressed: Toggle - - uid: 15986 - components: - - type: Transform - pos: 53.5,25.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 14512: - - Pressed: Toggle - uid: 20392 components: - type: Transform @@ -113008,21 +111419,6 @@ entities: linkedPorts: 5556: - Pressed: Toggle - - uid: 20399 - components: - - type: MetaData - name: Shutters - - type: Transform - pos: 16.5,13.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 12656: - - Pressed: Toggle - 12657: - - Pressed: Toggle - 13075: - - Pressed: Toggle - uid: 20446 components: - type: Transform @@ -113057,17 +111453,6 @@ entities: - Pressed: Toggle - proto: SignalButtonDirectional entities: - - uid: 3115 - components: - - type: MetaData - name: Janitorial Service Light - - type: Transform - pos: 12.5,13.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 961: - - Pressed: Toggle - uid: 3180 components: - type: Transform @@ -113235,18 +111620,6 @@ entities: - Pressed: Toggle 7562: - Pressed: Toggle - - uid: 8393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-48.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 9404: - - Pressed: Toggle - 9405: - - Pressed: Toggle - uid: 8607 components: - type: Transform @@ -113257,20 +111630,6 @@ entities: linkedPorts: 6882: - Pressed: Toggle - - uid: 8609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-45.5 - parent: 30 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 9405: - - Pressed: Toggle - 9404: - - Pressed: Toggle - uid: 8610 components: - type: Transform @@ -113338,6 +111697,17 @@ entities: linkedPorts: 6415: - Pressed: DoorBolt + - uid: 18213 + components: + - type: MetaData + name: janitor light button + - type: Transform + pos: 18.5,17.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 16403: + - Pressed: Toggle - uid: 20432 components: - type: Transform @@ -113366,6 +111736,141 @@ entities: - Pressed: Toggle 2313: - Pressed: Toggle +- proto: SignalSwitch + entities: + - uid: 11021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-38.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 9533: + - On: Open + - Off: Close + 11028: + - On: Open + - Off: Close + 11015: + - On: Open + - Off: Close +- proto: SignalSwitchDirectional + entities: + - uid: 402 + components: + - type: MetaData + name: shutters switch + - type: Transform + pos: 17.5,17.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 18696: + - On: Open + - Off: Close + 18733: + - On: Open + - Off: Close + 18734: + - On: Open + - Off: Close + - uid: 3131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-47.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 9415: + - On: Open + - Off: Close + 9408: + - On: Open + - Off: Close + 9410: + - On: Open + - Off: Close + 9411: + - On: Open + - Off: Close + - uid: 9164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-54.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 9678: + - On: Open + - Off: Close + 9065: + - On: Open + - Off: Close + 9064: + - On: Open + - Off: Close + - uid: 9214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-54.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 9690: + - On: Open + - Off: Close + 9302: + - On: Open + - Off: Close + 9691: + - On: Open + - Off: Close + - uid: 12697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,35.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 15213: + - On: Open + - Off: Close + 15987: + - On: Open + - Off: Close + - uid: 14525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,32.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 15986: + - On: Open + - Off: Close + 14844: + - On: Open + - Off: Close + - uid: 15975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,38.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 14530: + - On: Open + - Off: Close + 15075: + - On: Open + - Off: Close - proto: SignArmory entities: - uid: 1927 @@ -113375,6 +111880,11 @@ entities: parent: 30 - proto: SignAtmos entities: + - uid: 7012 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 30 - uid: 9082 components: - type: Transform @@ -113385,13 +111895,6 @@ entities: - type: Transform pos: 4.5,-32.5 parent: 30 -- proto: SignAtmosMinsky - entities: - - uid: 7012 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 30 - proto: SignBar entities: - uid: 1384 @@ -113411,6 +111914,18 @@ entities: - type: Transform pos: -2.5,28.5 parent: 30 +- proto: SignCans + entities: + - uid: 20624 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 30 + - uid: 20627 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 30 - proto: SignCargo entities: - uid: 8405 @@ -113447,8 +111962,6 @@ entities: - type: Transform pos: -10.5,-11.5 parent: 30 -- proto: SignChemistry1 - entities: - uid: 9032 components: - type: Transform @@ -113456,17 +111969,6 @@ entities: parent: 30 - proto: SignCryogenicsMed entities: - - uid: 6679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-42.5 - parent: 30 - - uid: 9950 - components: - - type: Transform - pos: 2.5,-51.5 - parent: 30 - uid: 15233 components: - type: Transform @@ -113474,12 +111976,6 @@ entities: parent: 30 - proto: SignDangerMed entities: - - uid: 6678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 - parent: 30 - uid: 17038 components: - type: Transform @@ -113909,13 +112405,6 @@ entities: - type: Transform pos: 47.5,20.5 parent: 30 -- proto: SignDrones - entities: - - uid: 12263 - components: - - type: Transform - pos: -37.5,26.5 - parent: 30 - proto: SignElectricalMed entities: - uid: 3194 @@ -113934,52 +112423,42 @@ entities: - type: Transform pos: -41.5,20.5 parent: 30 - - uid: 6684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-42.5 - parent: 30 - - uid: 6699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-42.5 - parent: 30 - uid: 6889 components: - type: Transform pos: -36.5,-1.5 parent: 30 - - uid: 9363 + - uid: 9464 components: - type: Transform - pos: -5.5,-37.5 + pos: -4.5,-28.5 parent: 30 - - uid: 9449 + - uid: 15973 components: - type: Transform - pos: -25.5,-45.5 + pos: 48.5,31.5 parent: 30 - - uid: 9464 + - uid: 16993 components: - type: Transform - pos: -4.5,-28.5 + pos: -62.5,44.5 parent: 30 - - uid: 9465 + - uid: 20628 components: - type: Transform - pos: -11.5,-36.5 + pos: -9.5,-42.5 parent: 30 - - uid: 15973 +- proto: SignEngine + entities: + - uid: 20633 components: - type: Transform - pos: 48.5,31.5 + pos: -8.5,-42.5 parent: 30 - - uid: 16993 + - uid: 20634 components: - type: Transform - pos: -62.5,44.5 + pos: -13.5,-46.5 parent: 30 - proto: SignEngineering entities: @@ -114009,16 +112488,27 @@ entities: parent: 30 - proto: SignFire entities: - - uid: 6639 + - uid: 9264 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-42.5 + pos: 23.5,-15.5 parent: 30 - - uid: 9264 + - uid: 20621 components: - type: Transform - pos: 23.5,-15.5 + pos: 3.5,-42.5 + parent: 30 +- proto: SignFlammableMed + entities: + - uid: 20631 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 30 + - uid: 20632 + components: + - type: Transform + pos: -5.5,-54.5 parent: 30 - proto: SignGravity entities: @@ -114041,19 +112531,15 @@ entities: - type: Transform pos: -20.5,13.5 parent: 30 -- proto: SignHydro2 - entities: - - uid: 1386 + - uid: 1385 components: - type: Transform - pos: -29.5,4.5 + pos: -22.5,8.5 parent: 30 -- proto: SignHydro3 - entities: - - uid: 1385 + - uid: 1386 components: - type: Transform - pos: -22.5,8.5 + pos: -29.5,4.5 parent: 30 - proto: SignInterrogation entities: @@ -114074,7 +112560,12 @@ entities: - uid: 18813 components: - type: Transform - pos: -57.5,-61.5 + pos: -71.5,-58.5 + parent: 30 + - uid: 20629 + components: + - type: Transform + pos: -63.5,-61.5 parent: 30 - proto: SignMagneticsMed entities: @@ -114090,6 +112581,13 @@ entities: - type: Transform pos: 18.5,-0.5 parent: 30 +- proto: SignMaterials + entities: + - uid: 12263 + components: + - type: Transform + pos: -37.5,26.5 + parent: 30 - proto: SignMedical entities: - uid: 6763 @@ -114102,13 +112600,6 @@ entities: - type: Transform pos: -12.5,0.5 parent: 30 -- proto: SignMinerDock - entities: - - uid: 8445 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 30 - proto: SignMorgue entities: - uid: 6903 @@ -114194,15 +112685,15 @@ entities: - type: Transform pos: 12.5,43.5 parent: 30 - - uid: 10143 + - uid: 20622 components: - type: Transform - pos: -19.5,-45.5 + pos: -15.5,-45.5 parent: 30 - - uid: 10144 + - uid: 20630 components: - type: Transform - pos: -15.5,-45.5 + pos: -19.5,-45.5 parent: 30 - proto: SignRedOne entities: @@ -114245,26 +112736,23 @@ entities: pos: 16.5,24.5 parent: 30 - proto: SignScience - entities: - - uid: 13389 - components: - - type: Transform - pos: 16.5,16.5 - parent: 30 -- proto: SignScience1 entities: - uid: 6576 components: - type: Transform pos: 11.5,19.5 parent: 30 -- proto: SignScience2 - entities: - uid: 13388 components: - type: Transform pos: 11.5,13.5 parent: 30 + - uid: 17707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 30 - proto: SignSecurearea entities: - uid: 11895 @@ -114355,36 +112843,29 @@ entities: - type: Transform pos: -37.5,38.5 parent: 30 -- proto: SignSmoking +- proto: SignShipDock entities: - - uid: 9125 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 30 - - uid: 10386 + - uid: 8445 components: - type: Transform - pos: 17.5,-15.5 + pos: 15.5,-9.5 parent: 30 - - uid: 21458 +- proto: SignSmoking + entities: + - uid: 9125 components: - type: Transform - pos: -13.5,-42.5 + pos: 21.5,-20.5 parent: 30 -- proto: SignSomethingOld - entities: - - uid: 10018 + - uid: 9194 components: - type: Transform - pos: -1.5,-42.5 + pos: -0.5,-42.5 parent: 30 -- proto: SignSomethingOld2 - entities: - - uid: 10017 + - uid: 10386 components: - type: Transform - pos: -3.5,-42.5 + pos: 17.5,-15.5 parent: 30 - proto: SignSpace entities: @@ -114455,20 +112936,10 @@ entities: parent: 30 - proto: SignTelecomms entities: - - uid: 22655 + - uid: 20635 components: - type: Transform - pos: -19.5,-47.5 - parent: 30 - - uid: 22656 - components: - - type: Transform - pos: -28.5,-59.5 - parent: 30 - - uid: 22803 - components: - - type: Transform - pos: -21.5,-57.5 + pos: -11.5,-36.5 parent: 30 - proto: SignToolStorage entities: @@ -114486,25 +112957,13 @@ entities: parent: 30 - proto: SingularityGenerator entities: - - uid: 9407 + - uid: 19419 components: - type: Transform - pos: -22.5,-48.5 + pos: -16.5,-34.5 parent: 30 - proto: Sink entities: - - uid: 402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,6.5 - parent: 30 - - uid: 403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,12.5 - parent: 30 - uid: 449 components: - type: Transform @@ -114604,6 +113063,24 @@ entities: - type: Transform pos: -12.5,11.5 parent: 30 + - uid: 11065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-47.5 + parent: 30 + - uid: 12640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 30 + - uid: 17714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 30 - uid: 18011 components: - type: Transform @@ -114615,12 +113092,6 @@ entities: - type: Transform pos: -56.5,52.5 parent: 30 - - uid: 22541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,14.5 - parent: 30 - proto: SmartFridge entities: - uid: 315 @@ -114645,6 +113116,11 @@ entities: parent: 30 - proto: SMESBasic entities: + - uid: 3115 + components: + - type: Transform + pos: -56.5,-63.5 + parent: 30 - uid: 5472 components: - type: MetaData @@ -114652,64 +113128,54 @@ entities: - type: Transform pos: 12.5,41.5 parent: 30 - - uid: 9410 + - uid: 8237 components: - type: Transform - pos: -24.5,-50.5 + pos: -15.5,-28.5 parent: 30 - - uid: 9411 + - uid: 8819 components: - type: Transform - pos: -24.5,-49.5 + pos: -19.5,-46.5 parent: 30 - - uid: 9496 + - uid: 9581 components: - - type: MetaData - name: SMES Bank 3 - type: Transform - pos: -6.5,-34.5 + pos: -6.5,-43.5 parent: 30 - - uid: 9497 + - uid: 9583 components: - - type: MetaData - name: SMES Bank 2 - type: Transform - pos: -7.5,-34.5 + pos: -5.5,-43.5 parent: 30 - - uid: 9498 + - uid: 11176 components: - - type: MetaData - name: SMES Bank 1 - type: Transform - pos: -8.5,-34.5 + pos: -7.5,-47.5 parent: 30 - - uid: 15299 + - uid: 11278 components: - - type: MetaData - name: East Solars SMES - type: Transform - pos: 51.5,31.5 + pos: -7.5,-43.5 parent: 30 - - uid: 16277 + - uid: 15299 components: - type: MetaData - name: West Solars SMES + name: East Solars SMES - type: Transform - pos: -65.5,44.5 + pos: 51.5,31.5 parent: 30 - - uid: 18774 + - uid: 15991 components: - - type: MetaData - name: Chapelroid SMES 2 - type: Transform - pos: -69.5,-63.5 + pos: -56.5,-62.5 parent: 30 - - uid: 18775 + - uid: 16277 components: - type: MetaData - name: Chapelroid SMES 1 + name: West Solars SMES - type: Transform - pos: -69.5,-62.5 + pos: -65.5,44.5 parent: 30 - uid: 20046 components: @@ -114718,17 +113184,17 @@ entities: - type: Transform pos: -0.5,84.5 parent: 30 - - uid: 20619 +- proto: SMESBasicEmpty + entities: + - uid: 9481 components: - type: Transform - pos: -15.5,-28.5 + pos: -15.5,-35.5 parent: 30 - - uid: 22658 + - uid: 9498 components: - - type: MetaData - name: Telecomms SMES - type: Transform - pos: -25.5,-62.5 + pos: -15.5,-34.5 parent: 30 - proto: SoapHomemade entities: @@ -116150,12 +114616,20 @@ entities: - type: Transform pos: 4.5,34.5 parent: 30 +- proto: SpawnMobCow + entities: + - uid: 18819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,6.5 + parent: 30 - proto: SpawnMobCrabAtmos entities: - - uid: 20359 + - uid: 19831 components: - type: Transform - pos: 17.5,-27.5 + pos: 10.5,-25.5 parent: 30 - proto: SpawnMobFoxRenault entities: @@ -116166,10 +114640,11 @@ entities: parent: 30 - proto: SpawnMobGoat entities: - - uid: 7677 + - uid: 14336 components: - type: Transform - pos: -16.5,14.5 + rot: -1.5707963267948966 rad + pos: -27.5,5.5 parent: 30 - proto: SpawnMobKangarooWillow entities: @@ -116241,13 +114716,6 @@ entities: - type: Transform pos: -24.5,52.5 parent: 30 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 19570 - components: - - type: Transform - pos: -57.5,-64.5 - parent: 30 - proto: SpawnMobSmile entities: - uid: 7441 @@ -116372,10 +114840,10 @@ entities: parent: 30 - proto: SpawnPointChiefEngineer entities: - - uid: 9587 + - uid: 9494 components: - type: Transform - pos: -16.5,-35.5 + pos: -7.5,-33.5 parent: 30 - proto: SpawnPointChiefMedicalOfficer entities: @@ -116460,10 +114928,10 @@ entities: parent: 30 - proto: SpawnPointLibrarian entities: - - uid: 19562 + - uid: 18604 components: - type: Transform - pos: -58.5,-65.5 + pos: -66.5,-62.5 parent: 30 - proto: SpawnPointMedicalDoctor entities: @@ -116699,47 +115167,102 @@ entities: parent: 30 - proto: SpawnPointStationEngineer entities: - - uid: 9579 + - uid: 9366 components: - type: Transform - pos: -23.5,-41.5 + pos: -23.5,-48.5 parent: 30 - - uid: 9580 + - uid: 9503 components: - type: Transform - pos: -24.5,-41.5 + pos: -6.5,-44.5 parent: 30 - - uid: 9581 + - uid: 9506 components: - type: Transform - pos: -23.5,-42.5 + pos: -22.5,-48.5 parent: 30 - - uid: 20346 + - uid: 9644 + components: + - type: Transform + pos: -22.5,-49.5 + parent: 30 + - uid: 9646 + components: + - type: Transform + pos: -24.5,-49.5 + parent: 30 + - uid: 9647 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 30 + - uid: 9652 + components: + - type: Transform + pos: -23.5,-49.5 + parent: 30 + - uid: 9890 + components: + - type: Transform + pos: -23.5,-40.5 + parent: 30 + - uid: 9974 components: - type: Transform - pos: -24.5,-42.5 + pos: -24.5,-47.5 + parent: 30 + - uid: 10554 + components: + - type: Transform + pos: -24.5,-48.5 + parent: 30 + - uid: 10613 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 30 + - uid: 11347 + components: + - type: Transform + pos: -22.5,-47.5 parent: 30 - proto: SpawnPointTechnicalAssistant entities: - - uid: 20802 + - uid: 9343 components: - type: Transform - pos: -21.5,-42.5 + pos: -24.5,-48.5 parent: 30 - - uid: 20803 + - uid: 9359 components: - type: Transform - pos: -21.5,-41.5 + pos: -7.5,-44.5 parent: 30 - - uid: 20885 + - uid: 9363 components: - type: Transform - pos: -22.5,-42.5 + pos: -23.5,-48.5 parent: 30 - - uid: 20886 + - uid: 9648 components: - type: Transform - pos: -22.5,-41.5 + pos: -22.5,-48.5 + parent: 30 + - uid: 9986 + components: + - type: Transform + pos: -23.5,-39.5 + parent: 30 + - uid: 10583 + components: + - type: Transform + pos: -23.5,-49.5 + parent: 30 + - uid: 10584 + components: + - type: Transform + pos: -23.5,-47.5 parent: 30 - proto: SpawnPointWarden entities: @@ -116757,6 +115280,16 @@ entities: parent: 30 - proto: SpawnVendingMachineRestockFoodDrink entities: + - uid: 11463 + components: + - type: Transform + pos: -69.5,-58.5 + parent: 30 + - uid: 16130 + components: + - type: Transform + pos: -70.5,-58.5 + parent: 30 - uid: 22422 components: - type: Transform @@ -117252,25 +115785,20 @@ entities: - type: Transform pos: 14.5,-28.5 parent: 30 - - uid: 9794 - components: - - type: Transform - pos: -12.5,-43.5 - parent: 30 - - uid: 9998 + - uid: 9066 components: - type: Transform - pos: -13.5,-43.5 + pos: -1.5,-43.5 parent: 30 - - uid: 10000 + - uid: 9882 components: - type: Transform - pos: -11.5,-43.5 + pos: -0.5,-43.5 parent: 30 - - uid: 10001 + - uid: 10561 components: - type: Transform - pos: -10.5,-43.5 + pos: -2.5,-43.5 parent: 30 - uid: 13342 components: @@ -117382,26 +115910,20 @@ entities: - type: Transform pos: -0.5,-11.5 parent: 30 - - uid: 9406 + - uid: 8239 components: - - type: MetaData - name: West Engineering Substation - type: Transform - pos: -22.5,-46.5 + pos: -16.5,-28.5 parent: 30 - - uid: 9570 + - uid: 9403 components: - - type: MetaData - name: East Engineering Substation - type: Transform - pos: 3.5,-37.5 + pos: -19.5,-48.5 parent: 30 - - uid: 10533 + - uid: 11175 components: - - type: MetaData - name: Singulo Substation - type: Transform - pos: -16.5,-51.5 + pos: -15.5,-39.5 parent: 30 - uid: 11374 components: @@ -117424,12 +115946,10 @@ entities: - type: Transform pos: 12.5,51.5 parent: 30 - - uid: 17718 + - uid: 18769 components: - - type: MetaData - name: Chapelroid Substation - type: Transform - pos: -52.5,-59.5 + pos: -56.5,-65.5 parent: 30 - uid: 18922 components: @@ -117452,12 +115972,12 @@ entities: - type: Transform pos: -24.5,41.5 parent: 30 - - uid: 22659 +- proto: SubstationBasicEmpty + entities: + - uid: 11345 components: - - type: MetaData - name: Telecomms Substation - type: Transform - pos: -27.5,-62.5 + pos: -15.5,-36.5 parent: 30 - proto: SubstationWallBasic entities: @@ -117504,22 +116024,27 @@ entities: parent: 30 - proto: SuitStorageCE entities: - - uid: 773 + - uid: 10649 components: - type: Transform - pos: -19.5,-36.5 + pos: -9.5,-36.5 parent: 30 - proto: SuitStorageEngi entities: - - uid: 9436 + - uid: 7111 components: - type: Transform - pos: -8.5,-38.5 + pos: -8.5,-41.5 parent: 30 - - uid: 9591 + - uid: 7123 components: - type: Transform - pos: -6.5,-38.5 + pos: -6.5,-41.5 + parent: 30 + - uid: 7124 + components: + - type: Transform + pos: -4.5,-41.5 parent: 30 - proto: SuitStorageEVA entities: @@ -117756,50 +116281,6 @@ entities: id: Conference Room - proto: SurveillanceCameraEngineering entities: - - uid: 788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-48.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG Cold Loop - - uid: 8233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-57.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG West Hot Room - - uid: 8293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-53.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo Walkway - - uid: 8296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-39.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi Locker Room - uid: 9253 components: - type: Transform @@ -117811,70 +116292,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Storage - - uid: 9429 - components: - - type: Transform - pos: -8.5,-55.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG South - - uid: 9692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-49.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG Hot Loop - - uid: 9703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-57.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG East Hot Room - - uid: 9704 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-43.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG North - - uid: 21209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-38.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Engineering ' - - uid: 21210 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - uid: 21211 components: - type: Transform @@ -117908,23 +116325,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmospherics Desk - - uid: 21217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-34.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Chief Engineer's Room - - uid: 21218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-42.5 - parent: 30 - uid: 21219 components: - type: Transform @@ -117957,28 +116357,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Tanks - - uid: 21279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-33.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES Bank - - uid: 21280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-46.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Supply - uid: 21281 components: - type: Transform @@ -118000,39 +116378,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Hall - - uid: 22811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-57.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms Exterior - - uid: 22838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-60.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms - - uid: 22839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-59.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms Entrance - proto: SurveillanceCameraGeneral entities: - uid: 1039 @@ -118078,17 +116423,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Game Room - - uid: 21229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-64.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Library - uid: 21231 components: - type: Transform @@ -118340,60 +116674,53 @@ entities: id: Psychology - proto: SurveillanceCameraRouterCommand entities: - - uid: 20980 - components: - - type: Transform - pos: 7.5,41.5 - parent: 30 - - uid: 22824 + - uid: 11177 components: - type: Transform - pos: -38.5,-60.5 + pos: -10.5,-31.5 parent: 30 -- proto: SurveillanceCameraRouterConstructed - entities: - - uid: 22832 + - uid: 20980 components: - type: Transform - pos: -40.5,-57.5 + pos: 7.5,41.5 parent: 30 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 22807 + - uid: 19183 components: - type: Transform - pos: -38.5,-57.5 + pos: -8.5,-31.5 parent: 30 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 21228 + - uid: 9387 components: - type: Transform - pos: -68.5,-63.5 + pos: -12.5,-31.5 parent: 30 - - uid: 22819 + - uid: 18191 components: - type: Transform - pos: -40.5,-63.5 + pos: -52.5,-59.5 parent: 30 - proto: SurveillanceCameraRouterMedical entities: - - uid: 22809 + - uid: 19184 components: - type: Transform - pos: -38.5,-62.5 + pos: -6.5,-27.5 parent: 30 - proto: SurveillanceCameraRouterScience entities: - - uid: 12747 + - uid: 11156 components: - type: Transform - pos: 31.5,15.5 + pos: -8.5,-27.5 parent: 30 - - uid: 22810 + - uid: 12747 components: - type: Transform - pos: -38.5,-63.5 + pos: 31.5,15.5 parent: 30 - proto: SurveillanceCameraRouterSecurity entities: @@ -118402,43 +116729,43 @@ entities: - type: Transform pos: -37.5,56.5 parent: 30 - - uid: 22820 + - uid: 9970 components: - type: Transform - pos: -35.5,-63.5 + pos: -6.5,-31.5 parent: 30 - proto: SurveillanceCameraRouterService entities: - - uid: 21220 + - uid: 11348 components: - type: Transform - pos: -13.5,17.5 + pos: -12.5,-27.5 parent: 30 - - uid: 22821 + - uid: 21220 components: - type: Transform - pos: -35.5,-57.5 + pos: -13.5,17.5 parent: 30 - proto: SurveillanceCameraRouterSupply entities: - - uid: 22808 + - uid: 10552 components: - type: Transform - pos: -38.5,-58.5 + pos: -10.5,-27.5 parent: 30 - proto: SurveillanceCameraScience entities: - - uid: 21186 + - uid: 9990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,12.5 + rot: -1.5707963267948966 rad + pos: 17.5,13.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: RND + id: Reception - uid: 21187 components: - type: Transform @@ -118830,20 +117157,6 @@ entities: - SurveillanceCameraSupply nameSet: True id: Quartermaster's Room -- proto: SurveillanceCameraWirelessRouterConstructed - entities: - - uid: 22831 - components: - - type: Transform - pos: -40.5,-59.5 - parent: 30 -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 22818 - components: - - type: Transform - pos: -40.5,-58.5 - parent: 30 - proto: SynthesizerInstrument entities: - uid: 15112 @@ -119225,6 +117538,11 @@ entities: - type: Transform pos: -51.5,55.5 parent: 30 + - uid: 3130 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 30 - uid: 3528 components: - type: Transform @@ -119235,11 +117553,32 @@ entities: - type: Transform pos: -39.5,18.5 parent: 30 + - uid: 4987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-32.5 + parent: 30 + - uid: 5238 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 30 + - uid: 5240 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 30 - uid: 5414 components: - type: Transform pos: 5.5,29.5 parent: 30 + - uid: 5444 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 30 - uid: 6278 components: - type: Transform @@ -119385,11 +117724,6 @@ entities: - type: Transform pos: 13.5,-25.5 parent: 30 - - uid: 9244 - components: - - type: Transform - pos: 14.5,-25.5 - parent: 30 - uid: 9245 components: - type: Transform @@ -119405,40 +117739,44 @@ entities: - type: Transform pos: 14.5,-15.5 parent: 30 - - uid: 9430 + - uid: 9414 components: - type: Transform - pos: -24.5,-39.5 + rot: 3.141592653589793 rad + pos: -7.5,-34.5 parent: 30 - - uid: 9431 + - uid: 9442 components: - type: Transform - pos: -23.5,-39.5 + pos: 5.5,-26.5 parent: 30 - - uid: 9442 + - uid: 9523 components: - type: Transform - pos: 5.5,-26.5 + rot: 3.141592653589793 rad + pos: -8.5,-34.5 parent: 30 - - uid: 9479 + - uid: 9531 components: - type: Transform - pos: -17.5,-29.5 + pos: -5.5,-34.5 parent: 30 - - uid: 9480 + - uid: 9532 components: - type: Transform - pos: -17.5,-30.5 + pos: -9.5,-34.5 parent: 30 - - uid: 9481 + - uid: 9591 components: - type: Transform - pos: -17.5,-28.5 + rot: 3.141592653589793 rad + pos: -17.5,-32.5 parent: 30 - - uid: 9482 + - uid: 10123 components: - type: Transform - pos: -17.5,-31.5 + rot: -1.5707963267948966 rad + pos: -17.5,-29.5 parent: 30 - uid: 10407 components: @@ -119455,70 +117793,59 @@ entities: - type: Transform pos: -47.5,63.5 parent: 30 - - uid: 11247 - components: - - type: Transform - pos: -1.5,-32.5 - parent: 30 - - uid: 11249 - components: - - type: Transform - pos: -3.5,-32.5 - parent: 30 - - uid: 11250 - components: - - type: Transform - pos: -3.5,-33.5 - parent: 30 - - uid: 11272 + - uid: 10593 components: - type: Transform - pos: 0.5,-44.5 + rot: -1.5707963267948966 rad + pos: -25.5,-50.5 parent: 30 - - uid: 11273 + - uid: 10680 components: - type: Transform - pos: 0.5,-43.5 + rot: 3.141592653589793 rad + pos: -10.5,-47.5 parent: 30 - - uid: 11274 + - uid: 10790 components: - type: Transform - pos: 0.5,-42.5 + pos: 2.5,-41.5 parent: 30 - - uid: 11285 + - uid: 10794 components: - type: Transform - pos: -19.5,-44.5 + pos: 3.5,-41.5 parent: 30 - - uid: 11286 + - uid: 11063 components: - type: Transform - pos: -15.5,-44.5 + rot: -1.5707963267948966 rad + pos: -24.5,-50.5 parent: 30 - - uid: 11287 + - uid: 11174 components: - type: Transform - pos: -15.5,-43.5 + rot: 3.141592653589793 rad + pos: -8.5,-47.5 parent: 30 - - uid: 11288 + - uid: 11247 components: - type: Transform - pos: -15.5,-42.5 + pos: -1.5,-32.5 parent: 30 - - uid: 11302 + - uid: 11249 components: - type: Transform - pos: 1.5,-44.5 + pos: -3.5,-32.5 parent: 30 - - uid: 11306 + - uid: 11250 components: - type: Transform - pos: -11.5,-35.5 + pos: -3.5,-33.5 parent: 30 - - uid: 11307 + - uid: 11336 components: - type: Transform - pos: -11.5,-34.5 + pos: -5.5,-35.5 parent: 30 - uid: 11473 components: @@ -119591,6 +117918,12 @@ entities: - type: Transform pos: 25.5,31.5 parent: 30 + - uid: 12657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 30 - uid: 12761 components: - type: Transform @@ -119601,10 +117934,23 @@ entities: - type: Transform pos: 24.5,10.5 parent: 30 - - uid: 12835 + - uid: 12836 components: - type: Transform - pos: 14.5,10.5 + rot: -1.5707963267948966 rad + pos: -17.5,5.5 + parent: 30 + - uid: 12838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 30 + - uid: 12839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,15.5 parent: 30 - uid: 12841 components: @@ -119667,6 +118013,16 @@ entities: - type: Transform pos: 15.5,60.5 parent: 30 + - uid: 14868 + components: + - type: Transform + pos: -22.5,-41.5 + parent: 30 + - uid: 14895 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 30 - uid: 15052 components: - type: Transform @@ -119697,6 +118053,12 @@ entities: - type: Transform pos: 47.5,44.5 parent: 30 + - uid: 15988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 30 - uid: 16117 components: - type: Transform @@ -119782,11 +118144,39 @@ entities: - type: Transform pos: -81.5,-61.5 parent: 30 + - uid: 18215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,13.5 + parent: 30 + - uid: 18770 + components: + - type: Transform + pos: 18.5,10.5 + parent: 30 + - uid: 18815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,13.5 + parent: 30 + - uid: 18996 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 30 - uid: 19068 components: - type: Transform pos: -51.5,-46.5 parent: 30 + - uid: 19178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-47.5 + parent: 30 - uid: 19399 components: - type: Transform @@ -119797,6 +118187,33 @@ entities: - type: Transform pos: -49.5,6.5 parent: 30 + - uid: 19402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-47.5 + parent: 30 + - uid: 19403 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 30 + - uid: 19404 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 30 + - uid: 19405 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 30 + - uid: 19409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-48.5 + parent: 30 - uid: 19528 components: - type: Transform @@ -119837,6 +118254,12 @@ entities: - type: Transform pos: -28.5,-43.5 parent: 30 + - uid: 19782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-26.5 + parent: 30 - uid: 20272 components: - type: Transform @@ -119937,12 +118360,6 @@ entities: - type: Transform pos: -49.5,50.5 parent: 30 - - uid: 22835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-57.5 - parent: 30 - proto: TableCarpet entities: - uid: 1535 @@ -120047,11 +118464,6 @@ entities: parent: 30 - proto: TableGlass entities: - - uid: 416 - components: - - type: Transform - pos: -25.5,11.5 - parent: 30 - uid: 907 components: - type: Transform @@ -120211,26 +118623,6 @@ entities: - type: Transform pos: 27.5,14.5 parent: 30 - - uid: 12830 - components: - - type: Transform - pos: 19.5,12.5 - parent: 30 - - uid: 12838 - components: - - type: Transform - pos: 16.5,12.5 - parent: 30 - - uid: 12839 - components: - - type: Transform - pos: 15.5,12.5 - parent: 30 - - uid: 12840 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - uid: 13088 components: - type: Transform @@ -120241,6 +118633,11 @@ entities: - type: Transform pos: -4.5,-10.5 parent: 30 + - uid: 16137 + components: + - type: Transform + pos: -28.5,11.5 + parent: 30 - uid: 20282 components: - type: Transform @@ -120555,30 +118952,30 @@ entities: - type: Transform pos: -27.5,43.5 parent: 30 - - uid: 9326 + - uid: 9059 components: - type: Transform - pos: -18.5,-35.5 + pos: 3.5,-46.5 parent: 30 - - uid: 9328 + - uid: 9658 components: - type: Transform - pos: -15.5,-34.5 + pos: -2.5,-45.5 parent: 30 - - uid: 9359 + - uid: 9660 components: - type: Transform - pos: -15.5,-35.5 + pos: 2.5,-46.5 parent: 30 - - uid: 9576 + - uid: 9674 components: - type: Transform - pos: -19.5,-35.5 + pos: 4.5,-46.5 parent: 30 - - uid: 9609 + - uid: 9682 components: - type: Transform - pos: -17.5,-35.5 + pos: -2.5,-46.5 parent: 30 - uid: 9803 components: @@ -120595,26 +118992,6 @@ entities: - type: Transform pos: -26.5,41.5 parent: 30 - - uid: 10002 - components: - - type: Transform - pos: -1.5,-45.5 - parent: 30 - - uid: 10003 - components: - - type: Transform - pos: -1.5,-44.5 - parent: 30 - - uid: 10004 - components: - - type: Transform - pos: -13.5,-45.5 - parent: 30 - - uid: 10005 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 30 - uid: 10246 components: - type: Transform @@ -120650,11 +119027,6 @@ entities: - type: Transform pos: 4.5,-27.5 parent: 30 - - uid: 12699 - components: - - type: Transform - pos: 14.5,13.5 - parent: 30 - uid: 12847 components: - type: Transform @@ -120974,6 +119346,11 @@ entities: - type: Transform pos: -30.5,51.5 parent: 30 + - uid: 3361 + components: + - type: Transform + pos: -58.5,-63.5 + parent: 30 - uid: 4956 components: - type: Transform @@ -121164,6 +119541,12 @@ entities: - type: Transform pos: -8.5,-20.5 parent: 30 + - uid: 10231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-65.5 + parent: 30 - uid: 11353 components: - type: Transform @@ -121194,11 +119577,36 @@ entities: - type: Transform pos: 2.5,-10.5 parent: 30 + - uid: 12635 + components: + - type: Transform + pos: -66.5,-64.5 + parent: 30 + - uid: 12818 + components: + - type: Transform + pos: -62.5,-64.5 + parent: 30 + - uid: 12830 + components: + - type: Transform + pos: -58.5,-65.5 + parent: 30 - uid: 13583 components: - type: Transform pos: 40.5,40.5 parent: 30 + - uid: 14447 + components: + - type: Transform + pos: -65.5,-64.5 + parent: 30 + - uid: 14505 + components: + - type: Transform + pos: -65.5,-63.5 + parent: 30 - uid: 15238 components: - type: Transform @@ -121309,30 +119717,10 @@ entities: - type: Transform pos: -53.5,-53.5 parent: 30 - - uid: 19417 - components: - - type: Transform - pos: -57.5,-67.5 - parent: 30 - - uid: 19418 - components: - - type: Transform - pos: -57.5,-65.5 - parent: 30 - - uid: 19419 - components: - - type: Transform - pos: -57.5,-63.5 - parent: 30 - - uid: 19420 - components: - - type: Transform - pos: -60.5,-67.5 - parent: 30 - - uid: 19421 + - uid: 18356 components: - type: Transform - pos: -60.5,-65.5 + pos: -69.5,-63.5 parent: 30 - uid: 19495 components: @@ -121394,16 +119782,6 @@ entities: - type: Transform pos: -27.5,15.5 parent: 30 - - uid: 22304 - components: - - type: Transform - pos: -54.5,-63.5 - parent: 30 - - uid: 22305 - components: - - type: Transform - pos: -60.5,-63.5 - parent: 30 - proto: TargetClown entities: - uid: 1228 @@ -121414,191 +119792,156 @@ entities: parent: 30 - proto: TegCenter entities: - - uid: 16040 + - uid: 9817 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-50.5 + pos: -0.5,-50.5 parent: 30 - proto: TegCirculator entities: - - uid: 15013 + - uid: 11286 components: - type: Transform - pos: -6.5,-50.5 + pos: 0.5,-50.5 parent: 30 - type: PointLight color: '#FF3300FF' - - uid: 16038 + - uid: 11292 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-50.5 + pos: -1.5,-50.5 parent: 30 - type: PointLight color: '#FF3300FF' -- proto: TelecomServer +- proto: TelecomServerFilledCargo entities: - - uid: 22621 + - uid: 10551 components: - type: Transform - pos: -37.5,-58.5 + pos: -10.5,-28.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22622 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22812 +- proto: TelecomServerFilledCommand + entities: + - uid: 9972 components: - type: Transform - pos: -35.5,-61.5 + pos: -10.5,-30.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22813 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22814 +- proto: TelecomServerFilledCommon + entities: + - uid: 9389 components: - type: Transform - pos: -37.5,-60.5 + pos: -12.5,-30.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22815 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22816 +- proto: TelecomServerFilledEngineering + entities: + - uid: 10550 components: - type: Transform - pos: -40.5,-61.5 + pos: -8.5,-30.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22817 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22822 +- proto: TelecomServerFilledMedical + entities: + - uid: 19181 components: - type: Transform - pos: -37.5,-57.5 + pos: -6.5,-28.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22823 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22825 +- proto: TelecomServerFilledScience + entities: + - uid: 19185 components: - type: Transform - pos: -37.5,-63.5 + pos: -8.5,-28.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22826 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22827 +- proto: TelecomServerFilledSecurity + entities: + - uid: 11161 components: - type: Transform - pos: -37.5,-62.5 + pos: -6.5,-30.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22828 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22829 +- proto: TelecomServerFilledService + entities: + - uid: 19179 components: - type: Transform - pos: -35.5,-59.5 + pos: -12.5,-28.5 + parent: 30 +- proto: TeslaCoil + entities: + - uid: 5732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-55.5 + parent: 30 + - uid: 6095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-56.5 + parent: 30 + - uid: 6271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-54.5 + parent: 30 + - uid: 6678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-56.5 + parent: 30 + - uid: 6679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-55.5 + parent: 30 + - uid: 13902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-54.5 + parent: 30 +- proto: TeslaGenerator + entities: + - uid: 19411 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 30 +- proto: TeslaGroundingRod + entities: + - uid: 10004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-54.5 + parent: 30 + - uid: 10140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-54.5 + parent: 30 + - uid: 11110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-54.5 + parent: 30 + - uid: 13952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-54.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22830 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - proto: TintedWindow entities: - uid: 289 @@ -121646,16 +119989,6 @@ entities: - type: Transform pos: -67.5,-41.5 parent: 30 - - uid: 17707 - components: - - type: Transform - pos: -69.5,-60.5 - parent: 30 - - uid: 17709 - components: - - type: Transform - pos: -69.5,-59.5 - parent: 30 - uid: 18697 components: - type: Transform @@ -121752,13 +120085,6 @@ entities: - type: Transform pos: -21.467775,23.567343 parent: 30 -- proto: ToolboxElectrical - entities: - - uid: 11308 - components: - - type: Transform - pos: -11.510529,-34.394146 - parent: 30 - proto: ToolboxElectricalFilled entities: - uid: 1628 @@ -121771,10 +120097,15 @@ entities: - type: Transform pos: -32.56638,31.48925 parent: 30 - - uid: 11313 + - uid: 19180 components: - type: Transform - pos: -24.449165,-39.212135 + pos: 3.3810787,-41.40624 + parent: 30 + - uid: 19374 + components: + - type: Transform + pos: -24.790539,-50.361137 parent: 30 - uid: 20299 components: @@ -121813,6 +120144,11 @@ entities: - type: Transform pos: -6.509716,45.635574 parent: 30 + - uid: 10003 + components: + - type: Transform + pos: -11.488707,-33.250866 + parent: 30 - uid: 11256 components: - type: Transform @@ -121847,10 +120183,10 @@ entities: - type: Transform pos: -24.487177,31.504875 parent: 30 - - uid: 11309 + - uid: 11271 components: - type: Transform - pos: -11.510529,-34.706646 + pos: -8.522053,-43.420155 parent: 30 - uid: 12823 components: @@ -121862,21 +120198,16 @@ entities: - type: Transform pos: -57.478386,27.672016 parent: 30 - - uid: 18793 + - uid: 18771 components: - type: Transform - pos: -67.52385,-62.454746 + pos: -53.3416,-62.69514 parent: 30 - uid: 20300 components: - type: Transform pos: 6.5231524,64.57765 parent: 30 - - uid: 22842 - components: - - type: Transform - pos: -29.484652,-57.340546 - parent: 30 - proto: ToyAi entities: - uid: 20307 @@ -121963,10 +120294,10 @@ entities: - type: Transform pos: -39.368607,18.074919 parent: 30 - - uid: 11269 + - uid: 13976 components: - type: Transform - pos: -17.424835,-30.14346 + pos: -10.716881,-47.33087 parent: 30 - uid: 22448 components: @@ -122102,63 +120433,49 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - - uid: 15987 + - uid: 18373 components: - type: Transform - pos: 50.5,23.5 + pos: 51.5,23.5 parent: 30 - type: DeviceLinkSource linkedPorts: - 14525: - - Middle: Off - - Right: Reverse + 12943: - Left: Forward - 14524: - - Middle: Off - Right: Reverse - - Left: Forward - 14523: - Middle: Off - - Right: Reverse + 12944: - Left: Forward - 14522: - - Middle: Off - Right: Reverse - - Left: Forward - - uid: 15988 - components: - - type: Transform - pos: 51.5,23.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 14526: - Middle: Off - - Right: Reverse + 12961: - Left: Forward - 14527: - - Middle: Off - Right: Reverse - - Left: Forward - 14528: - Middle: Off - - Right: Reverse + 12973: - Left: Forward - 14529: + - Right: Reverse - Middle: Off + 18374: + - Left: Forward - Right: Reverse + - Middle: Off + 12974: + - Left: Reverse + - Right: Forward + - Middle: Off + 12983: - Left: Forward - - uid: 15989 - components: - - type: Transform - pos: 53.5,23.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 14530: + - Right: Reverse - Middle: Off + 13034: + - Left: Forward - Right: Reverse + - Middle: Off + 13048: - Left: Forward + - Right: Reverse + - Middle: Off - proto: UnfinishedMachineFrame entities: - uid: 7826 @@ -122171,36 +120488,6 @@ entities: - type: Transform pos: -38.5,-18.5 parent: 30 - - uid: 10191 - components: - - type: Transform - pos: -24.5,-68.5 - parent: 30 - - uid: 10192 - components: - - type: Transform - pos: -25.5,-68.5 - parent: 30 - - uid: 10195 - components: - - type: Transform - pos: -23.5,-68.5 - parent: 30 - - uid: 10211 - components: - - type: Transform - pos: -24.5,-69.5 - parent: 30 - - uid: 10212 - components: - - type: Transform - pos: -23.5,-69.5 - parent: 30 - - uid: 10214 - components: - - type: Transform - pos: -25.5,-69.5 - parent: 30 - uid: 12797 components: - type: Transform @@ -122473,12 +120760,10 @@ entities: - type: Transform pos: -52.5,65.5 parent: 30 - - uid: 12811 + - uid: 17709 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 20.5,14.5 + pos: 20.5,16.5 parent: 30 - uid: 21318 components: @@ -122496,10 +120781,10 @@ entities: parent: 30 - proto: VendingMachineCuraDrobe entities: - - uid: 18842 + - uid: 18357 components: - type: Transform - pos: -59.5,-68.5 + pos: -68.5,-63.5 parent: 30 - proto: VendingMachineDetDrobe entities: @@ -122533,10 +120818,10 @@ entities: parent: 30 - proto: VendingMachineEngiDrobe entities: - - uid: 9432 + - uid: 19406 components: - type: Transform - pos: -25.5,-39.5 + pos: -21.5,-46.5 parent: 30 - proto: VendingMachineEngivend entities: @@ -122623,10 +120908,10 @@ entities: parent: 30 - proto: VendingMachineNutri entities: - - uid: 414 + - uid: 16135 components: - type: Transform - pos: -25.5,9.5 + pos: -28.5,9.5 parent: 30 - proto: VendingMachineRoboDrobe entities: @@ -122653,10 +120938,10 @@ entities: parent: 30 - proto: VendingMachineSciDrobe entities: - - uid: 12842 + - uid: 18761 components: - type: Transform - pos: 17.5,12.5 + pos: 16.5,10.5 parent: 30 - proto: VendingMachineSec entities: @@ -122674,10 +120959,10 @@ entities: parent: 30 - proto: VendingMachineSeeds entities: - - uid: 413 + - uid: 16136 components: - type: Transform - pos: -25.5,10.5 + pos: -28.5,13.5 parent: 30 - proto: VendingMachineSeedsUnlocked entities: @@ -122745,6 +121030,11 @@ entities: - type: Transform pos: 7.5,-27.5 parent: 30 + - uid: 13970 + components: + - type: Transform + pos: -15.5,-44.5 + parent: 30 - proto: VendingMachineTheater entities: - uid: 654 @@ -123013,6 +121303,51 @@ entities: - type: Transform pos: -4.5,24.5 parent: 30 + - uid: 403 + components: + - type: Transform + pos: -51.5,-66.5 + parent: 30 + - uid: 413 + components: + - type: Transform + pos: -51.5,-62.5 + parent: 30 + - uid: 414 + components: + - type: Transform + pos: -51.5,-63.5 + parent: 30 + - uid: 415 + components: + - type: Transform + pos: -56.5,-66.5 + parent: 30 + - uid: 416 + components: + - type: Transform + pos: -55.5,-66.5 + parent: 30 + - uid: 434 + components: + - type: Transform + pos: -57.5,-66.5 + parent: 30 + - uid: 435 + components: + - type: Transform + pos: -54.5,-66.5 + parent: 30 + - uid: 490 + components: + - type: Transform + pos: -51.5,-61.5 + parent: 30 + - uid: 494 + components: + - type: Transform + pos: -53.5,-66.5 + parent: 30 - uid: 570 components: - type: Transform @@ -123118,11 +121453,6 @@ entities: - type: Transform pos: -50.5,11.5 parent: 30 - - uid: 868 - components: - - type: Transform - pos: -59.5,-10.5 - parent: 30 - uid: 882 components: - type: Transform @@ -123168,6 +121498,11 @@ entities: - type: Transform pos: -45.5,9.5 parent: 30 + - uid: 961 + components: + - type: Transform + pos: -51.5,-60.5 + parent: 30 - uid: 992 components: - type: Transform @@ -123223,11 +121558,6 @@ entities: - type: Transform pos: -61.5,-10.5 parent: 30 - - uid: 1083 - components: - - type: Transform - pos: -52.5,-10.5 - parent: 30 - uid: 1140 components: - type: Transform @@ -123424,12 +121754,6 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,34.5 parent: 30 - - uid: 1475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,35.5 - parent: 30 - uid: 1477 components: - type: Transform @@ -124068,6 +122392,11 @@ entities: - type: Transform pos: -42.5,58.5 parent: 30 + - uid: 1952 + components: + - type: Transform + pos: -51.5,-65.5 + parent: 30 - uid: 2034 components: - type: Transform @@ -124113,6 +122442,11 @@ entities: - type: Transform pos: -42.5,61.5 parent: 30 + - uid: 2088 + components: + - type: Transform + pos: -51.5,-64.5 + parent: 30 - uid: 2102 components: - type: Transform @@ -124463,6 +122797,12 @@ entities: - type: Transform pos: -51.5,6.5 parent: 30 + - uid: 3153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 30 - uid: 3200 components: - type: Transform @@ -125354,11 +123694,23 @@ entities: - type: Transform pos: -13.5,45.5 parent: 30 + - uid: 6272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-57.5 + parent: 30 - uid: 6273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-57.5 + rot: 3.141592653589793 rad + pos: -25.5,-57.5 + parent: 30 + - uid: 6274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-58.5 parent: 30 - uid: 6294 components: @@ -125540,6 +123892,18 @@ entities: - type: Transform pos: 15.5,47.5 parent: 30 + - uid: 6466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-60.5 + parent: 30 + - uid: 6468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-54.5 + parent: 30 - uid: 6486 components: - type: Transform @@ -125680,17 +124044,29 @@ entities: - type: Transform pos: 28.5,44.5 parent: 30 + - uid: 6600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-55.5 + parent: 30 + - uid: 6601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-54.5 + parent: 30 - uid: 6602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-60.5 + rot: -1.5707963267948966 rad + pos: -21.5,-57.5 parent: 30 - uid: 6603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-56.5 + rot: -1.5707963267948966 rad + pos: -24.5,-56.5 parent: 30 - uid: 6607 components: @@ -125727,6 +124103,12 @@ entities: - type: Transform pos: -4.5,-5.5 parent: 30 + - uid: 6639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-57.5 + parent: 30 - uid: 6647 components: - type: Transform @@ -125812,6 +124194,36 @@ entities: - type: Transform pos: -10.5,-11.5 parent: 30 + - uid: 6670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-61.5 + parent: 30 + - uid: 6684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-56.5 + parent: 30 + - uid: 6699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-54.5 + parent: 30 + - uid: 6711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-57.5 + parent: 30 + - uid: 6714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-53.5 + parent: 30 - uid: 6735 components: - type: Transform @@ -125877,6 +124289,12 @@ entities: - type: Transform pos: -43.5,-22.5 parent: 30 + - uid: 7094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-62.5 + parent: 30 - uid: 7127 components: - type: Transform @@ -125887,18 +124305,6 @@ entities: - type: Transform pos: -3.5,18.5 parent: 30 - - uid: 7219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-59.5 - parent: 30 - - uid: 7220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-59.5 - parent: 30 - uid: 7242 components: - type: Transform @@ -125929,6 +124335,42 @@ entities: - type: Transform pos: -31.5,-22.5 parent: 30 + - uid: 7444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-76.5 + parent: 30 + - uid: 7667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-76.5 + parent: 30 + - uid: 7669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-76.5 + parent: 30 + - uid: 7670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-67.5 + parent: 30 + - uid: 7671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-68.5 + parent: 30 + - uid: 7672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-69.5 + parent: 30 - uid: 7713 components: - type: Transform @@ -125982,6 +124424,18 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 30 + - uid: 7770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-71.5 + parent: 30 + - uid: 7771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-72.5 + parent: 30 - uid: 7772 components: - type: Transform @@ -125993,21 +124447,104 @@ entities: - type: Transform pos: -35.5,-27.5 parent: 30 + - uid: 7914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-73.5 + parent: 30 - uid: 7959 components: - type: Transform pos: -34.5,-14.5 parent: 30 + - uid: 7965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-74.5 + parent: 30 - uid: 7969 components: - type: Transform pos: -35.5,-14.5 parent: 30 + - uid: 8004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-75.5 + parent: 30 + - uid: 8005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-76.5 + parent: 30 - uid: 8025 components: - type: Transform pos: -35.5,-26.5 parent: 30 + - uid: 8137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-76.5 + parent: 30 + - uid: 8225 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 30 + - uid: 8226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-64.5 + parent: 30 + - uid: 8228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-63.5 + parent: 30 + - uid: 8230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-65.5 + parent: 30 + - uid: 8231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-28.5 + parent: 30 + - uid: 8255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-76.5 + parent: 30 + - uid: 8258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-76.5 + parent: 30 + - uid: 8260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-76.5 + parent: 30 + - uid: 8263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-76.5 + parent: 30 - uid: 8272 components: - type: Transform @@ -126626,33 +125163,33 @@ entities: - type: Transform pos: 25.5,-35.5 parent: 30 - - uid: 8816 + - uid: 8794 components: - type: Transform - pos: -42.5,-22.5 + rot: 3.141592653589793 rad + pos: -26.5,-66.5 parent: 30 - - uid: 8817 + - uid: 8795 components: - type: Transform - pos: -41.5,-22.5 + rot: 3.141592653589793 rad + pos: -23.5,-76.5 parent: 30 - - uid: 8823 + - uid: 8799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-61.5 + rot: 3.141592653589793 rad + pos: -26.5,-59.5 parent: 30 - - uid: 8824 + - uid: 8816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-61.5 + pos: -42.5,-22.5 parent: 30 - - uid: 8825 + - uid: 8817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-61.5 + pos: -41.5,-22.5 parent: 30 - uid: 8826 components: @@ -126716,6 +125253,30 @@ entities: - type: Transform pos: 18.5,-12.5 parent: 30 + - uid: 9102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-57.5 + parent: 30 + - uid: 9103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-58.5 + parent: 30 + - uid: 9104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-52.5 + parent: 30 + - uid: 9129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-58.5 + parent: 30 - uid: 9132 components: - type: Transform @@ -126870,6 +125431,18 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-26.5 parent: 30 + - uid: 9234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-53.5 + parent: 30 + - uid: 9244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-54.5 + parent: 30 - uid: 9255 components: - type: Transform @@ -126935,10 +125508,17 @@ entities: - type: Transform pos: -4.5,-32.5 parent: 30 - - uid: 9294 + - uid: 9288 components: - type: Transform - pos: 4.5,-43.5 + rot: 1.5707963267948966 rad + pos: 5.5,-58.5 + parent: 30 + - uid: 9289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-58.5 parent: 30 - uid: 9296 components: @@ -126950,11 +125530,6 @@ entities: - type: Transform pos: 4.5,-39.5 parent: 30 - - uid: 9320 - components: - - type: Transform - pos: -5.5,-37.5 - parent: 30 - uid: 9325 components: - type: Transform @@ -127010,6 +125585,12 @@ entities: - type: Transform pos: -20.5,-32.5 parent: 30 + - uid: 9339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-45.5 + parent: 30 - uid: 9340 components: - type: Transform @@ -127085,30 +125666,17 @@ entities: - type: Transform pos: -16.5,-33.5 parent: 30 - - uid: 9364 - components: - - type: Transform - pos: -9.5,-37.5 - parent: 30 - - uid: 9366 - components: - - type: Transform - pos: -20.5,-38.5 - parent: 30 - - uid: 9371 - components: - - type: Transform - pos: -20.5,-45.5 - parent: 30 - - uid: 9372 + - uid: 9367 components: - type: Transform - pos: -21.5,-45.5 + rot: 1.5707963267948966 rad + pos: 4.5,-54.5 parent: 30 - - uid: 9373 + - uid: 9368 components: - type: Transform - pos: -22.5,-45.5 + rot: 1.5707963267948966 rad + pos: -1.5,-54.5 parent: 30 - uid: 9374 components: @@ -127170,11 +125738,6 @@ entities: - type: Transform pos: -26.5,-45.5 parent: 30 - - uid: 9387 - components: - - type: Transform - pos: -25.5,-45.5 - parent: 30 - uid: 9388 components: - type: Transform @@ -127210,45 +125773,17 @@ entities: - type: Transform pos: -24.5,-51.5 parent: 30 - - uid: 9396 - components: - - type: Transform - pos: -23.5,-51.5 - parent: 30 - - uid: 9397 - components: - - type: Transform - pos: -22.5,-51.5 - parent: 30 - - uid: 9398 - components: - - type: Transform - pos: -21.5,-51.5 - parent: 30 - - uid: 9399 - components: - - type: Transform - pos: -21.5,-50.5 - parent: 30 - - uid: 9400 - components: - - type: Transform - pos: -21.5,-49.5 - parent: 30 - - uid: 9401 - components: - - type: Transform - pos: -21.5,-48.5 - parent: 30 - uid: 9402 components: - type: Transform - pos: -21.5,-47.5 + rot: 3.141592653589793 rad + pos: -12.5,-57.5 parent: 30 - - uid: 9403 + - uid: 9413 components: - type: Transform - pos: -21.5,-46.5 + rot: -1.5707963267948966 rad + pos: -10.5,-33.5 parent: 30 - uid: 9423 components: @@ -127320,11 +125855,6 @@ entities: - type: Transform pos: -17.5,-27.5 parent: 30 - - uid: 9469 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 30 - uid: 9470 components: - type: Transform @@ -127345,394 +125875,421 @@ entities: - type: Transform pos: -18.5,-31.5 parent: 30 - - uid: 9582 - components: - - type: Transform - pos: -15.5,-33.5 - parent: 30 - - uid: 9583 - components: - - type: Transform - pos: -15.5,-37.5 - parent: 30 - - uid: 9584 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 30 - - uid: 9599 + - uid: 9487 components: - type: Transform - pos: -17.5,-33.5 + rot: -1.5707963267948966 rad + pos: -10.5,-53.5 parent: 30 - - uid: 9600 + - uid: 9507 components: - type: Transform - pos: -18.5,-33.5 + rot: 1.5707963267948966 rad + pos: 0.5,-55.5 parent: 30 - - uid: 9663 + - uid: 9508 components: - type: Transform - pos: -10.5,-5.5 + rot: 1.5707963267948966 rad + pos: -1.5,-55.5 parent: 30 - - uid: 9674 + - uid: 9509 components: - type: Transform - pos: 2.5,-47.5 + rot: 1.5707963267948966 rad + pos: 0.5,-54.5 parent: 30 - - uid: 9680 + - uid: 9510 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-56.5 + pos: -1.5,-57.5 parent: 30 - - uid: 9681 + - uid: 9511 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-57.5 + pos: -0.5,-57.5 parent: 30 - - uid: 9691 + - uid: 9513 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-59.5 + pos: 0.5,-57.5 parent: 30 - - uid: 9714 + - uid: 9514 components: - type: Transform - pos: -32.5,-14.5 + rot: 1.5707963267948966 rad + pos: 5.5,-55.5 parent: 30 - - uid: 9715 + - uid: 9515 components: - type: Transform - pos: -39.5,-22.5 + rot: 3.141592653589793 rad + pos: 5.5,-43.5 parent: 30 - - uid: 9855 + - uid: 9516 components: - type: Transform - pos: -31.5,-14.5 + rot: 3.141592653589793 rad + pos: -10.5,-76.5 parent: 30 - - uid: 9903 + - uid: 9517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-55.5 + rot: 3.141592653589793 rad + pos: -11.5,-76.5 parent: 30 - - uid: 9904 + - uid: 9528 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-55.5 + pos: -9.5,-53.5 parent: 30 - - uid: 9906 + - uid: 9582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-45.5 + pos: -15.5,-33.5 parent: 30 - - uid: 9907 + - uid: 9599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-45.5 + pos: -17.5,-33.5 parent: 30 - - uid: 9908 + - uid: 9600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-51.5 + pos: -18.5,-33.5 parent: 30 - - uid: 9923 + - uid: 9601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-47.5 + rot: 3.141592653589793 rad + pos: -14.5,-76.5 parent: 30 - - uid: 9924 + - uid: 9602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-46.5 + rot: 3.141592653589793 rad + pos: -13.5,-76.5 parent: 30 - - uid: 9925 + - uid: 9603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-45.5 + rot: 3.141592653589793 rad + pos: -12.5,-76.5 parent: 30 - - uid: 9927 + - uid: 9604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-45.5 + rot: 3.141592653589793 rad + pos: -8.5,-76.5 parent: 30 - - uid: 9959 + - uid: 9605 components: - type: Transform - pos: -0.5,-44.5 + rot: 3.141592653589793 rad + pos: -8.5,-61.5 parent: 30 - - uid: 9961 + - uid: 9606 components: - type: Transform - pos: -0.5,-42.5 + pos: -7.5,-71.5 parent: 30 - - uid: 9962 + - uid: 9607 components: - type: Transform - pos: -1.5,-42.5 + rot: 3.141592653589793 rad + pos: -9.5,-76.5 parent: 30 - - uid: 9963 + - uid: 9609 components: - type: Transform - pos: -2.5,-42.5 + rot: 3.141592653589793 rad + pos: -8.5,-74.5 parent: 30 - - uid: 9964 + - uid: 9641 components: - type: Transform - pos: -3.5,-42.5 + rot: 1.5707963267948966 rad + pos: 5.5,-56.5 parent: 30 - - uid: 9966 + - uid: 9642 components: - type: Transform - pos: -5.5,-42.5 + rot: 1.5707963267948966 rad + pos: 0.5,-58.5 parent: 30 - - uid: 9970 + - uid: 9643 components: - type: Transform - pos: -9.5,-42.5 + rot: 1.5707963267948966 rad + pos: 4.5,-58.5 parent: 30 - - uid: 9972 + - uid: 9663 components: - type: Transform - pos: -11.5,-42.5 + pos: -10.5,-5.5 parent: 30 - - uid: 9973 + - uid: 9692 components: - type: Transform - pos: -12.5,-42.5 + rot: 3.141592653589793 rad + pos: 5.5,-45.5 parent: 30 - - uid: 9974 + - uid: 9693 components: - type: Transform - pos: -13.5,-42.5 + rot: 3.141592653589793 rad + pos: 5.5,-46.5 parent: 30 - - uid: 9975 + - uid: 9714 components: - type: Transform - pos: -14.5,-42.5 + pos: -32.5,-14.5 parent: 30 - - uid: 9977 + - uid: 9715 components: - type: Transform - pos: -14.5,-44.5 + pos: -39.5,-22.5 parent: 30 - - uid: 9978 + - uid: 9798 components: - type: Transform - pos: -14.5,-45.5 + rot: 3.141592653589793 rad + pos: -53.5,34.5 parent: 30 - - uid: 9985 + - uid: 9822 components: - type: Transform - pos: -14.5,-52.5 + rot: 3.141592653589793 rad + pos: 5.5,-42.5 parent: 30 - - uid: 9986 + - uid: 9855 components: - type: Transform - pos: -14.5,-53.5 + pos: -31.5,-14.5 parent: 30 - - uid: 9987 + - uid: 9863 components: - type: Transform - pos: -14.5,-54.5 + rot: -1.5707963267948966 rad + pos: -6.5,-53.5 parent: 30 - - uid: 9988 + - uid: 9877 components: - type: Transform - pos: -14.5,-55.5 + rot: -1.5707963267948966 rad + pos: -12.5,-53.5 parent: 30 - - uid: 10019 + - uid: 9878 components: - type: Transform - pos: -14.5,-56.5 + rot: -1.5707963267948966 rad + pos: -11.5,-53.5 parent: 30 - - uid: 10020 + - uid: 9881 components: - type: Transform - pos: -13.5,-56.5 + pos: -27.5,-63.5 parent: 30 - - uid: 10021 + - uid: 9991 components: - type: Transform - pos: -0.5,-56.5 + rot: 3.141592653589793 rad + pos: -7.5,-57.5 parent: 30 - - uid: 10022 + - uid: 10002 components: - type: Transform - pos: -1.5,-56.5 + rot: 3.141592653589793 rad + pos: -8.5,-57.5 parent: 30 - - uid: 10042 + - uid: 10012 components: - type: Transform - pos: -13.5,-60.5 + rot: 3.141592653589793 rad + pos: -8.5,-70.5 parent: 30 - - uid: 10043 + - uid: 10013 components: - type: Transform - pos: -12.5,-60.5 + rot: 3.141592653589793 rad + pos: -8.5,-73.5 parent: 30 - - uid: 10044 + - uid: 10014 components: - type: Transform - pos: -11.5,-60.5 + rot: 3.141592653589793 rad + pos: -8.5,-69.5 parent: 30 - - uid: 10045 + - uid: 10050 components: - type: Transform - pos: -11.5,-61.5 + rot: -1.5707963267948966 rad + pos: -13.5,-56.5 parent: 30 - - uid: 10049 + - uid: 10051 components: - type: Transform - pos: -1.5,-60.5 + rot: -1.5707963267948966 rad + pos: -13.5,-57.5 parent: 30 - - uid: 10050 + - uid: 10052 components: - type: Transform - pos: -2.5,-60.5 + rot: -1.5707963267948966 rad + pos: -13.5,-54.5 parent: 30 - - uid: 10051 + - uid: 10092 components: - type: Transform - pos: -3.5,-60.5 + rot: 3.141592653589793 rad + pos: -8.5,-62.5 parent: 30 - - uid: 10052 + - uid: 10096 components: - type: Transform - pos: -3.5,-61.5 + rot: -1.5707963267948966 rad + pos: -8.5,-53.5 parent: 30 - - uid: 10053 + - uid: 10097 components: - type: Transform - pos: -4.5,-61.5 + rot: -1.5707963267948966 rad + pos: -7.5,-53.5 parent: 30 - - uid: 10054 + - uid: 10112 components: - type: Transform - pos: -5.5,-61.5 + pos: -13.5,-77.5 parent: 30 - - uid: 10058 + - uid: 10113 components: - type: Transform - pos: -9.5,-61.5 + rot: 3.141592653589793 rad + pos: -8.5,-60.5 parent: 30 - - uid: 10059 + - uid: 10114 components: - type: Transform - pos: -10.5,-61.5 + pos: -27.5,-71.5 parent: 30 - - uid: 10112 + - uid: 10115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-45.5 + rot: 3.141592653589793 rad + pos: -8.5,-67.5 parent: 30 - - uid: 10113 + - uid: 10116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-45.5 + rot: 3.141592653589793 rad + pos: -8.5,-65.5 parent: 30 - uid: 10117 components: - type: Transform - pos: -19.5,-52.5 + rot: 3.141592653589793 rad + pos: -8.5,-71.5 parent: 30 - uid: 10118 components: - type: Transform - pos: -19.5,-51.5 + rot: 3.141592653589793 rad + pos: -8.5,-63.5 parent: 30 - uid: 10119 components: - type: Transform - pos: -19.5,-50.5 + rot: 3.141592653589793 rad + pos: -8.5,-66.5 parent: 30 - - uid: 10120 + - uid: 10121 components: - type: Transform - pos: -19.5,-49.5 + rot: 3.141592653589793 rad + pos: -8.5,-59.5 parent: 30 - - uid: 10121 + - uid: 10122 components: - type: Transform - pos: -19.5,-48.5 + rot: 3.141592653589793 rad + pos: -8.5,-58.5 parent: 30 - - uid: 10122 + - uid: 10134 components: - type: Transform - pos: -19.5,-47.5 + rot: 1.5707963267948966 rad + pos: 7.5,-43.5 parent: 30 - - uid: 10123 + - uid: 10208 components: - type: Transform - pos: -19.5,-46.5 + pos: -60.5,-10.5 parent: 30 - - uid: 10124 + - uid: 10223 components: - type: Transform - pos: -15.5,-46.5 + pos: -61.5,-7.5 parent: 30 - - uid: 10125 + - uid: 10226 components: - type: Transform - pos: -15.5,-47.5 + pos: -58.5,-10.5 parent: 30 - - uid: 10126 + - uid: 10558 components: - type: Transform - pos: -15.5,-48.5 + rot: 3.141592653589793 rad + pos: 7.5,-44.5 parent: 30 - - uid: 10127 + - uid: 10640 components: - type: Transform - pos: -15.5,-49.5 + rot: 3.141592653589793 rad + pos: 6.5,-43.5 parent: 30 - - uid: 10128 + - uid: 10648 components: - type: Transform - pos: -15.5,-50.5 + pos: -15.5,-38.5 parent: 30 - - uid: 10129 + - uid: 10651 components: - type: Transform - pos: -15.5,-51.5 + rot: 3.141592653589793 rad + pos: -8.5,-75.5 parent: 30 - - uid: 10130 + - uid: 10676 components: - type: Transform - pos: -15.5,-52.5 + rot: 3.141592653589793 rad + pos: -9.5,-57.5 parent: 30 - - uid: 10208 + - uid: 10678 components: - type: Transform - pos: -60.5,-10.5 + rot: 3.141592653589793 rad + pos: -10.5,-57.5 parent: 30 - - uid: 10223 + - uid: 10726 components: - type: Transform - pos: -61.5,-7.5 + rot: -1.5707963267948966 rad + pos: -6.5,-55.5 parent: 30 - - uid: 10226 + - uid: 10727 components: - type: Transform - pos: -58.5,-10.5 + rot: -1.5707963267948966 rad + pos: -6.5,-54.5 parent: 30 - - uid: 10268 + - uid: 10768 components: - type: Transform - pos: -32.5,-64.5 + pos: -19.5,-38.5 parent: 30 - uid: 10944 components: @@ -127754,16 +126311,67 @@ entities: - type: Transform pos: 25.5,-21.5 parent: 30 - - uid: 11164 + - uid: 11019 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 30 + - uid: 11039 + components: + - type: Transform + pos: -21.5,-77.5 + parent: 30 + - uid: 11057 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 30 + - uid: 11067 components: - type: Transform - pos: -33.5,-64.5 + rot: 3.141592653589793 rad + pos: 5.5,-47.5 + parent: 30 + - uid: 11107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-56.5 + parent: 30 + - uid: 11123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-54.5 + parent: 30 + - uid: 11126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-54.5 + parent: 30 + - uid: 11127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-53.5 + parent: 30 + - uid: 11144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-51.5 parent: 30 - uid: 11195 components: - type: Transform pos: 29.5,-12.5 parent: 30 + - uid: 11260 + components: + - type: Transform + pos: -71.5,-64.5 + parent: 30 - uid: 11371 components: - type: Transform @@ -127794,10 +126402,20 @@ entities: - type: Transform pos: -29.5,-48.5 parent: 30 - - uid: 11588 + - uid: 11460 + components: + - type: Transform + pos: -57.5,-67.5 + parent: 30 + - uid: 11465 components: - type: Transform - pos: -34.5,-64.5 + pos: -58.5,-67.5 + parent: 30 + - uid: 11585 + components: + - type: Transform + pos: -61.5,-67.5 parent: 30 - uid: 11590 components: @@ -127980,11 +126598,6 @@ entities: - type: Transform pos: 23.5,-12.5 parent: 30 - - uid: 12213 - components: - - type: Transform - pos: -35.5,-64.5 - parent: 30 - uid: 12244 components: - type: Transform @@ -128040,6 +126653,11 @@ entities: - type: Transform pos: 12.5,13.5 parent: 30 + - uid: 12629 + components: + - type: Transform + pos: -60.5,-67.5 + parent: 30 - uid: 12630 components: - type: Transform @@ -128065,41 +126683,6 @@ entities: - type: Transform pos: 17.5,9.5 parent: 30 - - uid: 12635 - components: - - type: Transform - pos: 16.5,14.5 - parent: 30 - - uid: 12636 - components: - - type: Transform - pos: 16.5,16.5 - parent: 30 - - uid: 12637 - components: - - type: Transform - pos: 16.5,13.5 - parent: 30 - - uid: 12638 - components: - - type: Transform - pos: 17.5,13.5 - parent: 30 - - uid: 12639 - components: - - type: Transform - pos: 18.5,13.5 - parent: 30 - - uid: 12640 - components: - - type: Transform - pos: 19.5,13.5 - parent: 30 - - uid: 12641 - components: - - type: Transform - pos: 19.5,14.5 - parent: 30 - uid: 12642 components: - type: Transform @@ -128140,6 +126723,12 @@ entities: - type: Transform pos: 24.5,13.5 parent: 30 + - uid: 12663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-52.5 + parent: 30 - uid: 12670 components: - type: Transform @@ -129056,6 +127645,12 @@ entities: - type: Transform pos: 48.5,18.5 parent: 30 + - uid: 13643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-57.5 + parent: 30 - uid: 13647 components: - type: Transform @@ -129131,11 +127726,50 @@ entities: - type: Transform pos: 10.5,58.5 parent: 30 + - uid: 13901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-53.5 + parent: 30 + - uid: 14334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 30 + - uid: 14506 + components: + - type: Transform + pos: -68.5,-64.5 + parent: 30 + - uid: 14507 + components: + - type: Transform + pos: -69.5,-64.5 + parent: 30 + - uid: 14508 + components: + - type: Transform + pos: -70.5,-64.5 + parent: 30 + - uid: 14538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-51.5 + parent: 30 - uid: 14539 components: - type: Transform pos: 32.5,-12.5 parent: 30 + - uid: 14590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-51.5 + parent: 30 - uid: 14646 components: - type: Transform @@ -129339,6 +127973,12 @@ entities: - type: Transform pos: 46.5,15.5 parent: 30 + - uid: 16040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-42.5 + parent: 30 - uid: 16104 components: - type: Transform @@ -129483,6 +128123,11 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,37.5 parent: 30 + - uid: 16777 + components: + - type: Transform + pos: -67.5,-66.5 + parent: 30 - uid: 16784 components: - type: Transform @@ -129543,6 +128188,16 @@ entities: - type: Transform pos: -61.5,41.5 parent: 30 + - uid: 16995 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 30 + - uid: 16996 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 30 - uid: 17016 components: - type: Transform @@ -129768,16 +128423,6 @@ entities: - type: Transform pos: -84.5,-43.5 parent: 30 - - uid: 17526 - components: - - type: Transform - pos: -85.5,-44.5 - parent: 30 - - uid: 17527 - components: - - type: Transform - pos: -85.5,-46.5 - parent: 30 - uid: 17528 components: - type: Transform @@ -129936,23 +128581,21 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-59.5 parent: 30 - - uid: 17714 + - uid: 17728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-60.5 + rot: 3.141592653589793 rad + pos: 15.5,13.5 parent: 30 - - uid: 17715 + - uid: 17775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-60.5 + pos: -68.5,-66.5 parent: 30 - - uid: 17717 + - uid: 17776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-60.5 + pos: -68.5,-65.5 parent: 30 - uid: 17804 components: @@ -130042,20 +128685,11 @@ entities: - type: Transform pos: -35.5,-36.5 parent: 30 - - uid: 18079 - components: - - type: Transform - pos: -53.5,-68.5 - parent: 30 - uid: 18081 components: - type: Transform - pos: -54.5,-68.5 - parent: 30 - - uid: 18085 - components: - - type: Transform - pos: -57.5,-69.5 + rot: 3.141592653589793 rad + pos: 16.5,13.5 parent: 30 - uid: 18103 components: @@ -130167,10 +128801,37 @@ entities: - type: Transform pos: -81.5,-57.5 parent: 30 - - uid: 18184 + - uid: 18186 components: - type: Transform - pos: -60.5,-69.5 + pos: -61.5,-66.5 + parent: 30 + - uid: 18187 + components: + - type: Transform + pos: -66.5,-66.5 + parent: 30 + - uid: 18205 + components: + - type: Transform + pos: -59.5,-67.5 + parent: 30 + - uid: 18765 + components: + - type: Transform + pos: -52.5,-66.5 + parent: 30 + - uid: 18775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-66.5 + parent: 30 + - uid: 18860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-51.5 parent: 30 - uid: 18925 components: @@ -130182,10 +128843,15 @@ entities: - type: Transform pos: -43.5,-24.5 parent: 30 - - uid: 19765 + - uid: 19784 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 30 + - uid: 19794 components: - type: Transform - pos: -36.5,-64.5 + pos: -10.5,-37.5 parent: 30 - uid: 19854 components: @@ -131052,21 +129718,6 @@ entities: - type: Transform pos: -2.5,84.5 parent: 30 - - uid: 20343 - components: - - type: Transform - pos: -37.5,-64.5 - parent: 30 - - uid: 20396 - components: - - type: Transform - pos: -38.5,-64.5 - parent: 30 - - uid: 20397 - components: - - type: Transform - pos: -39.5,-64.5 - parent: 30 - uid: 20442 components: - type: Transform @@ -131242,11 +129893,6 @@ entities: - type: Transform pos: -27.5,-48.5 parent: 30 - - uid: 21469 - components: - - type: Transform - pos: -40.5,-64.5 - parent: 30 - uid: 21592 components: - type: Transform @@ -131257,291 +129903,6 @@ entities: - type: Transform pos: -40.5,-28.5 parent: 30 - - uid: 22438 - components: - - type: Transform - pos: -41.5,-64.5 - parent: 30 - - uid: 22550 - components: - - type: Transform - pos: -42.5,-64.5 - parent: 30 - - uid: 22551 - components: - - type: Transform - pos: -42.5,-63.5 - parent: 30 - - uid: 22552 - components: - - type: Transform - pos: -42.5,-62.5 - parent: 30 - - uid: 22553 - components: - - type: Transform - pos: -42.5,-61.5 - parent: 30 - - uid: 22554 - components: - - type: Transform - pos: -42.5,-60.5 - parent: 30 - - uid: 22555 - components: - - type: Transform - pos: -42.5,-59.5 - parent: 30 - - uid: 22556 - components: - - type: Transform - pos: -42.5,-58.5 - parent: 30 - - uid: 22557 - components: - - type: Transform - pos: -42.5,-57.5 - parent: 30 - - uid: 22558 - components: - - type: Transform - pos: -42.5,-56.5 - parent: 30 - - uid: 22559 - components: - - type: Transform - pos: -41.5,-56.5 - parent: 30 - - uid: 22560 - components: - - type: Transform - pos: -40.5,-56.5 - parent: 30 - - uid: 22561 - components: - - type: Transform - pos: -39.5,-56.5 - parent: 30 - - uid: 22562 - components: - - type: Transform - pos: -38.5,-56.5 - parent: 30 - - uid: 22563 - components: - - type: Transform - pos: -37.5,-56.5 - parent: 30 - - uid: 22564 - components: - - type: Transform - pos: -36.5,-56.5 - parent: 30 - - uid: 22565 - components: - - type: Transform - pos: -35.5,-56.5 - parent: 30 - - uid: 22566 - components: - - type: Transform - pos: -34.5,-56.5 - parent: 30 - - uid: 22567 - components: - - type: Transform - pos: -33.5,-56.5 - parent: 30 - - uid: 22568 - components: - - type: Transform - pos: -32.5,-56.5 - parent: 30 - - uid: 22569 - components: - - type: Transform - pos: -24.5,-59.5 - parent: 30 - - uid: 22570 - components: - - type: Transform - pos: -24.5,-60.5 - parent: 30 - - uid: 22571 - components: - - type: Transform - pos: -24.5,-61.5 - parent: 30 - - uid: 22572 - components: - - type: Transform - pos: -24.5,-62.5 - parent: 30 - - uid: 22573 - components: - - type: Transform - pos: -24.5,-63.5 - parent: 30 - - uid: 22574 - components: - - type: Transform - pos: -24.5,-64.5 - parent: 30 - - uid: 22575 - components: - - type: Transform - pos: -25.5,-64.5 - parent: 30 - - uid: 22576 - components: - - type: Transform - pos: -26.5,-64.5 - parent: 30 - - uid: 22577 - components: - - type: Transform - pos: -27.5,-64.5 - parent: 30 - - uid: 22578 - components: - - type: Transform - pos: -28.5,-64.5 - parent: 30 - - uid: 22579 - components: - - type: Transform - pos: -29.5,-64.5 - parent: 30 - - uid: 22580 - components: - - type: Transform - pos: -30.5,-64.5 - parent: 30 - - uid: 22581 - components: - - type: Transform - pos: -31.5,-64.5 - parent: 30 - - uid: 22582 - components: - - type: Transform - pos: -31.5,-56.5 - parent: 30 - - uid: 22583 - components: - - type: Transform - pos: -30.5,-56.5 - parent: 30 - - uid: 22584 - components: - - type: Transform - pos: -29.5,-56.5 - parent: 30 - - uid: 22585 - components: - - type: Transform - pos: -28.5,-56.5 - parent: 30 - - uid: 22586 - components: - - type: Transform - pos: -27.5,-56.5 - parent: 30 - - uid: 22587 - components: - - type: Transform - pos: -26.5,-56.5 - parent: 30 - - uid: 22588 - components: - - type: Transform - pos: -25.5,-56.5 - parent: 30 - - uid: 22589 - components: - - type: Transform - pos: -24.5,-56.5 - parent: 30 - - uid: 22590 - components: - - type: Transform - pos: -24.5,-57.5 - parent: 30 - - uid: 22591 - components: - - type: Transform - pos: -23.5,-59.5 - parent: 30 - - uid: 22592 - components: - - type: Transform - pos: -23.5,-56.5 - parent: 30 - - uid: 22593 - components: - - type: Transform - pos: -22.5,-56.5 - parent: 30 - - uid: 22594 - components: - - type: Transform - pos: -21.5,-56.5 - parent: 30 - - uid: 22595 - components: - - type: Transform - pos: -21.5,-57.5 - parent: 30 - - uid: 22596 - components: - - type: Transform - pos: -21.5,-59.5 - parent: 30 - - uid: 22597 - components: - - type: Transform - pos: -22.5,-59.5 - parent: 30 - - uid: 22639 - components: - - type: Transform - pos: -28.5,-59.5 - parent: 30 - - uid: 22640 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 30 - - uid: 22641 - components: - - type: Transform - pos: -28.5,-61.5 - parent: 30 - - uid: 22642 - components: - - type: Transform - pos: -28.5,-62.5 - parent: 30 - - uid: 22643 - components: - - type: Transform - pos: -28.5,-63.5 - parent: 30 - - uid: 22644 - components: - - type: Transform - pos: -28.5,-57.5 - parent: 30 - - uid: 22649 - components: - - type: Transform - pos: -33.5,-63.5 - parent: 30 - - uid: 22650 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 30 - proto: WallSolid entities: - uid: 3 @@ -132609,6 +130970,11 @@ entities: - type: Transform pos: -8.5,17.5 parent: 30 + - uid: 801 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 30 - uid: 830 components: - type: Transform @@ -133907,6 +132273,11 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-5.5 parent: 30 + - uid: 6642 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 30 - uid: 6732 components: - type: Transform @@ -134058,6 +132429,11 @@ entities: - type: Transform pos: -37.5,-19.5 parent: 30 + - uid: 7221 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 30 - uid: 7234 components: - type: Transform @@ -134832,16 +133208,6 @@ entities: - type: Transform pos: 9.5,-30.5 parent: 30 - - uid: 8525 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 30 - - uid: 8526 - components: - - type: Transform - pos: 9.5,-26.5 - parent: 30 - uid: 8534 components: - type: Transform @@ -134903,50 +133269,85 @@ entities: - type: Transform pos: 3.5,-35.5 parent: 30 - - uid: 9288 + - uid: 9299 components: - type: Transform - pos: -4.5,-37.5 + pos: -42.5,-0.5 parent: 30 - - uid: 9289 + - uid: 9482 components: - type: Transform - pos: -0.5,-37.5 + pos: -6.5,-51.5 parent: 30 - - uid: 9299 + - uid: 9483 components: - type: Transform - pos: -42.5,-0.5 + pos: -5.5,-46.5 parent: 30 - - uid: 9324 + - uid: 9485 components: - type: Transform - pos: -10.5,-37.5 + pos: -9.5,-46.5 parent: 30 - - uid: 9348 + - uid: 9486 components: - type: Transform - pos: -14.5,-28.5 + pos: -6.5,-49.5 parent: 30 - - uid: 9367 + - uid: 9488 components: - type: Transform - pos: -20.5,-39.5 + pos: -13.5,-46.5 parent: 30 - - uid: 9370 + - uid: 9489 components: - type: Transform - pos: -20.5,-44.5 + pos: 3.5,-42.5 parent: 30 - - uid: 9450 + - uid: 9496 components: - type: Transform - pos: -14.5,-30.5 + pos: -4.5,-42.5 parent: 30 - - uid: 9451 + - uid: 9497 components: - type: Transform - pos: -14.5,-31.5 + pos: -3.5,-42.5 + parent: 30 + - uid: 9524 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 30 + - uid: 9525 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 30 + - uid: 9526 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 30 + - uid: 9527 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 30 + - uid: 9529 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 30 + - uid: 9530 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 30 + - uid: 9634 + components: + - type: Transform + pos: -57.5,-65.5 parent: 30 - uid: 9684 components: @@ -134983,6 +133384,41 @@ entities: - type: Transform pos: 29.5,43.5 parent: 30 + - uid: 9870 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 30 + - uid: 9871 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 30 + - uid: 9872 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 30 + - uid: 9873 + components: + - type: Transform + pos: -25.5,-45.5 + parent: 30 + - uid: 9874 + components: + - type: Transform + pos: -21.5,-45.5 + parent: 30 + - uid: 9879 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 30 + - uid: 9883 + components: + - type: Transform + pos: -6.5,-47.5 + parent: 30 - uid: 9916 components: - type: Transform @@ -135063,10 +133499,135 @@ entities: - type: Transform pos: -9.5,-15.5 parent: 30 - - uid: 11019 + - uid: 9959 components: - type: Transform - pos: -0.5,-38.5 + pos: -7.5,-46.5 + parent: 30 + - uid: 9961 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 30 + - uid: 9962 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 30 + - uid: 9963 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 30 + - uid: 10011 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 30 + - uid: 10135 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 30 + - uid: 10228 + components: + - type: Transform + pos: -57.5,-64.5 + parent: 30 + - uid: 10236 + components: + - type: Transform + pos: -65.5,-61.5 + parent: 30 + - uid: 10237 + components: + - type: Transform + pos: -59.5,-61.5 + parent: 30 + - uid: 10546 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 30 + - uid: 10548 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 30 + - uid: 10549 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 30 + - uid: 10753 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 30 + - uid: 10756 + components: + - type: Transform + pos: -14.5,-52.5 + parent: 30 + - uid: 10757 + components: + - type: Transform + pos: -14.5,-51.5 + parent: 30 + - uid: 10758 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 30 + - uid: 10759 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 30 + - uid: 11060 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 30 + - uid: 11071 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 30 + - uid: 11072 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 30 + - uid: 11074 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 30 + - uid: 11075 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 30 + - uid: 11089 + components: + - type: Transform + pos: -15.5,-49.5 + parent: 30 + - uid: 11090 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 30 + - uid: 11092 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 30 + - uid: 11141 + components: + - type: Transform + pos: -9.5,-42.5 parent: 30 - uid: 11198 components: @@ -135088,10 +133649,15 @@ entities: - type: Transform pos: 29.5,-0.5 parent: 30 - - uid: 11339 + - uid: 11259 components: - type: Transform - pos: -14.5,-38.5 + pos: -66.5,-61.5 + parent: 30 + - uid: 11261 + components: + - type: Transform + pos: -63.5,-61.5 parent: 30 - uid: 11352 components: @@ -135103,6 +133669,16 @@ entities: - type: Transform pos: 2.5,-7.5 parent: 30 + - uid: 11457 + components: + - type: Transform + pos: -67.5,-61.5 + parent: 30 + - uid: 11459 + components: + - type: Transform + pos: -60.5,-61.5 + parent: 30 - uid: 11597 components: - type: Transform @@ -135238,10 +133814,16 @@ entities: - type: Transform pos: -43.5,-17.5 parent: 30 - - uid: 12659 + - uid: 12636 components: - type: Transform - pos: 20.5,13.5 + pos: -58.5,-61.5 + parent: 30 + - uid: 12638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-61.5 parent: 30 - uid: 12660 components: @@ -135600,6 +134182,31 @@ entities: - type: Transform pos: 21.5,54.5 parent: 30 + - uid: 13983 + components: + - type: Transform + pos: -20.5,-49.5 + parent: 30 + - uid: 13985 + components: + - type: Transform + pos: -20.5,-50.5 + parent: 30 + - uid: 14480 + components: + - type: Transform + pos: -67.5,-63.5 + parent: 30 + - uid: 14481 + components: + - type: Transform + pos: -67.5,-64.5 + parent: 30 + - uid: 14513 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 30 - uid: 14725 components: - type: Transform @@ -135630,6 +134237,11 @@ entities: - type: Transform pos: 14.5,49.5 parent: 30 + - uid: 14808 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 30 - uid: 14966 components: - type: Transform @@ -136158,11 +134770,6 @@ entities: - type: Transform pos: -81.5,-41.5 parent: 30 - - uid: 17544 - components: - - type: Transform - pos: -55.5,-68.5 - parent: 30 - uid: 17569 components: - type: Transform @@ -136173,11 +134780,6 @@ entities: - type: Transform pos: -54.5,-58.5 parent: 30 - - uid: 17685 - components: - - type: Transform - pos: -56.5,-68.5 - parent: 30 - uid: 17686 components: - type: Transform @@ -136313,41 +134915,6 @@ entities: - type: Transform pos: -57.5,-61.5 parent: 30 - - uid: 17723 - components: - - type: Transform - pos: -60.5,-61.5 - parent: 30 - - uid: 17724 - components: - - type: Transform - pos: -61.5,-61.5 - parent: 30 - - uid: 17725 - components: - - type: Transform - pos: -62.5,-61.5 - parent: 30 - - uid: 17726 - components: - - type: Transform - pos: -63.5,-61.5 - parent: 30 - - uid: 17728 - components: - - type: Transform - pos: -65.5,-61.5 - parent: 30 - - uid: 17729 - components: - - type: Transform - pos: -66.5,-61.5 - parent: 30 - - uid: 17730 - components: - - type: Transform - pos: -67.5,-61.5 - parent: 30 - uid: 17731 components: - type: Transform @@ -136358,11 +134925,6 @@ entities: - type: Transform pos: -69.5,-61.5 parent: 30 - - uid: 17734 - components: - - type: Transform - pos: -61.5,-65.5 - parent: 30 - uid: 17736 components: - type: Transform @@ -136478,16 +135040,6 @@ entities: - type: Transform pos: -61.5,-66.5 parent: 30 - - uid: 17775 - components: - - type: Transform - pos: -63.5,-66.5 - parent: 30 - - uid: 17776 - components: - - type: Transform - pos: -62.5,-66.5 - parent: 30 - uid: 17777 components: - type: Transform @@ -136528,11 +135080,6 @@ entities: - type: Transform pos: -66.5,-66.5 parent: 30 - - uid: 17785 - components: - - type: Transform - pos: -61.5,-62.5 - parent: 30 - uid: 17786 components: - type: Transform @@ -136541,22 +135088,12 @@ entities: - uid: 17787 components: - type: Transform - pos: -61.5,-63.5 + pos: -57.5,-62.5 parent: 30 - uid: 17788 components: - type: Transform - pos: -61.5,-64.5 - parent: 30 - - uid: 17790 - components: - - type: Transform - pos: -53.5,-67.5 - parent: 30 - - uid: 17791 - components: - - type: Transform - pos: -53.5,-66.5 + pos: -57.5,-63.5 parent: 30 - uid: 17999 components: @@ -136623,56 +135160,16 @@ entities: - type: Transform pos: -38.5,-30.5 parent: 30 - - uid: 18070 - components: - - type: Transform - pos: -56.5,-62.5 - parent: 30 - - uid: 18071 - components: - - type: Transform - pos: -53.5,-65.5 - parent: 30 - - uid: 18072 - components: - - type: Transform - pos: -53.5,-64.5 - parent: 30 - - uid: 18073 - components: - - type: Transform - pos: -57.5,-68.5 - parent: 30 - - uid: 18074 - components: - - type: Transform - pos: -53.5,-63.5 - parent: 30 - - uid: 18075 - components: - - type: Transform - pos: -53.5,-62.5 - parent: 30 - uid: 18076 components: - type: Transform pos: -54.5,-61.5 parent: 30 - - uid: 18077 - components: - - type: Transform - pos: -54.5,-60.5 - parent: 30 - uid: 18082 components: - type: Transform pos: -61.5,-67.5 parent: 30 - - uid: 18086 - components: - - type: Transform - pos: -64.5,-66.5 - parent: 30 - uid: 18087 components: - type: Transform @@ -136793,21 +135290,11 @@ entities: - type: Transform pos: -76.5,-50.5 parent: 30 - - uid: 18125 - components: - - type: Transform - pos: -61.5,-68.5 - parent: 30 - uid: 18169 components: - type: Transform pos: -71.5,-61.5 parent: 30 - - uid: 18170 - components: - - type: Transform - pos: -71.5,-59.5 - parent: 30 - uid: 18171 components: - type: Transform @@ -136901,21 +135388,6 @@ entities: - type: Transform pos: -43.5,2.5 parent: 30 - - uid: 22216 - components: - - type: Transform - pos: -60.5,-68.5 - parent: 30 - - uid: 22645 - components: - - type: Transform - pos: -27.5,-60.5 - parent: 30 - - uid: 22646 - components: - - type: Transform - pos: -25.5,-60.5 - parent: 30 - proto: WallSolidRust entities: - uid: 223 @@ -137262,6 +135734,13 @@ entities: parent: 30 - type: Physics canCollide: False +- proto: WardrobeAtmosphericsFilled + entities: + - uid: 8418 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 30 - proto: WardrobeBlackFilled entities: - uid: 9942 @@ -137417,29 +135896,16 @@ entities: - 0 - proto: WardrobeEngineeringFilled entities: - - uid: 8228 + - uid: 7112 components: - type: Transform - pos: -9.5,-38.5 + pos: -7.5,-41.5 + parent: 30 + - uid: 7148 + components: + - type: Transform + pos: -5.5,-41.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeFormal entities: - uid: 19618 @@ -137831,6 +136297,11 @@ entities: - type: Transform pos: -51.5,69.5 parent: 30 + - uid: 14476 + components: + - type: Transform + pos: -55.5,-65.5 + parent: 30 - uid: 16216 components: - type: Transform @@ -137851,11 +136322,6 @@ entities: - type: Transform pos: -60.5,-20.5 parent: 30 - - uid: 18786 - components: - - type: Transform - pos: -62.5,-65.5 - parent: 30 - uid: 19532 components: - type: Transform @@ -137863,15 +136329,15 @@ entities: parent: 30 - proto: WaterTankHighCapacity entities: - - uid: 399 + - uid: 452 components: - type: Transform - pos: -23.5,5.5 + pos: -30.5,10.5 parent: 30 - - uid: 452 + - uid: 13365 components: - type: Transform - pos: -30.5,10.5 + pos: -23.5,5.5 parent: 30 - proto: WaterVaporCanister entities: @@ -137957,13 +136423,6 @@ entities: parent: 30 - type: Physics canCollide: False - - uid: 20994 - components: - - type: Transform - pos: -15.5,-34.5 - parent: 30 - - type: Physics - canCollide: False - uid: 20998 components: - type: Transform @@ -138113,10 +136572,10 @@ entities: parent: 30 - proto: WelderIndustrialAdvanced entities: - - uid: 9596 + - uid: 13977 components: - type: Transform - pos: -17.366865,-29.492481 + pos: -8.390148,-47.43978 parent: 30 - proto: WelderMini entities: @@ -138152,6 +136611,11 @@ entities: - type: Transform pos: 9.5,-25.5 parent: 30 + - uid: 10147 + components: + - type: Transform + pos: -54.5,-65.5 + parent: 30 - uid: 14811 components: - type: Transform @@ -138167,11 +136631,6 @@ entities: - type: Transform pos: -52.5,39.5 parent: 30 - - uid: 18787 - components: - - type: Transform - pos: -63.5,-65.5 - parent: 30 - uid: 19813 components: - type: Transform @@ -138234,12 +136693,6 @@ entities: - type: Transform pos: 4.5,-4.5 parent: 30 - - uid: 12696 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,13.5 - parent: 30 - uid: 20484 components: - type: Transform @@ -138419,10 +136872,11 @@ entities: - type: Transform pos: 18.5,24.5 parent: 30 - - uid: 12697 + - uid: 13241 components: - type: Transform - pos: 14.5,13.5 + rot: -1.5707963267948966 rad + pos: 16.5,15.5 parent: 30 - uid: 21708 components: @@ -138509,6 +136963,14 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,52.5 parent: 30 +- proto: WindoorSecureServiceLocked + entities: + - uid: 11458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-62.5 + parent: 30 - proto: Window entities: - uid: 5 @@ -138776,16 +137238,6 @@ entities: - type: Transform pos: 10.5,-6.5 parent: 30 - - uid: 9368 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 30 - - uid: 9369 - components: - - type: Transform - pos: -20.5,-43.5 - parent: 30 - uid: 9837 components: - type: Transform @@ -139326,30 +137778,6 @@ entities: - type: Transform pos: -23.5,4.5 parent: 30 - - uid: 9976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,4.5 - parent: 30 - - uid: 11259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,4.5 - parent: 30 - - uid: 11260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,4.5 - parent: 30 - - uid: 11261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,4.5 - parent: 30 - uid: 12728 components: - type: Transform @@ -139398,6 +137826,24 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,41.5 parent: 30 + - uid: 14051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,16.5 + parent: 30 + - uid: 14329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 30 + - uid: 14356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,23.5 + parent: 30 - uid: 15152 components: - type: Transform @@ -139765,30 +138211,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-34.5 parent: 30 - - uid: 21191 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,4.5 - parent: 30 - - uid: 21451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,4.5 - parent: 30 - - uid: 21452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,4.5 - parent: 30 - - uid: 21453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,4.5 - parent: 30 - uid: 22456 components: - type: Transform @@ -139859,11 +138281,6 @@ entities: - type: Transform pos: -14.474685,-24.503119 parent: 30 - - uid: 9483 - components: - - type: Transform - pos: -17.403442,-29.451271 - parent: 30 - uid: 18182 components: - type: Transform diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index 8dd8e3a8a4..473cbbb3a8 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -54,6 +54,7 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap - type: GridTree - type: MovedGrids @@ -358,11 +359,11 @@ entities: version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAAA version: 6 -4,-5: ind: -4,-5 @@ -6442,7 +6443,8 @@ entities: -2,8: 0: 65535 -2,9: - 0: 65535 + 0: 65263 + 2: 272 -2,10: 0: 65535 -2,11: @@ -6875,18 +6877,18 @@ entities: 0: 65535 12,-8: 0: 30591 - 2: 34944 + 3: 34944 13,-8: 0: 17487 - 2: 13104 - 3: 34944 + 3: 13104 + 4: 34944 13,-7: 0: 65535 13,-6: 0: 65535 14,-8: 0: 52431 - 3: 13104 + 4: 13104 14,-7: 0: 65535 14,-6: @@ -6907,44 +6909,44 @@ entities: 0: 65535 16,-4: 0: 32631 - 4: 136 - 5: 32768 + 5: 136 + 6: 32768 16,-3: 0: 32631 - 5: 32904 + 6: 32904 16,-2: 0: 65399 - 5: 136 + 6: 136 16,-1: 0: 13299 17,-4: - 4: 51 + 5: 51 0: 53196 - 5: 12288 + 6: 12288 17,-3: - 5: 12339 + 6: 12339 0: 53196 17,-2: - 5: 51 + 6: 51 0: 65484 16,-7: 0: 65522 16,-6: 0: 32767 - 5: 32768 + 6: 32768 16,-5: 0: 32631 - 5: 136 - 4: 32768 + 6: 136 + 5: 32768 17,-7: 0: 65527 17,-6: 0: 53247 - 5: 12288 + 6: 12288 17,-5: - 5: 51 + 6: 51 0: 53196 - 4: 12288 + 5: 12288 12,-9: 0: 61941 13,-9: @@ -7077,12 +7079,12 @@ entities: 0: 8930 16,-8: 0: 60395 - 5: 4 + 6: 4 17,-8: 0: 65535 18,-8: 0: 12914 - 5: 137 + 6: 137 18,-7: 0: 47858 18,-6: @@ -7107,19 +7109,19 @@ entities: 0: 3983 16,-9: 0: 59951 - 5: 1216 + 6: 1216 17,-9: 0: 65375 - 5: 160 + 6: 160 17,-10: 0: 40960 - 5: 24560 + 6: 24560 18,-10: 0: 4096 - 5: 8976 + 6: 8976 18,-9: 0: 12896 - 5: 35227 + 6: 35227 10,-10: 0: 63249 10,-9: @@ -7588,7 +7590,7 @@ entities: 0: 65535 3,-14: 0: 61713 - 5: 3822 + 6: 3822 3,-13: 0: 65535 -2,-16: @@ -8098,11 +8100,11 @@ entities: 20,7: 0: 4369 19,-8: - 5: 51 + 6: 51 16,-10: - 5: 60608 + 6: 60608 19,-9: - 5: 13107 + 6: 13107 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -8134,6 +8136,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -10278,11 +10295,23 @@ entities: - type: Transform pos: 68.5,8.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12540: + - DoorStatus: DoorBolt - uid: 12560 components: - type: Transform pos: 65.5,8.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12540: + - DoorStatus: DoorBolt - proto: AirlockEngineeringLocked entities: - uid: 1109 @@ -10446,6 +10475,14 @@ entities: - type: Transform pos: 66.5,6.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 12560: + - DoorStatus: DoorBolt + 12559: + - DoorStatus: DoorBolt - uid: 23561 components: - type: Transform @@ -10558,21 +10595,58 @@ entities: - type: Transform pos: -44.5,33.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 3442: + - DoorStatus: DoorBolt + 3582: + - DoorStatus: DoorBolt - uid: 3442 components: - type: Transform pos: -43.5,29.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 3445: + - DoorStatus: DoorBolt + 3441: + - DoorStatus: DoorBolt - uid: 3445 components: - type: Transform pos: -44.5,32.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 3442: + - DoorStatus: DoorBolt + 3582: + - DoorStatus: DoorBolt - uid: 3582 components: - type: Transform pos: -42.5,29.5 parent: 5350 + - type: Door + secondsUntilStateChange: -99.68158 + state: Opening + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 3445: + - DoorStatus: DoorBolt + 3441: + - DoorStatus: DoorBolt + lastSignals: + DoorStatus: True - uid: 3884 components: - type: Transform @@ -10590,11 +10664,23 @@ entities: - type: Transform pos: 63.5,38.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13927: + - DoorStatus: DoorBolt - uid: 13927 components: - type: Transform pos: 63.5,40.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13926: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 5442 @@ -10602,21 +10688,49 @@ entities: - type: Transform pos: -76.5,8.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5443: + - DoorStatus: Close - uid: 5712 components: - type: Transform pos: -74.5,-17.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5711: + - DoorStatus: Close - uid: 5713 components: - type: Transform pos: -72.5,-19.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 5716: + - DoorStatus: Close + 5715: + - DoorStatus: Close - uid: 5714 components: - type: Transform pos: -73.5,-19.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 5715: + - DoorStatus: Close + 5716: + - DoorStatus: Close - uid: 5742 components: - type: Transform @@ -10627,21 +10741,45 @@ entities: - type: Transform pos: -41.5,35.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9492: + - DoorStatus: DoorBolt - uid: 9494 components: - type: Transform pos: -32.5,45.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9495: + - DoorStatus: DoorBolt - uid: 9495 components: - type: Transform pos: -32.5,47.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9494: + - DoorStatus: DoorBolt - uid: 13922 components: - type: Transform pos: 48.5,38.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13921: + - DoorStatus: DoorBolt - uid: 14536 components: - type: Transform @@ -10658,36 +10796,78 @@ entities: - type: Transform pos: -50.5,-40.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 16715: + - DoorStatus: DoorBolt - uid: 17204 components: - type: Transform pos: -42.5,-63.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 17205: + - DoorStatus: DoorBolt - uid: 17205 components: - type: Transform pos: -39.5,-63.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 17204: + - DoorStatus: DoorBolt - uid: 20027 components: - type: Transform pos: 5.5,-65.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 20026: + - DoorStatus: DoorBolt - uid: 20029 components: - type: Transform pos: 38.5,-64.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 20030: + - DoorStatus: DoorBolt - uid: 20030 components: - type: Transform pos: 38.5,-61.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 20029: + - DoorStatus: DoorBolt - uid: 20038 components: - type: Transform pos: 39.5,-54.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 20037: + - DoorStatus: DoorBolt - uid: 25050 components: - type: Transform @@ -10794,22 +10974,50 @@ entities: rot: -1.5707963267948966 rad pos: -78.5,8.5 parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 5442: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 5711 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-17.5 parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 5712: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 5715 components: - type: Transform pos: -73.5,-22.5 parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 5713: + - DoorStatus: Close + 5714: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 2 - uid: 5716 components: - type: Transform pos: -72.5,-22.5 parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 5713: + - DoorStatus: Close + 5714: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 2 - proto: AirlockExternalLocked entities: - uid: 9492 @@ -10817,11 +11025,23 @@ entities: - type: Transform pos: -44.5,35.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9493: + - DoorStatus: DoorBolt - uid: 13921 components: - type: Transform pos: 49.5,39.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13922: + - DoorStatus: DoorBolt - uid: 13923 components: - type: Transform @@ -10831,8 +11051,6 @@ entities: linkedPorts: 14536: - DoorStatus: DoorBolt - 13924: - - DoorStatus: DoorBolt - uid: 13924 components: - type: Transform @@ -10842,23 +11060,39 @@ entities: linkedPorts: 14536: - DoorStatus: DoorBolt - 13923: - - DoorStatus: DoorBolt - uid: 16715 components: - type: Transform pos: -52.5,-40.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 16716: + - DoorStatus: DoorBolt - uid: 20026 components: - type: Transform pos: 5.5,-67.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 20027: + - DoorStatus: DoorBolt - uid: 20037 components: - type: Transform pos: 41.5,-54.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 20038: + - DoorStatus: DoorBolt - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 2433 @@ -13597,12 +13831,12 @@ entities: - type: Transform pos: -1.8845375,-5.58767 parent: 5350 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 491 components: - type: Transform - pos: 34.5,-12.5 + pos: 34.5,-17.5 parent: 5350 - uid: 5086 components: @@ -13612,32 +13846,38 @@ entities: - uid: 5326 components: - type: Transform + rot: 1.5707963267948966 rad pos: 41.5,47.5 parent: 5350 - uid: 5330 components: - type: Transform - pos: -63.5,-13.5 + rot: -1.5707963267948966 rad + pos: -64.5,-13.5 parent: 5350 - uid: 6473 components: - type: Transform + rot: -1.5707963267948966 rad pos: -45.5,16.5 parent: 5350 - uid: 6502 components: - type: Transform + rot: -1.5707963267948966 rad pos: -45.5,18.5 parent: 5350 - uid: 8480 components: - type: Transform - pos: -70.5,-5.5 + rot: 3.141592653589793 rad + pos: -63.5,-5.5 parent: 5350 - uid: 8604 components: - type: Transform - pos: -63.5,-5.5 + rot: 3.141592653589793 rad + pos: -70.5,-5.5 parent: 5350 - uid: 9158 components: @@ -13647,12 +13887,14 @@ entities: - uid: 10294 components: - type: Transform - pos: 39.5,-15.5 + rot: 3.141592653589793 rad + pos: 34.5,-12.5 parent: 5350 - uid: 11035 components: - type: Transform - pos: 34.5,-17.5 + rot: 1.5707963267948966 rad + pos: 39.5,-15.5 parent: 5350 - uid: 11212 components: @@ -13662,47 +13904,33 @@ entities: - uid: 14164 components: - type: Transform - pos: -63.5,-7.5 + pos: -11.5,-74.5 parent: 5350 - uid: 14682 components: - type: Transform - pos: -70.5,-7.5 + pos: -9.5,-74.5 parent: 5350 - uid: 14683 components: - type: Transform - pos: -63.5,6.5 + pos: -3.5,-74.5 parent: 5350 - uid: 14684 components: - type: Transform - pos: -70.5,6.5 - parent: 5350 - - uid: 20063 - components: - - type: Transform - pos: -11.5,-74.5 - parent: 5350 - - uid: 20064 - components: - - type: Transform - pos: -9.5,-74.5 - parent: 5350 - - uid: 20065 - components: - - type: Transform - pos: -3.5,-74.5 + pos: -1.5,-74.5 parent: 5350 - - uid: 20066 + - uid: 14913 components: - type: Transform - pos: -1.5,-74.5 + pos: -70.5,4.5 parent: 5350 - - uid: 20167 + - uid: 24792 components: - type: Transform - pos: -70.5,4.5 + rot: 1.5707963267948966 rad + pos: 59.5,4.5 parent: 5350 - proto: AtmosFixBlockerMarker entities: @@ -60938,6 +61166,22 @@ entities: - type: Transform pos: -16.428204,45.62322 parent: 5350 +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 20063 + components: + - type: Transform + parent: 9140 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20064 + components: + - type: Transform + parent: 10335 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterHoodieBlack entities: - uid: 22120 @@ -73877,18 +74121,20 @@ entities: - type: Transform pos: 68.5,-19.5 parent: 5350 -- proto: GasMinerNitrogen +- proto: GasMinerNitrogenStationLarge entities: - uid: 11574 components: - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,-29.5 parent: 5350 -- proto: GasMinerOxygen +- proto: GasMinerOxygenStationLarge entities: - - uid: 11585 + - uid: 3116 components: - type: Transform + rot: -1.5707963267948966 rad pos: 56.5,-29.5 parent: 5350 - proto: GasMixer @@ -112750,6 +112996,16 @@ entities: - type: Transform pos: 9.5,-62.5 parent: 5350 + - uid: 20065 + components: + - type: Transform + pos: -34.5,-75.5 + parent: 5350 + - uid: 20066 + components: + - type: Transform + pos: -34.5,-74.5 + parent: 5350 - uid: 20067 components: - type: Transform @@ -112935,6 +113191,11 @@ entities: - type: Transform pos: -0.5,-68.5 parent: 5350 + - uid: 20167 + components: + - type: Transform + pos: -34.5,-77.5 + parent: 5350 - uid: 21454 components: - type: Transform @@ -113195,6 +113456,56 @@ entities: rot: 1.5707963267948966 rad pos: 94.5,19.5 parent: 5350 + - uid: 24782 + components: + - type: Transform + pos: -33.5,-77.5 + parent: 5350 + - uid: 24783 + components: + - type: Transform + pos: -32.5,-77.5 + parent: 5350 + - uid: 24784 + components: + - type: Transform + pos: -31.5,-77.5 + parent: 5350 + - uid: 24785 + components: + - type: Transform + pos: -30.5,-77.5 + parent: 5350 + - uid: 24786 + components: + - type: Transform + pos: -28.5,-77.5 + parent: 5350 + - uid: 24787 + components: + - type: Transform + pos: -27.5,-77.5 + parent: 5350 + - uid: 24788 + components: + - type: Transform + pos: -26.5,-77.5 + parent: 5350 + - uid: 24789 + components: + - type: Transform + pos: -25.5,-77.5 + parent: 5350 + - uid: 24790 + components: + - type: Transform + pos: -36.5,-74.5 + parent: 5350 + - uid: 24791 + components: + - type: Transform + pos: -37.5,-74.5 + parent: 5350 - uid: 24922 components: - type: Transform @@ -116098,12 +116409,24 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-28.5 parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 23500: + - Pressed: Open + 24195: + - Pressed: Open - uid: 24780 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-31.5 parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 24820: + - Pressed: Open + 26601: + - Pressed: Open - proto: LockableButtonSecurity entities: - uid: 6261 @@ -132903,23 +133226,6 @@ entities: linkedPorts: 10293: - Pressed: Toggle - - uid: 14913 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 14916: - - Pressed: Toggle - 14915: - - Pressed: Toggle - 14914: - - Pressed: Toggle - 14918: - - Pressed: Toggle - 14917: - - Pressed: Toggle - uid: 15183 components: - type: Transform @@ -133156,6 +133462,24 @@ entities: - Pressed: Toggle 23565: - Pressed: Toggle + - uid: 11585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-38.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 14917: + - Pressed: Toggle + 14918: + - Pressed: Toggle + 14914: + - Pressed: Toggle + 14915: + - Pressed: Toggle + 14916: + - Pressed: Toggle - uid: 12454 components: - type: Transform @@ -133246,8 +133570,6 @@ entities: - type: Transform pos: 44.5,-4.5 parent: 5350 -- proto: SignAtmosMinsky - entities: - uid: 11495 components: - type: Transform @@ -133292,26 +133614,22 @@ entities: pos: -13.5,-64.5 parent: 5350 - proto: SignChem - entities: - - uid: 15672 - components: - - type: Transform - pos: -17.5,-28.5 - parent: 5350 -- proto: SignChemistry1 entities: - uid: 14204 components: - type: Transform pos: -19.5,-21.5 parent: 5350 -- proto: SignChemistry2 - entities: - uid: 15671 components: - type: Transform pos: -13.5,-23.5 parent: 5350 + - uid: 15672 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 5350 - proto: SignCloning entities: - uid: 15048 @@ -133735,13 +134053,6 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,-5.5 parent: 5350 -- proto: SignDrones - entities: - - uid: 8902 - components: - - type: Transform - pos: 44.5,-0.5 - parent: 5350 - proto: SignElectricalMed entities: - uid: 1672 @@ -133920,17 +134231,15 @@ entities: parent: 5350 - proto: SignHydro1 entities: - - uid: 2335 + - uid: 2326 components: - type: Transform - pos: 20.5,-21.5 + pos: 20.5,-15.5 parent: 5350 -- proto: SignHydro2 - entities: - - uid: 2326 + - uid: 2335 components: - type: Transform - pos: 20.5,-15.5 + pos: 20.5,-21.5 parent: 5350 - proto: SignInterrogation entities: @@ -133992,6 +134301,13 @@ entities: - type: Transform pos: -35.5,6.5 parent: 5350 +- proto: SignMaterials + entities: + - uid: 8902 + components: + - type: Transform + pos: 44.5,-0.5 + parent: 5350 - proto: SignMedical entities: - uid: 7333 @@ -134024,13 +134340,6 @@ entities: - type: Transform pos: 36.5,-30.5 parent: 5350 -- proto: SignMinerDock - entities: - - uid: 4097 - components: - - type: Transform - pos: -39.5,22.5 - parent: 5350 - proto: SignMorgue entities: - uid: 15028 @@ -134125,7 +134434,7 @@ entities: - type: Transform pos: -0.5,-33.5 parent: 5350 -- proto: SignScience1 +- proto: SignScience entities: - uid: 9789 components: @@ -134327,6 +134636,13 @@ entities: - type: Transform pos: -0.5,22.5 parent: 5350 +- proto: SignShipDock + entities: + - uid: 4097 + components: + - type: Transform + pos: -39.5,22.5 + parent: 5350 - proto: SignSmoking entities: - uid: 11369 @@ -134483,7 +134799,7 @@ entities: - type: Transform pos: 23.5,5.5 parent: 5350 -- proto: SignToxins2 +- proto: SignToxins entities: - uid: 22182 components: @@ -137950,11 +138266,61 @@ entities: - type: Transform pos: -7.5,37.5 parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 20063 - uid: 10335 components: - type: Transform pos: -7.5,38.5 parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 20064 - proto: SuitStorageWarden entities: - uid: 10358 diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 7353864af1..ae213b3dd1 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -315,11 +315,11 @@ entities: version: 6 0,4: ind: 0,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,4: ind: 1,4 - tiles: gAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,0: ind: -4,0 @@ -11860,6 +11860,8 @@ entities: - type: Transform pos: -32.5,34.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 28923: @@ -12445,55 +12447,6 @@ entities: - type: Transform pos: 45.5,2.5 parent: 2 -- proto: AirlockExternalEngineeringLocked - entities: - - uid: 19542 - components: - - type: Transform - pos: -50.5,-49.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 19543: - - DoorStatus: DoorBolt - - uid: 19543 - components: - - type: Transform - pos: -49.5,-51.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 19542: - - DoorStatus: DoorBolt - - uid: 19544 - components: - - type: Transform - pos: -47.5,-54.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 19545: - - DoorStatus: DoorBolt - 19546: - - DoorStatus: DoorBolt - - uid: 19545 - components: - - type: Transform - pos: -48.5,-55.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 19544: - - DoorStatus: DoorBolt - - uid: 19546 - components: - - type: Transform - pos: -46.5,-55.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 19544: - - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: - uid: 13141 @@ -12560,6 +12513,8 @@ entities: - DoorStatus: DoorBolt 8505: - DoorStatus: DoorBolt + 8504: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - uid: 826 @@ -12599,8 +12554,67 @@ entities: - type: Transform pos: -58.5,-17.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 - proto: AirlockExternalGlassEngineeringLocked entities: + - uid: 234 + components: + - type: Transform + pos: -48.5,-55.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3673: + - DoorStatus: DoorBolt + - uid: 437 + components: + - type: Transform + pos: -46.5,-55.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3673: + - DoorStatus: DoorBolt + - uid: 3673 + components: + - type: Transform + pos: -47.5,-54.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 234: + - DoorStatus: DoorBolt + 437: + - DoorStatus: DoorBolt + - uid: 3888 + components: + - type: Transform + pos: -49.5,-51.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3902: + - DoorStatus: DoorBolt + - uid: 3902 + components: + - type: Transform + pos: -50.5,-49.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3888: + - DoorStatus: DoorBolt - uid: 6828 components: - type: Transform @@ -14467,7 +14481,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -4821.3525 + secondsUntilStateChange: -9254.769 state: Opening - uid: 6934 components: @@ -14479,7 +14493,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -4823.986 + secondsUntilStateChange: -9257.402 state: Opening - uid: 6935 components: @@ -14491,7 +14505,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -4822.836 + secondsUntilStateChange: -9256.252 state: Opening - uid: 6936 components: @@ -14502,7 +14516,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -4822.0522 + secondsUntilStateChange: -9255.469 state: Opening - proto: AirlockTheatreLocked entities: @@ -24789,11 +24803,6 @@ entities: - type: Transform pos: 60.5,30.5 parent: 21002 - - uid: 26395 - components: - - type: Transform - pos: 60.5,29.5 - parent: 21002 - uid: 26396 components: - type: Transform @@ -27124,11 +27133,6 @@ entities: - type: Transform pos: 57.5,-2.5 parent: 21002 - - uid: 27221 - components: - - type: Transform - pos: 57.5,-1.5 - parent: 21002 - uid: 27222 components: - type: Transform @@ -31754,11 +31758,6 @@ entities: - type: Transform pos: 25.5,-28.5 parent: 21002 - - uid: 25401 - components: - - type: Transform - pos: 41.5,-25.5 - parent: 21002 - uid: 25402 components: - type: Transform @@ -31839,11 +31838,6 @@ entities: - type: Transform pos: 39.5,-27.5 parent: 21002 - - uid: 25420 - components: - - type: Transform - pos: 38.5,-27.5 - parent: 21002 - uid: 25421 components: - type: Transform @@ -33044,11 +33038,6 @@ entities: - type: Transform pos: 90.5,-2.5 parent: 21002 - - uid: 27690 - components: - - type: Transform - pos: 90.5,-3.5 - parent: 21002 - uid: 27691 components: - type: Transform @@ -33109,11 +33098,6 @@ entities: - type: Transform pos: 88.5,-8.5 parent: 21002 - - uid: 27712 - components: - - type: Transform - pos: 88.5,-7.5 - parent: 21002 - uid: 27713 components: - type: Transform @@ -34932,147 +34916,177 @@ entities: - type: Transform pos: 67.5,52.5 parent: 21002 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - - uid: 234 + - uid: 6810 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,55.5 + pos: -6.5,55.5 parent: 2 - - uid: 437 + - uid: 6852 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,55.5 + pos: -4.5,55.5 parent: 2 - - uid: 3673 + - uid: 10392 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-3.5 + pos: 66.5,-5.5 parent: 2 - - uid: 3888 + - uid: 10676 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-5.5 + pos: 66.5,-3.5 parent: 2 - - uid: 3902 + - uid: 10677 components: - type: Transform + rot: 1.5707963267948966 rad pos: 43.5,-26.5 parent: 2 - - uid: 6810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,54.5 - parent: 2 - - uid: 6852 + - uid: 10690 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,54.5 parent: 2 - - uid: 10392 + - uid: 10848 components: - type: Transform - pos: -7.5,-68.5 + rot: 3.141592653589793 rad + pos: 30.5,54.5 parent: 2 - - uid: 10578 + - uid: 11333 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,21.5 + pos: -7.5,-68.5 parent: 2 - - uid: 10579 + - uid: 11334 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,21.5 - parent: 2 - - uid: 10676 - components: - - type: Transform pos: -7.5,-75.5 parent: 2 - - uid: 10677 + - uid: 12849 components: - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,-75.5 parent: 2 - - uid: 10690 + - uid: 13187 components: - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,-68.5 parent: 2 - - uid: 10848 + - uid: 13210 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-82.5 + pos: 8.5,-80.5 parent: 2 - - uid: 11333 + - uid: 13262 components: - type: Transform + rot: -1.5707963267948966 rad pos: -61.5,-4.5 parent: 2 - - uid: 11334 + - uid: 13345 components: - type: Transform + rot: -1.5707963267948966 rad pos: -61.5,-2.5 parent: 2 - - uid: 12849 + - uid: 13747 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-80.5 + pos: 8.5,-82.5 parent: 2 - - uid: 16803 + - uid: 13773 components: - type: Transform + rot: -1.5707963267948966 rad pos: -61.5,-17.5 parent: 2 - - uid: 18705 + - uid: 16803 components: - type: Transform pos: -13.5,-58.5 parent: 2 - - uid: 19960 + - uid: 18705 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad + pos: -13.5,-80.5 + parent: 2 + - uid: 19542 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-82.5 parent: 2 - - uid: 19965 + - uid: 19543 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-80.5 + pos: 66.5,2.5 parent: 2 - - uid: 21017 + - uid: 19544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,4.5 + parent: 2 + - uid: 25960 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 21002 - - uid: 21018 + pos: -61.5,-1.5 + parent: 2 + - uid: 26097 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,0.5 - parent: 21002 - - uid: 24241 + pos: -61.5,-5.5 + parent: 2 + - uid: 26114 components: - type: Transform - pos: 66.5,4.5 + rot: 1.5707963267948966 rad + pos: 8.5,-80.5 parent: 2 - - uid: 24242 +- proto: AtmosDeviceFanTiny + entities: + - uid: 10578 components: - type: Transform - pos: 66.5,2.5 + rot: 1.5707963267948966 rad + pos: -17.5,21.5 + parent: 2 + - uid: 10579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,21.5 parent: 2 + - uid: 21017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 21002 + - uid: 21018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 21002 - proto: AtmosFixBlockerMarker entities: - uid: 9290 @@ -37079,11 +37093,6 @@ entities: enabled: False - proto: Bola entities: - - uid: 22398 - components: - - type: Transform - pos: 30.540497,21.53258 - parent: 21002 - uid: 23396 components: - type: Transform @@ -37415,20 +37424,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.350143,-26.356361 parent: 2 - - uid: 22198 - components: - - type: Transform - parent: 22197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22200 - components: - - type: Transform - parent: 22197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: BoxFolderBlack entities: - uid: 818 @@ -75802,34 +75797,6 @@ entities: - type: Transform pos: -36.5,-49.5 parent: 2 - - uid: 22064 - components: - - type: Transform - pos: 26.5,17.5 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 22206 - components: - - type: Transform - pos: 67.5,30.5 - parent: 21002 - uid: 23747 components: - type: Transform @@ -75840,21 +75807,6 @@ entities: - type: Transform pos: 25.5,-30.5 parent: 2 - - uid: 25556 - components: - - type: Transform - pos: 66.5,22.5 - parent: 21002 - - uid: 25559 - components: - - type: Transform - pos: 42.5,-1.5 - parent: 21002 - - uid: 25571 - components: - - type: Transform - pos: 58.5,2.5 - parent: 21002 - proto: ClosetRadiationSuitFilled entities: - uid: 9793 @@ -75913,15 +75865,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,54.5 parent: 2 -- proto: ClothingBeltMercWebbing - entities: - - uid: 21681 - components: - - type: Transform - parent: 21678 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingBeltStorageWaistbag entities: - uid: 26598 @@ -76066,15 +76009,6 @@ entities: - type: Transform pos: -11.381896,-50.376205 parent: 2 -- proto: ClothingHeadBandMerc - entities: - - uid: 21680 - components: - - type: Transform - parent: 21678 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingHeadHatAnimalCat entities: - uid: 19173 @@ -76295,22 +76229,6 @@ entities: - type: Transform pos: 44.357983,36.68563 parent: 2 -- proto: ClothingHeadHelmetEVALarge - entities: - - uid: 22362 - components: - - type: Transform - parent: 22361 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22364 - components: - - type: Transform - parent: 22361 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingHeadHelmetFire entities: - uid: 23802 @@ -76353,20 +76271,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadsetGrey - entities: - - uid: 21600 - components: - - type: Transform - pos: 49.503967,15.507565 - parent: 21002 -- proto: ClothingHeadsetMining - entities: - - uid: 26968 - components: - - type: Transform - pos: 19.579208,14.445946 - parent: 21002 - proto: ClothingMaskBreath entities: - uid: 2071 @@ -76549,22 +76453,6 @@ entities: - type: Transform pos: -36.5237,-64.52039 parent: 2 -- proto: ClothingOuterHardsuitEVAPrisoner - entities: - - uid: 22363 - components: - - type: Transform - parent: 22361 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22365 - components: - - type: Transform - parent: 22361 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterRobesJudge entities: - uid: 3517 @@ -76631,15 +76519,6 @@ entities: - type: Transform pos: 48.609123,6.4890294 parent: 2 -- proto: ClothingShoesBootsMerc - entities: - - uid: 21679 - components: - - type: Transform - parent: 21678 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingShoesBootsWork entities: - uid: 5865 @@ -78211,13 +78090,6 @@ entities: - type: Transform pos: 8.5,30.5 parent: 2 -- proto: CrateEngineeringMiniJetpack - entities: - - uid: 26711 - components: - - type: Transform - pos: 67.5,54.5 - parent: 21002 - proto: CrateEngineeringSecure entities: - uid: 23789 @@ -78413,420 +78285,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 21559 - components: - - type: Transform - pos: 46.47821,25.633486 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21560 - - 21561 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21647 - components: - - type: Transform - pos: 76.5417,-19.306087 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21648 - - 21649 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21678 - components: - - type: Transform - pos: 54.584427,32.651142 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21679 - - 21680 - - 21681 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21845 - components: - - type: Transform - pos: 57.52028,-18.43192 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21847 - - 21846 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21982 - components: - - type: Transform - pos: 90.51018,-6.3049965 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21983 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22143 - components: - - type: Transform - pos: 40.5,20.5 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 22145 - - 22144 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22197 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 22198 - - 22199 - - 22200 - - 22201 - - 22202 - - 22203 - - 22204 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22361 - components: - - type: Transform - pos: 2.5,31.5 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 22365 - - 22364 - - 22363 - - 22362 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22574 - components: - - type: Transform - pos: 26.5,41.5 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 22247 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 25364 - components: - - type: Transform - pos: 19.5,-31.5 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25365 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 25516 - components: - - type: Transform - pos: 26.5,-15.5 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 27840 - - 25520 - - 25517 - - 25518 - - 25519 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 26770 - components: - - type: Transform - pos: 37.5,-17.5 - parent: 21002 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26771 - - 26772 - - 26773 - - 26774 - - 26775 - - 26776 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: CrateInternals entities: - uid: 11961 @@ -78897,6 +78355,293 @@ entities: - type: Transform pos: 22.5,4.5 parent: 2 +- proto: CratePermaEscapeSpawner + entities: + - uid: 26395 + components: + - type: Transform + pos: 60.5,29.5 + parent: 21002 + - uid: 26407 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 21002 + - uid: 26523 + components: + - type: Transform + pos: 41.5,-25.5 + parent: 21002 + - uid: 26711 + components: + - type: Transform + pos: 38.5,-27.5 + parent: 21002 + - uid: 26770 + components: + - type: Transform + pos: 90.5,-3.5 + parent: 21002 + - uid: 26771 + components: + - type: Transform + pos: 88.5,-7.5 + parent: 21002 + - uid: 26772 + components: + - type: Transform + pos: 30.5,21.5 + parent: 21002 + - uid: 26773 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 21002 + - uid: 26774 + components: + - type: Transform + pos: 26.5,17.5 + parent: 21002 + - uid: 26775 + components: + - type: Transform + pos: 66.5,22.5 + parent: 21002 + - uid: 26776 + components: + - type: Transform + pos: 67.5,30.5 + parent: 21002 + - uid: 26825 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 21002 + - uid: 26841 + components: + - type: Transform + pos: 58.5,2.5 + parent: 21002 + - uid: 26968 + components: + - type: Transform + pos: 54.5,32.5 + parent: 21002 + - uid: 27221 + components: + - type: Transform + pos: 2.5,31.5 + parent: 21002 + - uid: 27391 + components: + - type: Transform + pos: 49.5,15.5 + parent: 21002 + - uid: 27690 + components: + - type: Transform + pos: 26.5,12.5 + parent: 21002 + - uid: 27705 + components: + - type: Transform + pos: 67.5,54.5 + parent: 21002 + - uid: 27712 + components: + - type: Transform + pos: 46.5,25.5 + parent: 21002 + - uid: 27840 + components: + - type: Transform + pos: 72.5,-12.5 + parent: 21002 + - uid: 27907 + components: + - type: Transform + pos: 51.5,-18.5 + parent: 21002 + - uid: 28925 + components: + - type: Transform + pos: 90.5,-6.5 + parent: 21002 + - uid: 28926 + components: + - type: Transform + pos: 40.5,20.5 + parent: 21002 + - uid: 28927 + components: + - type: Transform + pos: 21.5,36.5 + parent: 21002 + - uid: 28928 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 21002 + - uid: 28929 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 21002 + - uid: 28930 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 21002 + - uid: 28931 + components: + - type: Transform + pos: 75.5,-1.5 + parent: 21002 + - uid: 28932 + components: + - type: Transform + pos: 51.5,-9.5 + parent: 21002 + - uid: 28933 + components: + - type: Transform + pos: 50.5,2.5 + parent: 21002 + - uid: 28934 + components: + - type: Transform + pos: 59.5,23.5 + parent: 21002 + - uid: 28935 + components: + - type: Transform + pos: 22.5,21.5 + parent: 21002 + - uid: 28936 + components: + - type: Transform + pos: 49.5,12.5 + parent: 21002 + - uid: 28937 + components: + - type: Transform + pos: 4.5,25.5 + parent: 21002 + - uid: 28938 + components: + - type: Transform + pos: 19.5,14.5 + parent: 21002 + - uid: 28939 + components: + - type: Transform + pos: 26.5,41.5 + parent: 21002 + - uid: 28940 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 21002 + - uid: 28941 + components: + - type: Transform + pos: 5.5,28.5 + parent: 21002 + - uid: 28942 + components: + - type: Transform + pos: 24.5,37.5 + parent: 21002 + - uid: 28943 + components: + - type: Transform + pos: 45.5,1.5 + parent: 21002 + - uid: 28944 + components: + - type: Transform + pos: 46.5,18.5 + parent: 21002 + - uid: 28945 + components: + - type: Transform + pos: 60.5,15.5 + parent: 21002 + - uid: 28946 + components: + - type: Transform + pos: 45.5,29.5 + parent: 21002 + - uid: 28947 + components: + - type: Transform + pos: 14.5,25.5 + parent: 21002 + - uid: 28948 + components: + - type: Transform + pos: 56.5,3.5 + parent: 21002 + - uid: 28949 + components: + - type: Transform + pos: 54.5,40.5 + parent: 21002 + - uid: 28950 + components: + - type: Transform + pos: 68.5,43.5 + parent: 21002 + - uid: 28951 + components: + - type: Transform + pos: 70.5,52.5 + parent: 21002 + - uid: 28952 + components: + - type: Transform + pos: 69.5,50.5 + parent: 21002 + - uid: 28953 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 21002 + - uid: 28954 + components: + - type: Transform + pos: 85.5,6.5 + parent: 21002 + - uid: 28955 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 21002 + - uid: 28956 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 21002 + - uid: 28957 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 21002 + - uid: 28958 + components: + - type: Transform + pos: 76.5,-19.5 + parent: 21002 + - uid: 28959 + components: + - type: Transform + pos: 57.5,-18.5 + parent: 21002 + - uid: 28960 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 21002 - proto: CratePrivateSecure entities: - uid: 15009 @@ -92437,6 +92182,9 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-1.5 parent: 2 + - type: Door + secondsUntilStateChange: -578.74854 + state: Closing - type: DeviceNetwork deviceLists: - 18275 @@ -96759,14 +96507,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 13747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13748 components: - type: Transform @@ -96849,14 +96589,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 13773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13774 components: - type: Transform @@ -98247,6 +97979,22 @@ entities: - type: Physics canCollide: True bodyType: Dynamic + - uid: 22199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 22274 components: - type: Transform @@ -98308,6 +98056,21 @@ entities: - type: Transform pos: -32.5,27.5 parent: 2 + - uid: 23528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23532 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 23541 components: - type: Transform @@ -98410,6 +98173,29 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 25516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25559 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 26448 components: - type: Transform @@ -101297,14 +101083,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13188 components: - type: Transform @@ -101433,14 +101211,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 13210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 13211 components: - type: Transform @@ -101707,13 +101477,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 13262 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 13263 components: - type: Transform @@ -102178,13 +101941,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13345 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13346 components: - type: Transform @@ -118239,6 +117995,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 19960 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 19965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21142 components: - type: Transform @@ -118519,11 +118290,42 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 21532 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 21654 components: - type: Transform pos: -34.5,24.5 parent: 2 + - uid: 22203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 22320 components: - type: Transform @@ -118540,6 +118342,54 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 22361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 22450 components: - type: Transform @@ -118671,6 +118521,14 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 22574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 22661 components: - type: Transform @@ -119323,6 +119181,21 @@ entities: - type: Transform pos: -32.5,25.5 parent: 2 + - uid: 23533 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 23538 components: - type: Transform @@ -119643,6 +119516,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 24241 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 24242 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 25219 components: - type: Transform @@ -119945,6 +119832,105 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 25362 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25364 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25365 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25401 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25420 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 26460 components: - type: Transform @@ -123070,6 +123056,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 19545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 19546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21166 components: - type: Transform @@ -123085,12 +123087,27 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 21344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21742 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,23.5 parent: 2 + - uid: 22204 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 22671 components: - type: Transform @@ -123199,6 +123216,22 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 25517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 27898 components: - type: Transform @@ -125727,6 +125760,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 23535 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 23704 components: - type: Transform @@ -125765,6 +125805,22 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-44.5 parent: 21002 + - uid: 25563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 27894 components: - type: Transform @@ -127507,6 +127563,22 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 22200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 22490 components: - type: Transform @@ -127643,6 +127715,14 @@ entities: - 21371 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 25649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 26474 components: - type: Transform @@ -127707,50 +127787,6 @@ entities: - type: Transform pos: 39.5,11.5 parent: 2 -- proto: GlowstickYellow - entities: - - uid: 26771 - components: - - type: Transform - parent: 26770 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26772 - components: - - type: Transform - parent: 26770 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26773 - components: - - type: Transform - parent: 26770 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26774 - components: - - type: Transform - parent: 26770 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26775 - components: - - type: Transform - parent: 26770 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26776 - components: - - type: Transform - parent: 26770 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: GrassBattlemap entities: - uid: 9690 @@ -136175,7 +136211,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -32977.18 + secondsUntilStateChange: -37410.598 state: Opening - uid: 5211 components: @@ -136821,13 +136857,6 @@ entities: rot: 3.141592653589793 rad pos: 47.40576,3.310136 parent: 2 - - uid: 25365 - components: - - type: Transform - parent: 25364 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: JugWeldingFuel entities: - uid: 21351 @@ -138606,15 +138635,6 @@ entities: rot: 3.141592653589793 rad pos: -28.405407,4.838667 parent: 2 -- proto: MindShieldImplanter - entities: - - uid: 27840 - components: - - type: Transform - parent: 25516 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: MiningWindow entities: - uid: 548 @@ -139760,20 +139780,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21846 - components: - - type: Transform - parent: 21845 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21847 - components: - - type: Transform - parent: 21845 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Pen entities: - uid: 1052 @@ -139866,27 +139872,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.686314,-51.342354 parent: 2 - - uid: 22199 - components: - - type: Transform - parent: 22197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22201 - components: - - type: Transform - parent: 22197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22203 - components: - - type: Transform - parent: 22197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 22775 components: - type: Transform @@ -144271,7 +144256,7 @@ entities: pos: -26.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 9020 components: - type: Transform @@ -144279,7 +144264,7 @@ entities: pos: -24.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - proto: Protolathe entities: - uid: 7789 @@ -151232,13 +151217,6 @@ entities: parent: 2 - proto: RubberStampApproved entities: - - uid: 22202 - components: - - type: Transform - parent: 22197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 23360 components: - type: Transform @@ -151251,13 +151229,6 @@ entities: parent: 2 - proto: RubberStampDenied entities: - - uid: 22204 - components: - - type: Transform - parent: 22197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 23361 components: - type: Transform @@ -151653,20 +151624,6 @@ entities: - type: Transform pos: -27.53622,43.555347 parent: 2 - - uid: 21560 - components: - - type: Transform - parent: 21559 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21561 - components: - - type: Transform - parent: 21559 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 28346 components: - type: Transform @@ -152899,6 +152856,8 @@ entities: - Pressed: Toggle 9965: - Pressed: Toggle + 10308: + - Pressed: DoorBolt - uid: 10588 components: - type: MetaData @@ -156659,183 +156618,6 @@ entities: - type: Transform pos: -17.5,28.5 parent: 2 -- proto: SpaceTickCube - entities: - - uid: 25517 - components: - - type: Transform - parent: 25516 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25518 - components: - - type: Transform - parent: 25516 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25519 - components: - - type: Transform - parent: 25516 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25520 - components: - - type: Transform - parent: 25516 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpaceTickSpawner - entities: - - uid: 21344 - components: - - type: Transform - pos: 75.5,-1.5 - parent: 21002 - - uid: 21532 - components: - - type: Transform - pos: 51.5,-9.5 - parent: 21002 - - uid: 21773 - components: - - type: Transform - pos: 50.5,2.5 - parent: 21002 - - uid: 22147 - components: - - type: Transform - pos: 59.5,23.5 - parent: 21002 - - uid: 23528 - components: - - type: Transform - pos: 22.5,21.5 - parent: 21002 - - uid: 23532 - components: - - type: Transform - pos: 49.5,12.5 - parent: 21002 - - uid: 23533 - components: - - type: Transform - pos: 4.5,25.5 - parent: 21002 - - uid: 23534 - components: - - type: Transform - pos: 26.5,12.5 - parent: 21002 - - uid: 23535 - components: - - type: Transform - pos: 21.5,36.5 - parent: 21002 - - uid: 25362 - components: - - type: Transform - pos: 21.5,-29.5 - parent: 21002 - - uid: 25555 - components: - - type: Transform - pos: 5.5,28.5 - parent: 21002 - - uid: 25557 - components: - - type: Transform - pos: 24.5,37.5 - parent: 21002 - - uid: 25558 - components: - - type: Transform - pos: 45.5,1.5 - parent: 21002 - - uid: 25560 - components: - - type: Transform - pos: 46.5,18.5 - parent: 21002 - - uid: 25561 - components: - - type: Transform - pos: 60.5,15.5 - parent: 21002 - - uid: 25562 - components: - - type: Transform - pos: 45.5,29.5 - parent: 21002 - - uid: 25563 - components: - - type: Transform - pos: 14.5,25.5 - parent: 21002 - - uid: 25649 - components: - - type: Transform - pos: 56.5,3.5 - parent: 21002 - - uid: 25960 - components: - - type: Transform - pos: 54.5,40.5 - parent: 21002 - - uid: 26097 - components: - - type: Transform - pos: 68.5,43.5 - parent: 21002 - - uid: 26114 - components: - - type: Transform - pos: 70.5,52.5 - parent: 21002 - - uid: 26172 - components: - - type: Transform - pos: 69.5,50.5 - parent: 21002 - - uid: 26407 - components: - - type: Transform - pos: 33.5,-11.5 - parent: 21002 - - uid: 26523 - components: - - type: Transform - pos: 85.5,6.5 - parent: 21002 - - uid: 26825 - components: - - type: Transform - pos: 29.5,-12.5 - parent: 21002 - - uid: 26841 - components: - - type: Transform - pos: 31.5,-17.5 - parent: 21002 - - uid: 27391 - components: - - type: Transform - pos: 66.5,-3.5 - parent: 21002 - - uid: 27705 - components: - - type: Transform - pos: 72.5,-12.5 - parent: 21002 - - uid: 27907 - components: - - type: Transform - pos: 51.5,-18.5 - parent: 21002 - proto: SpaceVillainArcadeComputerCircuitboard entities: - uid: 5813 @@ -158358,22 +158140,6 @@ entities: - type: Transform pos: 44.5,-11.5 parent: 2 -- proto: StimpackMini - entities: - - uid: 22144 - components: - - type: Transform - parent: 22143 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22145 - components: - - type: Transform - parent: 22143 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Stool entities: - uid: 930 @@ -162943,22 +162709,6 @@ entities: - type: Transform pos: 16.02112,29.37049 parent: 2 -- proto: TowercapSeeds - entities: - - uid: 21648 - components: - - type: Transform - parent: 21647 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21649 - components: - - type: Transform - parent: 21647 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ToyAi entities: - uid: 12731 @@ -174990,12 +174740,133 @@ entities: - type: Transform pos: 23.5,-9.5 parent: 21002 + - uid: 21559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,77.5 + parent: 2 + - uid: 21560 + components: + - type: Transform + pos: 5.5,72.5 + parent: 2 + - uid: 21561 + components: + - type: Transform + pos: 4.5,72.5 + parent: 2 + - uid: 21600 + components: + - type: Transform + pos: 3.5,72.5 + parent: 2 + - uid: 21647 + components: + - type: Transform + pos: 3.5,71.5 + parent: 2 + - uid: 21648 + components: + - type: Transform + pos: 3.5,70.5 + parent: 2 + - uid: 21649 + components: + - type: Transform + pos: 21.5,72.5 + parent: 2 + - uid: 21678 + components: + - type: Transform + pos: 22.5,72.5 + parent: 2 + - uid: 21679 + components: + - type: Transform + pos: 23.5,72.5 + parent: 2 + - uid: 21680 + components: + - type: Transform + pos: 23.5,71.5 + parent: 2 + - uid: 21681 + components: + - type: Transform + pos: 23.5,70.5 + parent: 2 + - uid: 21773 + components: + - type: Transform + pos: 19.5,77.5 + parent: 2 + - uid: 21845 + components: + - type: Transform + pos: 18.5,77.5 + parent: 2 + - uid: 21846 + components: + - type: Transform + pos: 17.5,77.5 + parent: 2 + - uid: 21847 + components: + - type: Transform + pos: 16.5,77.5 + parent: 2 + - uid: 21982 + components: + - type: Transform + pos: 15.5,77.5 + parent: 2 + - uid: 21983 + components: + - type: Transform + pos: 14.5,77.5 + parent: 2 + - uid: 22064 + components: + - type: Transform + pos: 13.5,77.5 + parent: 2 + - uid: 22143 + components: + - type: Transform + pos: 12.5,77.5 + parent: 2 + - uid: 22144 + components: + - type: Transform + pos: 11.5,77.5 + parent: 2 + - uid: 22145 + components: + - type: Transform + pos: 10.5,77.5 + parent: 2 + - uid: 22147 + components: + - type: Transform + pos: 9.5,77.5 + parent: 2 - uid: 22168 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,24.5 parent: 21002 + - uid: 22197 + components: + - type: Transform + pos: 8.5,77.5 + parent: 2 + - uid: 22198 + components: + - type: Transform + pos: 7.5,77.5 + parent: 2 - uid: 22210 components: - type: Transform @@ -176548,6 +176419,12 @@ entities: - type: Transform pos: 25.5,-9.5 parent: 21002 + - uid: 26172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,77.5 + parent: 2 - uid: 26691 components: - type: Transform @@ -182134,15 +182011,6 @@ entities: - type: Transform pos: 45.517193,-35.503773 parent: 2 -- proto: WeaponPistolMk58 - entities: - - uid: 22247 - components: - - type: Transform - parent: 22574 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: WeaponPistolN1984 entities: - uid: 4204 @@ -182150,15 +182018,6 @@ entities: - type: Transform pos: 32.46886,-20.362041 parent: 2 -- proto: WeaponProtoKineticAccelerator - entities: - - uid: 21983 - components: - - type: Transform - parent: 21982 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: WeaponRifleFoam entities: - uid: 15416 @@ -183950,7 +183809,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -378181.78 + secondsUntilStateChange: -382615.2 state: Opening - uid: 28863 components: diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 3cbcd40652..ae09e9e5fd 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -78,7 +78,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,0: ind: -2,0 @@ -90,7 +90,7 @@ entities: version: 6 -1,2: ind: -1,2 - tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADBwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADBwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 @@ -118,7 +118,7 @@ entities: version: 6 -2,2: ind: -2,2 - tiles: WQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 @@ -142,7 +142,7 @@ entities: version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAD + tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAD version: 6 0,-3: ind: 0,-3 @@ -174,7 +174,7 @@ entities: version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABeQAAAAAABwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAABwAAAAAABwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAABwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABBwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAA + tiles: AAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAABwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABBwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAA version: 6 -2,-2: ind: -2,-2 @@ -210,7 +210,7 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -5,-2: ind: -5,-2 @@ -361,6 +361,11 @@ entities: 867: -55,-9 868: -53,-11 1369: -19,-19 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 1607: -13,-39 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -938,6 +943,12 @@ entities: 1396: -22,-13 1397: -22,-12 1606: 5,-4 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 1609: -49,-26 - node: cleanable: True color: '#FFFFFFFF' @@ -2306,6 +2317,12 @@ entities: id: SpaceStationSign7 decals: 953: 0,-13 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 1608: -13,-40 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale @@ -4280,6 +4297,21 @@ entities: - 12226 - 1853 - 1852 + - uid: 9593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-38.5 + parent: 4812 + - type: DeviceList + devices: + - 12321 + - 5071 + - 5072 + - 5224 + - 5223 + - 5225 + - 5222 - uid: 12171 components: - type: Transform @@ -4956,21 +4988,6 @@ entities: - 8591 - 8758 - 8770 - - uid: 12322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-39.5 - parent: 4812 - - type: DeviceList - devices: - - 12321 - - 5072 - - 5071 - - 5223 - - 5222 - - 5224 - - 5225 - uid: 12325 components: - type: Transform @@ -5561,16 +5578,34 @@ entities: - type: Transform pos: 32.5,2.5 parent: 4812 + - uid: 8476 + components: + - type: Transform + pos: -47.5,-24.5 + parent: 4812 - uid: 9614 components: - type: Transform pos: -41.5,-27.5 parent: 4812 + - uid: 9637 + components: + - type: Transform + pos: -17.5,30.5 + parent: 4812 - uid: 9651 components: - type: Transform pos: -11.5,-56.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 12107: + - DoorStatus: Close + 9656: + - DoorStatus: Close - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 6362 @@ -5578,11 +5613,23 @@ entities: - type: Transform pos: -47.5,-3.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6363: + - DoorStatus: DoorBolt - uid: 6363 components: - type: Transform pos: -50.5,-4.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6362: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - uid: 2919 @@ -5590,11 +5637,23 @@ entities: - type: Transform pos: 25.5,14.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2920: + - DoorStatus: DoorBolt - uid: 2920 components: - type: Transform pos: 28.5,14.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2919: + - DoorStatus: DoorBolt - uid: 3040 components: - type: Transform @@ -5612,16 +5671,34 @@ entities: - type: Transform pos: -56.5,-22.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10405: + - DoorStatus: DoorBolt - uid: 11139 components: - type: Transform pos: 38.5,-36.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11141: + - DoorStatus: DoorBolt - uid: 11141 components: - type: Transform pos: 35.5,-36.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11139: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 3760 @@ -5636,6 +5713,25 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-43.5 parent: 4812 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 3769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-39.5 + parent: 4812 + - uid: 8492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,32.5 + parent: 4812 + - uid: 10917 + components: + - type: Transform + pos: -47.5,-26.5 + parent: 4812 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 3190 @@ -5691,11 +5787,23 @@ entities: - type: Transform pos: -10.5,-59.5 parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9651: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 12107 components: - type: Transform pos: -11.5,-59.5 parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9651: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalLocked entities: - uid: 2737 @@ -5703,36 +5811,78 @@ entities: - type: Transform pos: 12.5,31.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2814: + - DoorStatus: DoorBolt - uid: 2814 components: - type: Transform pos: 12.5,33.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2737: + - DoorStatus: DoorBolt - uid: 3349 components: - type: Transform pos: 21.5,10.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3350: + - DoorStatus: DoorBolt - uid: 3350 components: - type: Transform pos: 19.5,10.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3349: + - DoorStatus: DoorBolt - uid: 3686 components: - type: Transform pos: 3.5,44.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3687: + - DoorStatus: DoorBolt - uid: 3687 components: - type: Transform pos: 4.5,45.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3686: + - DoorStatus: DoorBolt - uid: 10405 components: - type: Transform pos: -54.5,-22.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10406: + - DoorStatus: DoorBolt - proto: AirlockFreezer entities: - uid: 3119 @@ -6237,6 +6387,12 @@ entities: - type: Transform pos: 25.5,-34.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11676: + - DoorStatus: DoorBolt - uid: 11350 components: - type: Transform @@ -6252,6 +6408,12 @@ entities: - type: Transform pos: 25.5,-37.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11326: + - DoorStatus: DoorBolt - uid: 11802 components: - type: Transform @@ -6845,6 +7007,9 @@ entities: - type: Transform pos: -10.5,-40.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - uid: 12326 components: - type: Transform @@ -8016,16 +8181,6 @@ entities: - type: Transform pos: 37.5,-21.5 parent: 4812 - - uid: 8458 - components: - - type: Transform - pos: -19.5,36.5 - parent: 4812 - - uid: 8459 - components: - - type: Transform - pos: -19.5,35.5 - parent: 4812 - uid: 8460 components: - type: Transform @@ -8056,31 +8211,6 @@ entities: - type: Transform pos: -20.5,31.5 parent: 4812 - - uid: 8466 - components: - - type: Transform - pos: -19.5,31.5 - parent: 4812 - - uid: 8467 - components: - - type: Transform - pos: -18.5,31.5 - parent: 4812 - - uid: 8468 - components: - - type: Transform - pos: -17.5,31.5 - parent: 4812 - - uid: 8469 - components: - - type: Transform - pos: -16.5,31.5 - parent: 4812 - - uid: 8470 - components: - - type: Transform - pos: -15.5,31.5 - parent: 4812 - uid: 8471 components: - type: Transform @@ -8101,101 +8231,11 @@ entities: - type: Transform pos: -14.5,32.5 parent: 4812 - - uid: 8475 - components: - - type: Transform - pos: -15.5,32.5 - parent: 4812 - - uid: 8476 - components: - - type: Transform - pos: -18.5,32.5 - parent: 4812 - - uid: 8479 - components: - - type: Transform - pos: -19.5,32.5 - parent: 4812 - - uid: 8480 - components: - - type: Transform - pos: -19.5,33.5 - parent: 4812 - - uid: 8483 - components: - - type: Transform - pos: -16.5,33.5 - parent: 4812 - uid: 8484 components: - type: Transform pos: -15.5,33.5 parent: 4812 - - uid: 8485 - components: - - type: Transform - pos: -15.5,34.5 - parent: 4812 - - uid: 8486 - components: - - type: Transform - pos: -16.5,34.5 - parent: 4812 - - uid: 8487 - components: - - type: Transform - pos: -17.5,34.5 - parent: 4812 - - uid: 8488 - components: - - type: Transform - pos: -18.5,34.5 - parent: 4812 - - uid: 8489 - components: - - type: Transform - pos: -19.5,34.5 - parent: 4812 - - uid: 8490 - components: - - type: Transform - pos: -18.5,35.5 - parent: 4812 - - uid: 8491 - components: - - type: Transform - pos: -17.5,35.5 - parent: 4812 - - uid: 8492 - components: - - type: Transform - pos: -16.5,35.5 - parent: 4812 - - uid: 8493 - components: - - type: Transform - pos: -17.5,36.5 - parent: 4812 - - uid: 8494 - components: - - type: Transform - pos: -18.5,36.5 - parent: 4812 - - uid: 8495 - components: - - type: Transform - pos: -18.5,37.5 - parent: 4812 - - uid: 8496 - components: - - type: Transform - pos: -18.5,38.5 - parent: 4812 - - uid: 8497 - components: - - type: Transform - pos: -17.5,38.5 - parent: 4812 - uid: 8498 components: - type: Transform @@ -8356,31 +8396,6 @@ entities: - type: Transform pos: -43.5,-32.5 parent: 4812 - - uid: 9630 - components: - - type: Transform - pos: -46.5,-29.5 - parent: 4812 - - uid: 9631 - components: - - type: Transform - pos: -46.5,-30.5 - parent: 4812 - - uid: 9632 - components: - - type: Transform - pos: -47.5,-29.5 - parent: 4812 - - uid: 9633 - components: - - type: Transform - pos: -46.5,-28.5 - parent: 4812 - - uid: 9637 - components: - - type: Transform - pos: -46.5,-26.5 - parent: 4812 - uid: 9638 components: - type: Transform @@ -9411,11 +9426,6 @@ entities: - type: Transform pos: 35.5,-41.5 parent: 4812 - - uid: 12144 - components: - - type: Transform - pos: -48.5,-25.5 - parent: 4812 - proto: AsteroidRockMining entities: - uid: 12146 @@ -9423,67 +9433,96 @@ entities: - type: Transform pos: -52.5,-3.5 parent: 4812 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 2781 components: - type: Transform - pos: 23.5,25.5 + rot: -1.5707963267948966 rad + pos: -13.5,-39.5 parent: 4812 - - uid: 2845 + - uid: 8478 components: - type: Transform + rot: 1.5707963267948966 rad pos: 23.5,27.5 parent: 4812 - - uid: 3260 + - uid: 8479 components: - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,25.5 + parent: 4812 + - uid: 8480 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: 34.5,-7.5 parent: 4812 - - uid: 3263 + - uid: 8481 components: - type: Transform - pos: 34.5,0.5 + rot: 1.5707963267948966 rad + pos: 34.5,2.5 parent: 4812 - - uid: 3423 + - uid: 8483 components: - type: Transform + rot: 1.5707963267948966 rad pos: 34.5,-5.5 parent: 4812 - - uid: 3424 + - uid: 8485 components: - type: Transform - pos: 34.5,2.5 + rot: 1.5707963267948966 rad + pos: 34.5,0.5 parent: 4812 - - uid: 3455 + - uid: 8486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 4812 + - uid: 8487 components: - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-6.5 parent: 4812 - - uid: 3456 + - uid: 8488 components: - type: Transform - pos: 4.5,-4.5 + rot: -1.5707963267948966 rad + pos: -14.5,-50.5 parent: 4812 - - uid: 3766 + - uid: 8489 components: - type: Transform - pos: -13.5,-50.5 + rot: 1.5707963267948966 rad + pos: -7.5,-50.5 parent: 4812 - - uid: 3767 + - uid: 8490 components: - type: Transform - pos: -8.5,-50.5 + rot: 1.5707963267948966 rad + pos: -7.5,-43.5 parent: 4812 - - uid: 3768 + - uid: 8491 components: - type: Transform - pos: -8.5,-43.5 + rot: -1.5707963267948966 rad + pos: -14.5,-43.5 parent: 4812 - - uid: 3769 + - uid: 8494 components: - type: Transform - pos: -13.5,-43.5 + rot: 3.141592653589793 rad + pos: -17.5,32.5 + parent: 4812 + - uid: 9630 + components: + - type: Transform + pos: -47.5,-26.5 parent: 4812 - proto: AtmosFixBlockerMarker entities: @@ -16869,6 +16908,21 @@ entities: - type: Transform pos: -17.5,28.5 parent: 4812 + - uid: 8458 + components: + - type: Transform + pos: -17.5,31.5 + parent: 4812 + - uid: 8459 + components: + - type: Transform + pos: -17.5,30.5 + parent: 4812 + - uid: 8466 + components: + - type: Transform + pos: -17.5,29.5 + parent: 4812 - uid: 8908 components: - type: Transform @@ -28442,6 +28496,13 @@ entities: - Steel - Glass - Gold +- proto: CleanerDispenser + entities: + - uid: 8493 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 4812 - proto: ClosetBombFilled entities: - uid: 6331 @@ -28633,6 +28694,11 @@ entities: showEnts: False occludes: True ent: null + - uid: 2845 + components: + - type: Transform + pos: -18.5,31.5 + parent: 4812 - uid: 3786 components: - type: Transform @@ -28915,6 +28981,11 @@ entities: showEnts: False occludes: True ent: null + - uid: 9632 + components: + - type: Transform + pos: -48.5,-25.5 + parent: 4812 - uid: 10407 components: - type: Transform @@ -29063,6 +29134,13 @@ entities: showEnts: False occludes: True ent: null +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 9631 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 4812 - proto: ClosetFireFilled entities: - uid: 1514 @@ -29236,43 +29314,11 @@ entities: showEnts: False occludes: True ent: null - - uid: 8328 + - uid: 8456 components: - type: Transform - pos: -17.5,29.5 + pos: -16.5,31.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 9688 components: - type: Transform @@ -30292,16 +30338,16 @@ entities: parent: 4812 - proto: ClothingEyesEyepatch entities: - - uid: 8481 - components: - - type: Transform - pos: -16.839548,32.557995 - parent: 4812 - uid: 9657 components: - type: Transform pos: 25.533524,-9.424093 parent: 4812 + - uid: 12144 + components: + - type: Transform + pos: -14.245123,35.0185 + parent: 473 - proto: ClothingEyesGlasses entities: - uid: 6205 @@ -30522,10 +30568,10 @@ entities: parent: 4812 - proto: ClothingHeadHatPirate entities: - - uid: 11675 + - uid: 11933 components: - type: Transform - pos: -17.677834,32.905758 + pos: -21.445757,35.638134 parent: 4812 - proto: ClothingHeadHatPumpkin entities: @@ -30881,10 +30927,10 @@ entities: parent: 4812 - proto: ClothingOuterCoatPirate entities: - - uid: 8478 + - uid: 11934 components: - type: Transform - pos: -17.511423,32.47987 + pos: -23.764275,32.548626 parent: 4812 - proto: ClothingOuterGhostSheet entities: @@ -32771,6 +32817,23 @@ entities: - type: Transform pos: -31.5,-6.5 parent: 4812 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 3980 + components: + - type: Transform + pos: -17.5,31.5 + parent: 4812 + - uid: 8475 + components: + - type: Transform + pos: -47.5,-25.5 + parent: 4812 + - uid: 9633 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 4812 - proto: DefaultStationBeaconEvac entities: - uid: 12480 @@ -35718,15 +35781,15 @@ entities: parent: 4812 - proto: DrinkLithiumFlask entities: - - uid: 3611 + - uid: 3423 components: - type: Transform - pos: -18.350801,33.411205 + pos: -21.4602,33.34266 parent: 4812 - - uid: 12466 + - uid: 11675 components: - type: Transform - pos: -18.56759,33.562008 + pos: -21.301329,33.55921 parent: 4812 - proto: DrinkMugBlack entities: @@ -37253,11 +37316,17 @@ entities: - type: Transform pos: -11.5,-36.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - uid: 5072 components: - type: Transform pos: -10.5,-36.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - uid: 5308 components: - type: Transform @@ -51284,6 +51353,9 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-52.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5225 @@ -51292,6 +51364,9 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-41.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5697 @@ -52035,6 +52110,9 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-51.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5224 @@ -52043,6 +52121,9 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-42.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5699 @@ -53122,11 +53203,28 @@ entities: - type: Transform pos: 22.5,29.5 parent: 4812 + - uid: 3611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,38.5 + parent: 4812 - uid: 3701 components: - type: Transform pos: 10.5,54.5 parent: 4812 + - uid: 3767 + components: + - type: Transform + pos: -19.5,37.5 + parent: 4812 + - uid: 3768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,39.5 + parent: 4812 - uid: 4385 components: - type: Transform @@ -53412,6 +53510,17 @@ entities: - type: Transform pos: 32.5,-12.5 parent: 4812 + - uid: 4693 + components: + - type: Transform + pos: -15.5,35.5 + parent: 4812 + - uid: 4695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,38.5 + parent: 4812 - uid: 4722 components: - type: Transform @@ -53595,7 +53704,8 @@ entities: - uid: 4768 components: - type: Transform - pos: -12.5,-38.5 + rot: 3.141592653589793 rad + pos: -19.5,39.5 parent: 4812 - uid: 4769 components: @@ -54235,6 +54345,12 @@ entities: - type: Transform pos: -7.5,-27.5 parent: 4812 + - uid: 7635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,32.5 + parent: 4812 - uid: 7915 components: - type: Transform @@ -54388,6 +54504,30 @@ entities: - type: Transform pos: -23.5,26.5 parent: 4812 + - uid: 8328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,32.5 + parent: 4812 + - uid: 8467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-29.5 + parent: 4812 + - uid: 8470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-30.5 + parent: 4812 + - uid: 8496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-26.5 + parent: 4812 - uid: 8526 components: - type: Transform @@ -55118,11 +55258,6 @@ entities: - type: Transform pos: -14.5,-59.5 parent: 4812 - - uid: 10609 - components: - - type: Transform - pos: -47.5,-24.5 - parent: 4812 - uid: 10632 components: - type: Transform @@ -55158,6 +55293,11 @@ entities: - type: Transform pos: 11.5,-42.5 parent: 4812 + - uid: 11337 + components: + - type: Transform + pos: -20.5,37.5 + parent: 4812 - uid: 11354 components: - type: Transform @@ -55318,6 +55458,11 @@ entities: - type: Transform pos: 20.5,-39.5 parent: 4812 + - uid: 11935 + components: + - type: Transform + pos: -19.5,33.5 + parent: 4812 - uid: 12108 components: - type: Transform @@ -58288,6 +58433,11 @@ entities: - type: Transform pos: 26.5,-22.5 parent: 4812 + - uid: 8495 + components: + - type: Transform + pos: -46.5,-23.5 + parent: 4812 - uid: 8849 components: - type: Transform @@ -58318,11 +58468,6 @@ entities: - type: Transform pos: -34.5,8.5 parent: 4812 - - uid: 10917 - components: - - type: Transform - pos: -47.5,-23.5 - parent: 4812 - uid: 11787 components: - type: Transform @@ -61322,6 +61467,12 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 3260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,31.5 + parent: 4812 - uid: 3280 components: - type: Transform @@ -63655,11 +63806,6 @@ entities: - type: Transform pos: -9.5,-54.5 parent: 4812 - - uid: 4695 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 4812 - uid: 4697 components: - type: Transform @@ -64365,6 +64511,12 @@ entities: - type: Transform pos: -21.5,26.5 parent: 4812 + - uid: 8468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-26.5 + parent: 4812 - uid: 8627 components: - type: Transform @@ -64570,11 +64722,6 @@ entities: - type: Transform pos: -43.5,-25.5 parent: 4812 - - uid: 9593 - components: - - type: Transform - pos: -47.5,-24.5 - parent: 4812 - uid: 9599 components: - type: Transform @@ -65636,8 +65783,6 @@ entities: - type: Transform pos: -34.5,0.5 parent: 4812 -- proto: SignAtmosMinsky - entities: - uid: 8721 components: - type: Transform @@ -65690,8 +65835,6 @@ entities: - type: Transform pos: -10.5,-19.5 parent: 4812 -- proto: SignChemistry1 - entities: - uid: 6642 components: - type: Transform @@ -65946,13 +66089,6 @@ entities: - type: Transform pos: -12.5,-41.5 parent: 4812 -- proto: SignDrones - entities: - - uid: 11937 - components: - - type: Transform - pos: -12.5,18.5 - parent: 4812 - proto: SignElectricalMed entities: - uid: 3978 @@ -66044,20 +66180,16 @@ entities: parent: 4812 - proto: SignHydro1 entities: - - uid: 1076 + - uid: 1075 components: - type: Transform - pos: -7.5,-10.5 + pos: -6.5,-4.5 parent: 4812 -- proto: SignHydro2 - entities: - - uid: 1075 + - uid: 1076 components: - type: Transform - pos: -6.5,-4.5 + pos: -7.5,-10.5 parent: 4812 -- proto: SignHydro3 - entities: - uid: 6685 components: - type: Transform @@ -66082,19 +66214,19 @@ entities: - type: Transform pos: -22.5,-13.5 parent: 4812 -- proto: SignMedical +- proto: SignMaterials entities: - - uid: 7299 + - uid: 11937 components: - type: Transform - pos: -7.5,-23.5 + pos: -12.5,18.5 parent: 4812 -- proto: SignMinerDock +- proto: SignMedical entities: - - uid: 3344 + - uid: 7299 components: - type: Transform - pos: 21.5,16.5 + pos: -7.5,-23.5 parent: 4812 - proto: SignMorgue entities: @@ -66184,20 +66316,16 @@ entities: parent: 4812 - proto: SignScience entities: - - uid: 6176 + - uid: 6175 components: - type: Transform - pos: 2.5,-19.5 + pos: 8.5,-13.5 parent: 4812 -- proto: SignScience1 - entities: - - uid: 6175 + - uid: 6176 components: - type: Transform - pos: 8.5,-13.5 + pos: 2.5,-19.5 parent: 4812 -- proto: SignScience2 - entities: - uid: 6177 components: - type: Transform @@ -66286,6 +66414,13 @@ entities: - type: Transform pos: -1.5,-30.5 parent: 4812 +- proto: SignShipDock + entities: + - uid: 3344 + components: + - type: Transform + pos: 21.5,16.5 + parent: 4812 - proto: SignSmoking entities: - uid: 8607 @@ -66372,7 +66507,7 @@ entities: - type: Transform pos: -21.5,12.5 parent: 4812 -- proto: SignToxins2 +- proto: SignToxins entities: - uid: 6645 components: @@ -66386,7 +66521,7 @@ entities: - type: Transform pos: -32.5,-32.5 parent: 4812 -- proto: SignXenolab +- proto: SignXenobio entities: - uid: 11143 components: @@ -72263,6 +72398,11 @@ entities: - type: Transform pos: 20.5,9.5 parent: 4812 + - uid: 3263 + components: + - type: Transform + pos: -19.5,31.5 + parent: 4812 - uid: 3288 components: - type: Transform @@ -72293,6 +72433,11 @@ entities: - type: Transform pos: 23.5,6.5 parent: 4812 + - uid: 3424 + components: + - type: Transform + pos: -15.5,31.5 + parent: 4812 - uid: 3428 components: - type: Transform @@ -72328,6 +72473,16 @@ entities: - type: Transform pos: 13.5,31.5 parent: 4812 + - uid: 3455 + components: + - type: Transform + pos: -15.5,32.5 + parent: 4812 + - uid: 3456 + components: + - type: Transform + pos: -19.5,32.5 + parent: 4812 - uid: 3486 components: - type: Transform @@ -72888,6 +73043,11 @@ entities: - type: Transform pos: 22.5,2.5 parent: 4812 + - uid: 3766 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 4812 - uid: 3990 components: - type: Transform @@ -73128,11 +73288,6 @@ entities: - type: Transform pos: -12.5,-53.5 parent: 4812 - - uid: 4693 - components: - - type: Transform - pos: -12.5,-39.5 - parent: 4812 - uid: 4694 components: - type: Transform @@ -74076,11 +74231,6 @@ entities: - type: Transform pos: -23.5,-24.5 parent: 4812 - - uid: 7635 - components: - - type: Transform - pos: -17.5,30.5 - parent: 4812 - uid: 7636 components: - type: Transform @@ -74711,6 +74861,17 @@ entities: - type: Transform pos: -35.5,8.5 parent: 4812 + - uid: 8469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-26.5 + parent: 4812 + - uid: 8497 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 4812 - uid: 8621 components: - type: Transform @@ -77643,11 +77804,6 @@ entities: - type: Transform pos: 10.5,40.5 parent: 4812 - - uid: 3980 - components: - - type: Transform - pos: -17.5,37.5 - parent: 4812 - uid: 3981 components: - type: Transform @@ -78853,11 +79009,6 @@ entities: - type: Transform pos: -20.5,28.5 parent: 4812 - - uid: 8456 - components: - - type: Transform - pos: -19.5,37.5 - parent: 4812 - uid: 8457 components: - type: Transform @@ -79003,11 +79154,6 @@ entities: - type: Transform pos: -42.5,-22.5 parent: 4812 - - uid: 10404 - components: - - type: Transform - pos: -47.5,-28.5 - parent: 4812 - uid: 10613 components: - type: Transform @@ -80438,6 +80584,18 @@ entities: - type: Transform pos: -28.5,-26.5 parent: 4812 + - uid: 10404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,32.5 + parent: 4812 + - uid: 10609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,32.5 + parent: 4812 - proto: WindowDirectional entities: - uid: 890 diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index 6954fe7892..2691ed2a78 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -7294,11 +7294,27 @@ entities: - type: Transform pos: 37.5,-39.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4391: + - DoorStatus: DoorBolt - uid: 4391 components: - type: Transform pos: 35.5,-37.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 4385: + - DoorStatus: DoorBolt + 4392: + - DoorStatus: DoorBolt + 4390: + - DoorStatus: DoorBolt - proto: AirlockExternalEngineeringLocked entities: - uid: 69 @@ -7306,21 +7322,45 @@ entities: - type: Transform pos: 11.5,37.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 70: + - DoorStatus: DoorBolt - uid: 70 components: - type: Transform pos: 11.5,35.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 69: + - DoorStatus: DoorBolt - uid: 171 components: - type: Transform pos: 15.5,-41.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 173: + - DoorStatus: DoorBolt - uid: 173 components: - type: Transform pos: 13.5,-43.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 171: + - DoorStatus: DoorBolt - uid: 225 components: - type: Transform @@ -7336,31 +7376,67 @@ entities: - type: Transform pos: 74.5,45.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2128: + - DoorStatus: DoorBolt - uid: 2128 components: - type: Transform pos: 72.5,45.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1902: + - DoorStatus: DoorBolt - uid: 4385 components: - type: Transform pos: 33.5,-39.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4391: + - DoorStatus: DoorBolt - uid: 4392 components: - type: Transform pos: 35.5,-41.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4391: + - DoorStatus: DoorBolt - uid: 12931 components: - type: Transform pos: 33.5,-47.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12932: + - DoorStatus: DoorBolt - uid: 12932 components: - type: Transform pos: 32.5,-49.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12931: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - uid: 258 @@ -7378,21 +7454,53 @@ entities: - type: Transform pos: 6.5,16.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 7886: + - DoorStatus: DoorBolt + 7881: + - DoorStatus: DoorBolt - uid: 7674 components: - type: Transform pos: 6.5,17.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 7886: + - DoorStatus: DoorBolt + 7881: + - DoorStatus: DoorBolt - uid: 7881 components: - type: Transform pos: 4.5,17.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 6863: + - DoorStatus: DoorBolt + 7674: + - DoorStatus: DoorBolt - uid: 7886 components: - type: Transform pos: 4.5,16.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 7674: + - DoorStatus: DoorBolt + 6863: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 2734 @@ -7400,11 +7508,23 @@ entities: - type: Transform pos: -5.5,-18.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6839: + - DoorStatus: DoorBolt - uid: 6839 components: - type: Transform pos: -5.5,-15.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2734: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 1332 @@ -7448,26 +7568,56 @@ entities: - type: Transform pos: 1.5,-35.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1370: + - DoorStatus: DoorBolt - uid: 1370 components: - type: Transform pos: -0.5,-35.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1369: + - DoorStatus: DoorBolt - uid: 3202 components: - type: Transform pos: 56.5,49.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2167: + - DoorStatus: Close - uid: 8728 components: - type: Transform pos: 87.5,-20.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10751: + - DoorStatus: DoorBolt - uid: 10751 components: - type: Transform pos: 84.5,-20.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8728: + - DoorStatus: DoorBolt - proto: AirlockExternalShuttleLocked entities: - uid: 2167 @@ -7476,6 +7626,12 @@ entities: rot: 3.141592653589793 rad pos: 56.5,51.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3202: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockFreezer entities: - uid: 10 @@ -9272,47 +9428,61 @@ entities: - type: Transform pos: 36.5,-21.5 parent: 2 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 136 components: - type: Transform - pos: -2.5,2.5 + rot: 3.141592653589793 rad + pos: -4.5,2.5 parent: 2 - uid: 373 components: - type: Transform + rot: 3.141592653589793 rad pos: -12.5,-10.5 parent: 2 - uid: 608 components: - type: Transform + rot: 3.141592653589793 rad pos: -19.5,-10.5 parent: 2 - uid: 2027 components: - type: Transform - pos: -4.5,2.5 + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-10.5 parent: 2 - uid: 6591 components: - type: Transform + rot: 1.5707963267948966 rad pos: 32.5,-10.5 parent: 2 - uid: 6592 components: - type: Transform - pos: 28.5,-10.5 + rot: -1.5707963267948966 rad + pos: 4.5,26.5 parent: 2 - - uid: 12295 + - uid: 6874 components: - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,24.5 parent: 2 - - uid: 12296 + - uid: 6876 components: - type: Transform - pos: 4.5,26.5 + rot: 1.5707963267948966 rad + pos: 87.5,4.5 parent: 2 - proto: AtmosFixBlockerMarker entities: @@ -10063,7 +10233,7 @@ entities: - type: Transform pos: 114.5,-17.5 parent: 2 -- proto: BookChefGaming +- proto: BookHowToCookForFortySpaceman entities: - uid: 297 components: @@ -21935,6 +22105,16 @@ entities: - type: Transform pos: 16.5,-12.5 parent: 2 + - uid: 6938 + components: + - type: Transform + pos: 116.5,-15.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + pos: 116.5,-17.5 + parent: 2 - uid: 7148 components: - type: Transform @@ -31765,6 +31945,14 @@ entities: - Steel - Glass - Gold +- proto: CleanerDispenser + entities: + - uid: 6875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 - proto: ClosetBombFilled entities: - uid: 12854 @@ -65771,17 +65959,15 @@ entities: parent: 2 - proto: SignAtmos entities: - - uid: 4575 + - uid: 4574 components: - type: Transform - pos: 28.5,-26.5 + pos: 37.5,-38.5 parent: 2 -- proto: SignAtmosMinsky - entities: - - uid: 4574 + - uid: 4575 components: - type: Transform - pos: 37.5,-38.5 + pos: 28.5,-26.5 parent: 2 - proto: SignBar entities: @@ -65826,7 +66012,7 @@ entities: - type: Transform pos: 39.519363,4.4919653 parent: 2 -- proto: SignChemistry1 +- proto: SignChem entities: - uid: 6817 components: @@ -65840,13 +66026,6 @@ entities: - type: Transform pos: 25.484035,39.437214 parent: 2 -- proto: SignCourt - entities: - - uid: 13166 - components: - - type: Transform - pos: 24.5,28.5 - parent: 2 - proto: SignCryogenicsMed entities: - uid: 11804 @@ -66195,19 +66374,17 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-2.5 parent: 2 -- proto: SignHydro2 +- proto: SignHydro1 entities: - - uid: 6651 + - uid: 6648 components: - type: Transform - pos: 41.5,-2.5 + pos: 47.5,-2.5 parent: 2 -- proto: SignHydro3 - entities: - - uid: 6648 + - uid: 6651 components: - type: Transform - pos: 47.5,-2.5 + pos: 41.5,-2.5 parent: 2 - proto: SignInterrogation entities: @@ -66246,6 +66423,11 @@ entities: - type: Transform pos: -4.5,-6.5 parent: 2 + - uid: 13166 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 - proto: SignLibrary entities: - uid: 11201 @@ -66268,13 +66450,6 @@ entities: - type: Transform pos: 53.5,1.5 parent: 2 -- proto: SignMinerDock - entities: - - uid: 7784 - components: - - type: Transform - pos: 6.5,18.5 - parent: 2 - proto: SignMorgue entities: - uid: 11196 @@ -66379,6 +66554,11 @@ entities: parent: 2 - proto: SignShipDock entities: + - uid: 7784 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 - uid: 9306 components: - type: Transform @@ -66493,7 +66673,7 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-13.5 parent: 2 -- proto: SignToxins2 +- proto: SignToxins entities: - uid: 12304 components: diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index e232aa3272..b407f2a9a5 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -4519,6 +4519,12 @@ entities: - type: Transform pos: -8.5,-42.5 parent: 31 + - uid: 10766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-16.5 + parent: 31 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 6995 @@ -5740,63 +5746,76 @@ entities: - type: Transform pos: 5.5,-32.5 parent: 31 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - - uid: 5157 + - uid: 950 components: - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-4.5 parent: 31 - - uid: 6694 + - uid: 5157 components: - type: Transform + rot: -1.5707963267948966 rad pos: -44.5,0.5 parent: 31 - - uid: 7138 + - uid: 6694 components: - type: Transform + rot: -1.5707963267948966 rad pos: -44.5,2.5 parent: 31 - - uid: 7346 + - uid: 7138 components: - type: Transform + rot: -1.5707963267948966 rad pos: -44.5,8.5 parent: 31 - - uid: 7566 + - uid: 7346 components: - type: Transform + rot: -1.5707963267948966 rad pos: -44.5,10.5 parent: 31 + - uid: 7566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,28.5 + parent: 31 - uid: 7567 components: - type: Transform + rot: 3.141592653589793 rad pos: 22.5,28.5 parent: 31 - uid: 7943 components: - type: Transform - pos: 20.5,28.5 + rot: 3.141592653589793 rad + pos: -12.5,-2.5 parent: 31 - uid: 9923 components: - type: Transform - pos: -12.5,-2.5 + pos: -8.5,-42.5 parent: 31 - uid: 10583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-42.5 + pos: -51.5,-12.5 parent: 31 - uid: 10765 components: - type: Transform pos: -44.5,-12.5 parent: 31 - - uid: 10766 + - uid: 11466 components: - type: Transform - pos: -51.5,-12.5 + rot: 3.141592653589793 rad + pos: 31.5,-16.5 parent: 31 - proto: AtmosFixBlockerMarker entities: @@ -28720,6 +28739,20 @@ entities: parent: 31 - type: NavMapBeacon text: Tesla Storage +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 11467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-17.5 + parent: 31 + - uid: 11468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-41.5 + parent: 31 - proto: DefaultStationBeaconEVAStorage entities: - uid: 7640 @@ -56347,8 +56380,6 @@ entities: - type: Transform pos: 18.5,-3.5 parent: 31 -- proto: SignChemistry2 - entities: - uid: 7291 components: - type: Transform @@ -56586,13 +56617,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.497889,6.2645836 parent: 31 -- proto: SignDrones - entities: - - uid: 7224 - components: - - type: Transform - pos: 26.5,2.5 - parent: 31 - proto: SignElectrical entities: - uid: 11377 @@ -56642,7 +56666,7 @@ entities: - type: Transform pos: 50.5,-1.5 parent: 31 -- proto: SignHydro2 +- proto: SignHydro1 entities: - uid: 10545 components: @@ -56685,20 +56709,19 @@ entities: - type: Transform pos: 32.5,23.5 parent: 31 -- proto: SignMedical +- proto: SignMaterials entities: - - uid: 4151 + - uid: 7224 components: - type: Transform - pos: 5.5,2.5 + pos: 26.5,2.5 parent: 31 -- proto: SignMinerDock +- proto: SignMedical entities: - - uid: 9941 + - uid: 4151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,38.5 + pos: 5.5,2.5 parent: 31 - proto: SignMorgue entities: @@ -56792,6 +56815,14 @@ entities: - type: Transform pos: 54.5,-10.5 parent: 31 +- proto: SignShipDock + entities: + - uid: 9941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,38.5 + parent: 31 - proto: SignSomethingOld2 entities: - uid: 1469 @@ -61591,11 +61622,6 @@ entities: - type: Transform pos: 53.5,-12.5 parent: 31 - - uid: 950 - components: - - type: Transform - pos: 31.5,-16.5 - parent: 31 - uid: 951 components: - type: Transform diff --git a/Resources/Maps/train.yml b/Resources/Maps/train.yml index 8bcbf97b86..60f562e5c7 100644 --- a/Resources/Maps/train.yml +++ b/Resources/Maps/train.yml @@ -74144,7 +74144,7 @@ entities: pos: 8.5,-176.5 parent: 2 - type: Door - secondsUntilStateChange: -141100.73 + secondsUntilStateChange: -141260.94 state: Closing - uid: 11227 components: @@ -81637,6 +81637,11 @@ entities: - type: Transform pos: -8.5,-314.5 parent: 2 + - uid: 16962 + components: + - type: Transform + pos: -5.5,-382.5 + parent: 2 - proto: RandomArtifactSpawner20 entities: - uid: 12481 @@ -84582,7 +84587,7 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-338.5 parent: 2 -- proto: SignAtmosMinsky +- proto: SignAtmos entities: - uid: 12994 components: @@ -90882,11 +90887,8 @@ entities: - uid: 13995 components: - type: Transform - anchored: False - pos: -5.4964814,-84.54825 + pos: -5.5,-84.5 parent: 2 - - type: Physics - bodyType: Dynamic - proto: VendingMachineSeedsUnlocked entities: - uid: 13996 diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 07d1a622ad..af1333e14c 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -166,6 +166,8 @@ name: Morph into Geras description: Morphs you into a Geras - a miniature version of you which allows you to move fast, at the cost of your inventory. components: + - type: ConfirmableAction + popup: gera-transformation-popup - type: InstantAction itemIconStyle: BigAction useDelay: 10 # prevent spam diff --git a/Resources/Prototypes/Atmospherics/gases.yml b/Resources/Prototypes/Atmospherics/gases.yml index eda562cdbf..2aa8900f11 100644 --- a/Resources/Prototypes/Atmospherics/gases.yml +++ b/Resources/Prototypes/Atmospherics/gases.yml @@ -84,7 +84,7 @@ specificHeat: 40 heatCapacityRatio: 1.3 molarMass: 44 - color: 2887E8 + color: 8F00FF reagent: NitrousOxide pricePerMole: 1 diff --git a/Resources/Prototypes/Body/Organs/Animal/animal.yml b/Resources/Prototypes/Body/Organs/Animal/animal.yml index 2f50821df3..8384e006df 100644 --- a/Resources/Prototypes/Body/Organs/Animal/animal.yml +++ b/Resources/Prototypes/Body/Organs/Animal/animal.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity id: BaseAnimalOrganUnGibbable parent: BaseItem abstract: true @@ -34,7 +34,7 @@ id: OrganAnimalLungs parent: BaseAnimalOrgan name: lungs - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -65,7 +65,7 @@ id: OrganAnimalStomach parent: BaseAnimalOrgan name: stomach - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: stomach @@ -91,7 +91,7 @@ id: OrganMouseStomach parent: OrganAnimalStomach name: stomach - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SolutionContainerManager solutions: @@ -102,7 +102,7 @@ id: OrganAnimalLiver parent: BaseAnimalOrgan name: liver - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: liver @@ -118,7 +118,7 @@ id: OrganAnimalHeart parent: BaseAnimalOrgan name: heart - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: heart-on @@ -135,7 +135,7 @@ id: OrganAnimalKidneys parent: BaseAnimalOrgan name: kidneys - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: diff --git a/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml b/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml index 8a1afc37bb..e360f362d8 100644 --- a/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml +++ b/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml @@ -1,8 +1,8 @@ -- type: entity +- type: entity id: OrganBloodsuckerStomach parent: OrganAnimalStomach name: stomach - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Metabolizer metabolizerTypes: [ Bloodsucker ] @@ -11,7 +11,7 @@ id: OrganBloodsuckerLiver parent: OrganAnimalLiver name: liver - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Metabolizer metabolizerTypes: [ Bloodsucker ] @@ -20,7 +20,7 @@ id: OrganBloodsuckerHeart parent: OrganAnimalHeart name: heart - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Metabolizer metabolizerTypes: [ Bloodsucker ] diff --git a/Resources/Prototypes/Body/Organs/Animal/ruminant.yml b/Resources/Prototypes/Body/Organs/Animal/ruminant.yml index 3c3062ddec..3b00e1a223 100644 --- a/Resources/Prototypes/Body/Organs/Animal/ruminant.yml +++ b/Resources/Prototypes/Body/Organs/Animal/ruminant.yml @@ -1,8 +1,8 @@ -- type: entity +- type: entity id: OrganAnimalRuminantStomach parent: OrganAnimalStomach name: ruminant stomach - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SolutionContainerManager solutions: diff --git a/Resources/Prototypes/Body/Organs/arachnid.yml b/Resources/Prototypes/Body/Organs/arachnid.yml index c1e199e112..29ca393d13 100644 --- a/Resources/Prototypes/Body/Organs/arachnid.yml +++ b/Resources/Prototypes/Body/Organs/arachnid.yml @@ -105,7 +105,7 @@ parent: BaseHumanOrgan name: liver description: "Pairing suggestion: chianti and fava beans." - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: liver @@ -122,7 +122,7 @@ parent: BaseHumanOrgan name: kidneys description: "Filters toxins from the bloodstream." - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: diff --git a/Resources/Prototypes/Body/Organs/diona.yml b/Resources/Prototypes/Body/Organs/diona.yml index 69fc630b9e..e248355df2 100644 --- a/Resources/Prototypes/Body/Organs/diona.yml +++ b/Resources/Prototypes/Body/Organs/diona.yml @@ -126,7 +126,7 @@ - type: entity id: OrganDionaBrainNymph parent: OrganDionaBrain - noSpawn: true + categories: [ HideSpawnMenu ] name: brain description: "The source of incredible, unending intelligence. Honk." components: @@ -138,7 +138,7 @@ - type: entity id: OrganDionaStomachNymph parent: OrganDionaStomach - noSpawn: true + categories: [ HideSpawnMenu ] name: stomach description: "Gross. This is hard to stomach." components: @@ -148,7 +148,7 @@ - type: entity id: OrganDionaLungsNymph parent: OrganDionaLungs - noSpawn: true + categories: [ HideSpawnMenu ] name: lungs description: "Filters oxygen from an atmosphere, which is then sent into the bloodstream to be used as an electron carrier." components: @@ -159,7 +159,7 @@ - type: entity id: OrganDionaNymphBrain parent: MobDionaNymph - noSpawn: true + categories: [ HideSpawnMenu ] name: diona nymph suffix: Brain description: Contains the brain of a formerly fully-formed Diona. Killing this would kill the Diona forever. You monster. @@ -171,7 +171,7 @@ - type: entity id: OrganDionaNymphStomach parent: MobDionaNymphAccent - noSpawn: true + categories: [ HideSpawnMenu ] name: diona nymph suffix: Stomach description: Contains the stomach of a formerly fully-formed Diona. It doesn't taste any better for it. @@ -183,7 +183,7 @@ - type: entity id: OrganDionaNymphLungs parent: MobDionaNymphAccent - noSpawn: true + categories: [ HideSpawnMenu ] name: diona nymph suffix: Lungs description: Contains the lungs of a formerly fully-formed Diona. Breathtaking. diff --git a/Resources/Prototypes/Body/Organs/moth.yml b/Resources/Prototypes/Body/Organs/moth.yml index aef5576048..535c25c9d3 100644 --- a/Resources/Prototypes/Body/Organs/moth.yml +++ b/Resources/Prototypes/Body/Organs/moth.yml @@ -1,7 +1,7 @@ -- type: entity +- type: entity id: OrganMothStomach parent: [OrganAnimalStomach, OrganHumanStomach] - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Stomach specialDigestible: diff --git a/Resources/Prototypes/Body/Organs/reptilian.yml b/Resources/Prototypes/Body/Organs/reptilian.yml index f8423582cc..34c736aec8 100644 --- a/Resources/Prototypes/Body/Organs/reptilian.yml +++ b/Resources/Prototypes/Body/Organs/reptilian.yml @@ -1,7 +1,7 @@ - type: entity id: OrganReptilianStomach parent: OrganAnimalStomach - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Stomach specialDigestible: diff --git a/Resources/Prototypes/Body/Parts/animal.yml b/Resources/Prototypes/Body/Parts/animal.yml index 4db026b40f..347b052c8b 100644 --- a/Resources/Prototypes/Body/Parts/animal.yml +++ b/Resources/Prototypes/Body/Parts/animal.yml @@ -36,7 +36,7 @@ id: HandsAnimal name: animal hands parent: PartAnimal - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -50,7 +50,7 @@ id: LegsAnimal name: animal legs parent: PartAnimal - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -64,7 +64,7 @@ id: FeetAnimal name: animal feet parent: PartAnimal - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -77,7 +77,7 @@ id: TorsoAnimal name: animal torso parent: PartAnimal - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: diff --git a/Resources/Prototypes/Body/Parts/rat.yml b/Resources/Prototypes/Body/Parts/rat.yml index 6a66eecc48..bd51e006f7 100644 --- a/Resources/Prototypes/Body/Parts/rat.yml +++ b/Resources/Prototypes/Body/Parts/rat.yml @@ -4,7 +4,7 @@ id: TorsoRat name: "animal torso" parent: PartAnimal - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: BodyPart partType: Torso diff --git a/Resources/Prototypes/Catalog/Bounties/bounties.yml b/Resources/Prototypes/Catalog/Bounties/bounties.yml index 40a71e976e..c25a27faca 100644 --- a/Resources/Prototypes/Catalog/Bounties/bounties.yml +++ b/Resources/Prototypes/Catalog/Bounties/bounties.yml @@ -502,6 +502,9 @@ - TemperatureProtection tags: - Scarf + blacklist: + components: + - ToggleableClothing - type: cargoBounty id: BountyBattery diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_service.yml b/Resources/Prototypes/Catalog/Cargo/cargo_service.yml index b13c541d66..3dd304e115 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_service.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_service.yml @@ -198,3 +198,12 @@ category: cargoproduct-category-name-service group: market +- type: cargoProduct + id: ServiceCandles + icon: + sprite: Objects/Misc/candles.rsi + state: candle-big + product: CrateCandles + cost: 500 + category: cargoproduct-category-name-service + group: market diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml index 4441d88b75..a91a1ade71 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml @@ -438,3 +438,17 @@ - id: DartYellow amount: 2 +- type: entity + name: envelope box + parent: BoxCardboard + id: BoxEnvelope + description: A box filled with envelopes. + components: + - type: Sprite + layers: + - state: box + - state: envelope + - type: StorageFill + contents: + - id: Envelope + amount: 9 \ No newline at end of file diff --git a/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml b/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml new file mode 100644 index 0000000000..4505a8cc7b --- /dev/null +++ b/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml @@ -0,0 +1,372 @@ +- type: entity + name: Perma Escape Crate Spawner + id: CratePermaEscapeSpawner + parent: CrateEmptySpawner + components: + - type: RandomSpawner + prototypes: + # Please note any duplicates & alphabetize <3 + - CrateEngineeringMiniJetpack + - CratePermaEscapeBureaucracy + - CratePermaEscapeEVA + - CratePermaEscapeGiftsFromSyndicate + - CratePermaEscapeGun + - CratePermaEscapeLights + - CratePermaEscapeMerc + - CrateServiceCustomSmokable + - CrateTrashCartFilled + - CratePermaEscapeComs # x2 + - CratePermaEscapeComs + - CratePermaEscapeDigging # x2 + - CratePermaEscapeDigging + - CratePermaEscapeMats #x2 + - CratePermaEscapeMats + - CratePermaEscapeTowercap # x2 + - CratePermaEscapeTowercap + - ClosetMaintenanceFilledRandom # x3 + - ClosetMaintenanceFilledRandom + - ClosetMaintenanceFilledRandom + rarePrototypes: + - MobTick # These need to be killable by one dude with a shovel. + rareChance: .30 + chance: 1 + offset: 0.0 + +- type: entity + id: CratePermaEscapeDigging + parent: CrateGenericSteel + suffix: Digging + components: + - type: StorageFill + contents: + - id: Shovel + - id: Pickaxe + prob: 0.90 + - id: Pickaxe + prob: 0.40 + - id: Pickaxe + prob: 0.10 + - id: Shovel + prob: 0.50 + - id: Shovel + prob: 0.20 + - id: HydroponicsToolSpade + prob: 0.10 + - id: HydroponicsToolHatchet + prob: 0.05 + +- type: entity + id: CratePermaEscapeEVA + parent: CrateGenericSteel + suffix: EVAs + components: + - type: StorageFill + contents: + - id: ClothingHeadHelmetEVALarge + - id: ClothingOuterHardsuitEVAPrisoner + - id: ClothingHeadHelmetEVALarge + prob: 0.80 + - id: ClothingOuterHardsuitEVAPrisoner + prob: 0.80 + - id: ClothingOuterHardsuitVoidParamed + prob: 0.10 + - id: ClothingOuterRedRacoon + prob: 0.10 + - id: ClothingOuterSanta + prob: 0.10 + - id: ClothingOuterHardsuitSyndicate + prob: 0.20 + - id: EmergencyOxygenTankFilled + prob: 0.25 + - id: EmergencyOxygenTank + prob: 0.25 + - id: OxygenTankFilled + prob: 0.05 + +- type: entity + id: CratePermaEscapeGun + parent: CrateGenericSteel + suffix: Gun + components: + - type: StorageFill + contents: + - id: WeaponPistolMk58 + prob: 0.15 + orGroup: gun + - id: FoamCrossbow + prob: 0.10 + orGroup: gun + - id: WeaponRifleFoam + prob: 0.05 + orGroup: gun + - id: WeaponPistolFlintlock + prob: 0.20 + orGroup: gun + - id: WeaponShotgunBlunderbuss + prob: 0.10 + orGroup: gun + - id: WeaponShotgunBlunderbuss + prob: 0.15 + orGroup: gun + - id: WeaponRevolverPirate + prob: 0.15 + orGroup: gun + - id: WeaponProtoKineticAccelerator + prob: 0.20 + orGroup: gun + +- type: entity + id: CratePermaEscapeBureaucracy + parent: CrateGenericSteel + suffix: Writing + components: + - type: StorageFill + contents: + - id: RubberStampApproved + - id: RubberStampDenied + - id: Pen + - id: Pen + - id: Pen + - id: BoxFolderBase + orGroup: folderA + - id: BoxFolderBlack + orGroup: folderA + - id: BoxFolderBlue + orGroup: folderA + - id: BoxFolderGreen + orGroup: folderA + - id: BoxFolderGrey + orGroup: folderA + - id: BoxFolderRed + orGroup: folderA + - id: BoxFolderWhite + orGroup: folderA + - id: BoxFolderYellow + orGroup: folderA + - id: BoxFolderBase + orGroup: folderB + - id: BoxFolderBlack + orGroup: folderB + - id: BoxFolderBlue + orGroup: folderB + - id: BoxFolderGreen + orGroup: folderB + - id: BoxFolderGrey + orGroup: folderB + - id: BoxFolderRed + orGroup: folderB + - id: BoxFolderWhite + orGroup: folderB + - id: BoxFolderYellow + orGroup: folderB + - id: CrayonBox + prob: 0.50 + - id: CrayonBox + prob: 0.10 + - id: ClearPDA # change to visitor one day. + prob: 0.10 + - id: PersonalAI + +- type: entity + id: CratePermaEscapeLights + parent: CrateGenericSteel + suffix: Glowsticks + components: + - type: StorageFill + contents: + - id: GlowstickBlue + prob: 0.50 + - id: GlowstickBlue + prob: 0.20 + - id: GlowstickBlue + prob: 0.05 + - id: GlowstickBase + prob: 0.50 + - id: GlowstickBase + prob: 0.20 + - id: GlowstickBase + prob: 0.05 + - id: GlowstickPurple + prob: 0.50 + - id: GlowstickPurple + prob: 0.20 + - id: GlowstickPurple + prob: 0.05 + - id: GlowstickRed + prob: 0.50 + - id: GlowstickRed + prob: 0.20 + - id: GlowstickRed + prob: 0.05 + - id: GlowstickYellow + prob: 0.50 + - id: GlowstickYellow + prob: 0.20 + - id: GlowstickYellow + prob: 0.05 + +- type: entity + id: CratePermaEscapeMats + parent: CrateGenericSteel + suffix: Mats + components: + - type: StorageFill + contents: + - id: SheetSteel + orGroup: matA + - id: PartRodMetal + orGroup: matA + - id: SheetSteel + orGroup: matB + - id: PartRodMetal + orGroup: matB + +- type: entity + id: CratePermaEscapeGiftsFromSyndicate + parent: CrateGenericSteel + suffix: Syndi Gifts + components: + - type: StorageFill + contents: + - id: ClothingEyesGlassesOutlawGlasses + - id: ClothingHeadHatOutlawHat + - id: HappyHonkNukieSnacks + # - id: BaseUplinkRadio # too spicy I think. + # prob: 0.50 + # - id: Telecrystal + # prob: 0.80 + # - id: Telecrystal + # prob: 0.80 + # - id: Telecrystal + # prob: 0.70 + # - id: Telecrystal + # prob: 0.50 + # - id: Telecrystal + # prob: 0.20 + # - id: Telecrystal + # prob: 0.10 + # - id: Telecrystal + # prob: 0.05 + # - id: Telecrystal + # prob: 0.01 + # - id: Telecrystal5 + # prob: 0.01 + - id: CyberPen + prob: 0.10 + - id: CockroachCube + orGroup: cube + - id: AbominationCube + prob: 0.20 + orGroup: cube + - id: SpaceCarpCube + prob: 0.20 + orGroup: cube + - id: SyndicateSponge + prob: 0.20 + orGroup: cube + - id: MindShieldImplanter + prob: 0.20 + - id: ClothingHandsGlovesConducting # funny + prob: 0.30 + - id: CigPackSyndicate + prob: 0.80 + - id: StimpackMini + prob: 0.20 + - id: StimpackMini + prob: 0.10 + - id: CombatMedipen + prob: 0.05 + - id: MedkitCombatFilled + prob: 0.01 + - id: SoapSyndie + prob: 0.15 + - id: DnaScramblerImplanter + prob: 0.005 + + +- type: entity + id: CratePermaEscapeMerc + parent: CrateGenericSteel + suffix: Merc + components: + - type: StorageFill + contents: + - id: ClothingUniformJumpsuitMercenary + - id: ClothingHeadBandMerc + prob: 0.50 + - id: ClothingHeadHatBeretMerc + prob: 0.20 + - id: ClothingHeadHelmetMerc + prob: 0.05 + - id: ClothingEyesGlassesMercenary + prob: 0.20 + - id: ClothingMaskGasMerc + prob: 0.10 + - id: ClothingHandsGlovesMercFingerless + prob: 0.20 + - id: ClothingHandsMercGlovesCombat + prob: 0.05 + - id: ClothingBackpackMerc + prob: 0.50 + - id: ClothingShoesBootsMerc + prob: 0.50 + - id: ClothingOuterVestWebMerc + prob: 0.25 + - id: ClothingBeltMercWebbing + prob: 0.05 + +- type: entity + id: CratePermaEscapeComs + parent: CrateGenericSteel + suffix: Coms + components: + - type: StorageFill + contents: + - id: ClothingHeadsetMining + orGroup: coms + - id: ClothingHeadsetMining + orGroup: coms + - id: ClothingHeadsetMining + orGroup: coms + - id: ClothingHeadsetGrey + orGroup: coms + - id: ClothingHeadsetScience + orGroup: coms + - id: ClothingHeadsetService + orGroup: coms + - id: ClothingHeadsetEngineering + orGroup: coms + - id: ClothingHeadsetMedical + orGroup: coms + - id: EncryptionKeyCargo + prob: 0.05 + - id: EncryptionKeyScience + prob: 0.05 + - id: EncryptionKeyService + prob: 0.05 + - id: EncryptionKeyMedical + prob: 0.05 + - id: EncryptionKeyEngineering + prob: 0.05 + - id: EncryptionKeySecurity + prob: 0.01 + +- type: entity + id: CratePermaEscapeTowercap + parent: CrateGenericSteel + suffix: Towercap + components: + - type: StorageFill + contents: + - id: TowercapSeeds + - id: TowercapSeeds + prob: 0.80 + - id: TowercapSeeds + prob: 0.50 + - id: TowercapSeeds + prob: 0.20 + - id: SteelcapSeeds + prob: 0.10 + - id: SteelLog + - id: HydroponicsToolHatchet + prob: 0.75 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml b/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml index 84526d46d1..7bae4ecd77 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml @@ -26,7 +26,7 @@ - type: entity id: CrateSalvageAssortedGoodies suffix: Filled, Salvage Random - noSpawn: true # You should use SalvageMaterialCrateSpawner instead + categories: [ HideSpawnMenu ] # You should use SalvageMaterialCrateSpawner instead parent: CrateGenericSteel components: - type: StorageFill diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index 15df254d71..6b8923f0a0 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -133,6 +133,7 @@ - id: BoxFolderRed - id: BoxFolderYellow - id: NewtonCradle + - id: BoxEnvelope - type: entity id: CrateServiceFaxMachine @@ -338,3 +339,16 @@ prob: 0.1 - id: ShardGlassPlasma prob: 0.1 + +- type: entity + id: CrateCandles + parent: CrateGenericSteel + name: candles crate + description: Contains 4 boxes of candles, 2 large and 2 small. For atmosphere or something. + components: + - type: StorageFill + contents: + - id: BoxCandle + amount: 2 + - id: BoxCandleSmall + amount: 2 diff --git a/Resources/Prototypes/Catalog/Fills/Items/misc.yml b/Resources/Prototypes/Catalog/Fills/Items/misc.yml index 816f3ba8d4..4ec546caef 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/misc.yml @@ -1,5 +1,6 @@ - type: entity id: ClothingShoesBootsCombatFilled + suffix: Filled, Combat Knife parent: - ClothingShoesBootsCombat - ClothingShoesBootsSecFilled @@ -38,3 +39,12 @@ item: - KukriKnife +- type: entity + id: ClothingShoesBootsSyndieFilled + parent: ClothingShoesBootsCombat + suffix: Filled, Throwing Knife + components: + - type: ContainerFill + containers: + item: + - ThrowingKnife diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml index a4435073a4..41dc912224 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml @@ -20,16 +20,16 @@ components: - type: StorageFill contents: - - id: ClothingOuterSuitEmergency - id: ClothingMaskBreath + - id: ClothingOuterSuitEmergency - id: EmergencyOxygenTankFilled - prob: 0.80 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: OxygenTank - id: OxygenTankFilled - prob: 0.20 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: OxygenTank - id: ToolboxEmergencyFilled - prob: 0.4 + prob: 0.5 - id: MedkitOxygenFilled prob: 0.2 - id: WeaponFlareGun @@ -44,16 +44,16 @@ components: - type: StorageFill contents: - - id: ClothingOuterSuitEmergency - id: ClothingMaskBreath + - id: ClothingOuterSuitEmergency - id: EmergencyOxygenTankFilled - prob: 0.80 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: OxygenTank - id: OxygenTankFilled - prob: 0.20 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: OxygenTank - id: ToolboxEmergencyFilled - prob: 0.4 + prob: 0.5 - id: MedkitOxygenFilled prob: 0.2 - id: WeaponFlareGun @@ -69,39 +69,62 @@ - type: StorageFill contents: - id: ClothingMaskBreath + - id: ClothingOuterSuitEmergency - id: EmergencyNitrogenTankFilled - prob: 0.80 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: NitrogenTank - id: NitrogenTankFilled - prob: 0.20 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: NitrogenTank - type: entity id: ClosetFireFilled parent: ClosetFire suffix: Filled components: - - type: StorageFill - contents: - - id: ClothingOuterSuitFire - - id: ClothingHeadHelmetFire - - id: ClothingMaskGas - - id: OxygenTankFilled - - id: FireExtinguisher - prob: 0.25 + - type: StorageFill + contents: + - id: ClothingOuterSuitFire + - id: ClothingHeadHelmetFire + - id: ClothingMaskGas + - id: EmergencyOxygenTankFilled + prob: 0.5 + orGroup: OxygenTank + - id: OxygenTankFilled + prob: 0.5 + orGroup: OxygenTank + - id: CrowbarRed + - id: FireExtinguisher + prob: 0.98 + orGroup: FireExtinguisher + - id: SprayBottleWater #It's just budget cut after budget cut man + prob: 0.02 + orGroup: FireExtinguisher + - type: entity id: ClosetWallFireFilledRandom parent: ClosetWallFire suffix: Filled components: - - type: StorageFill - contents: - - id: ClothingOuterSuitFire - - id: ClothingHeadHelmetFire - - id: ClothingMaskGas - - id: OxygenTankFilled - - id: FireExtinguisher - prob: 0.25 + - type: StorageFill + contents: + - id: ClothingOuterSuitFire + - id: ClothingHeadHelmetFire + - id: ClothingMaskGas + - id: EmergencyOxygenTankFilled + prob: 0.5 + orGroup: OxygenTank + - id: OxygenTankFilled + prob: 0.5 + orGroup: OxygenTank + - id: CrowbarRed + - id: FireExtinguisher + prob: 0.98 + orGroup: FireExtinguisher + - id: SprayBottleWater #It's just budget cut after budget cut man + prob: 0.02 + orGroup: FireExtinguisher + - type: entity id: ClosetMaintenanceFilledRandom suffix: Filled, Random diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml index cb0ef3246d..303b209053 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml @@ -8,6 +8,7 @@ RubberStampApproved: 1 RubberStampDenied: 1 Paper: 10 + Envelope: 10 EncryptionKeyCargo: 2 EncryptionKeyEngineering: 2 EncryptionKeyMedical: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/magivend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/magivend.yml index 7617186dd9..821c916353 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/magivend.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/magivend.yml @@ -9,6 +9,6 @@ ClothingHeadHatVioletwizard: 3 ClothingOuterWizardViolet: 3 ClothingShoesWizard: 9 - #TO DO: + #TODO: #only missing staff #and if wizarditis reagent when hacked if we want this. diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml index 6bafc7101d..e947789262 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml @@ -25,3 +25,5 @@ ClothingEyesBlindfold: 1 ClothingShoesBootsCombat: 1 ClothingShoesBootsWinterSec: 2 + contrabandInventory: + ClothingMaskClownSecurity: 1 diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 6feadf77ad..a8007dd8bb 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -122,7 +122,7 @@ name: uplink-sniper-bundle-name description: uplink-sniper-bundle-desc icon: { sprite: /Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi, state: base } - productEntity: BriefcaseSyndieSniperBundleFilled + productEntity: BriefcaseSyndieSniperBundleFilled cost: Telecrystal: 12 categories: @@ -916,11 +916,11 @@ - NukeOpsUplink - type: listing - id: UplinkReinforcementRadioSyndicateNukeops # Version for Nukeops that spawns an agent with the NukeOperative component. - name: uplink-reinforcement-radio-name + id: UplinkReinforcementRadioSyndicateNukeops # Version for Nukeops that spawns another nuclear operative without the uplink. + name: uplink-reinforcement-radio-nukeops-name description: uplink-reinforcement-radio-nukeops-desc productEntity: ReinforcementRadioSyndicateNukeops - icon: { sprite: Objects/Devices/communication.rsi, state: old-radio-urist } + icon: { sprite: Objects/Devices/communication.rsi, state: old-radio-nukeop } cost: Telecrystal: 35 categories: @@ -1004,7 +1004,7 @@ Telecrystal: 6 categories: - UplinkAllies - + - type: listing id: UplinkSyndicatePersonalAI name: uplink-syndicate-pai-name diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index ea76f93bce..bb97db48bb 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -63,6 +63,8 @@ - type: Clothing sprite: Clothing/Eyes/Glasses/meson.rsi - type: EyeProtection + - type: IdentityBlocker + coverage: EYES - type: entity parent: ClothingEyesBase @@ -194,6 +196,8 @@ - type: FlashImmunity - type: EyeProtection protectionTime: 5 + - type: IdentityBlocker + coverage: EYES #Make a scanner category when these actually function and we get the trayson - type: entity @@ -211,6 +215,8 @@ coefficients: Heat: 0.95 - type: GroupExamine + - type: IdentityBlocker + coverage: EYES - type: entity parent: ClothingEyesBase @@ -223,6 +229,8 @@ - type: Clothing sprite: Clothing/Eyes/Glasses/science.rsi - type: SolutionScanner + - type: IdentityBlocker + coverage: EYES - type: entity parent: ClothingEyesBase diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml index 405cf41a16..cbee63da1d 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml @@ -1,7 +1,7 @@ - type: entity id: ShowSecurityIcons abstract: true - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: ShowJobIcons - type: ShowMindShieldIcons @@ -10,7 +10,7 @@ - type: entity id: ShowMedicalIcons abstract: true - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: ShowHealthBars damageContainers: diff --git a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml index 4308a74852..fff054bf18 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml @@ -56,7 +56,7 @@ parent: ClothingHeadBase id: ClothingHeadLightBase name: base helmet with light - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -147,7 +147,7 @@ # No parent since we aren't actually an item. id: ClothingHeadHardsuitBase name: base hardsuit helmet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: BreathMask - type: Sprite @@ -191,7 +191,7 @@ parent: ClothingHeadHardsuitBase id: ClothingHeadHardsuitWithLightBase name: base hardsuit helmet with light - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -243,7 +243,7 @@ id: ClothingHeadHatHoodWinterBase name: base winter coat hood description: A hood, made to keep your head warm. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: icon diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index ffa5747e87..a9785ef928 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -138,7 +138,7 @@ - type: entity parent: ClothingHeadHardsuitBase id: ClothingHeadHelmetHardsuitMaxim - noSpawn: true + categories: [ HideSpawnMenu ] name: salvager maxim helmet description: A predication of decay washes over your mind. components: diff --git a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml index 4dec89e75a..180b738e40 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml @@ -89,7 +89,7 @@ - type: entity parent: ClothingHeadBase id: ClothingHeadHatHoodChaplainHood - noSpawn: true + categories: [ HideSpawnMenu ] name: chaplain's hood description: Maximum piety in this star system. components: @@ -155,6 +155,7 @@ coefficients: Heat: 0.95 Radiation: 0.65 + - type: IdentityBlocker - type: BreathMask - type: HideLayerClothing slots: @@ -183,7 +184,7 @@ - type: entity parent: ClothingHeadBase id: ClothingHeadHatHoodIan - noSpawn: true + categories: [ HideSpawnMenu ] name: ian hood description: A hood to complete the 'Good boy' look. components: @@ -198,7 +199,7 @@ - type: entity parent: ClothingHeadBase id: ClothingHeadHatHoodCarp - noSpawn: true + categories: [ HideSpawnMenu ] name: carp hood description: A gnarly hood adorned with plastic space carp teeth. components: @@ -213,7 +214,7 @@ - type: entity parent: ClothingHeadHatHoodCarp id: ClothingHeadHelmetHardsuitCarp - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PressureProtection highPressureMultiplier: 0.6 @@ -251,7 +252,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterDefault - noSpawn: true + categories: [ HideSpawnMenu ] name: default winter coat hood components: - type: Sprite @@ -262,7 +263,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterBartender - noSpawn: true + categories: [ HideSpawnMenu ] name: bartender winter coat hood components: - type: Sprite @@ -273,7 +274,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterCaptain - noSpawn: true + categories: [ HideSpawnMenu ] name: captain's winter coat hood description: An expensive hood, to keep the captain's head warm. components: @@ -285,7 +286,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterCargo - noSpawn: true + categories: [ HideSpawnMenu ] name: cargo winter coat hood components: - type: Sprite @@ -296,7 +297,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterCE - noSpawn: true + categories: [ HideSpawnMenu ] name: chief engineer's winter coat hood components: - type: Sprite @@ -307,7 +308,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterCentcom - noSpawn: true + categories: [ HideSpawnMenu ] name: Centcom winter coat hood description: A hood for keeping the central comander's head warm. components: @@ -319,7 +320,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterChem - noSpawn: true + categories: [ HideSpawnMenu ] name: chemist winter coat hood components: - type: Sprite @@ -330,7 +331,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterCMO - noSpawn: true + categories: [ HideSpawnMenu ] name: chief medical officer's winter coat hood components: - type: Sprite @@ -341,7 +342,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterEngineer - noSpawn: true + categories: [ HideSpawnMenu ] name: engineer winter coat hood components: - type: Sprite @@ -352,7 +353,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterHOP - noSpawn: true + categories: [ HideSpawnMenu ] name: head of personel's winter coat hood components: - type: Sprite @@ -363,7 +364,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterHOS - noSpawn: true + categories: [ HideSpawnMenu ] name: head of security's winter coat hood components: - type: Sprite @@ -374,7 +375,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterHydro - noSpawn: true + categories: [ HideSpawnMenu ] name: hydroponics coat hood components: - type: Sprite @@ -385,7 +386,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterJani - noSpawn: true + categories: [ HideSpawnMenu ] name: janitor coat hood components: - type: Sprite @@ -396,7 +397,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterMed - noSpawn: true + categories: [ HideSpawnMenu ] name: medic coat hood components: - type: Sprite @@ -407,7 +408,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterMime - noSpawn: true + categories: [ HideSpawnMenu ] name: mime coat hood components: - type: Sprite @@ -418,7 +419,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterMiner - noSpawn: true + categories: [ HideSpawnMenu ] name: miner coat hood components: - type: Sprite @@ -429,7 +430,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterPara - noSpawn: true + categories: [ HideSpawnMenu ] name: paramedic coat hood components: - type: Sprite @@ -440,7 +441,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterQM - noSpawn: true + categories: [ HideSpawnMenu ] name: quartermaster's coat hood components: - type: Sprite @@ -451,7 +452,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterRD - noSpawn: true + categories: [ HideSpawnMenu ] name: research director's coat hood components: - type: Sprite @@ -462,7 +463,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterRobo - noSpawn: true + categories: [ HideSpawnMenu ] name: robotics coat hood components: - type: Sprite @@ -473,7 +474,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterSci - noSpawn: true + categories: [ HideSpawnMenu ] name: scientist coat hood components: - type: Sprite @@ -484,7 +485,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterSec - noSpawn: true + categories: [ HideSpawnMenu ] name: security coat hood components: - type: Sprite @@ -495,7 +496,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterSyndie - noSpawn: true + categories: [ HideSpawnMenu ] name: syndicate coat hood components: - type: Sprite @@ -506,7 +507,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterWarden - noSpawn: true + categories: [ HideSpawnMenu ] name: warden's coat hood components: - type: Sprite @@ -517,7 +518,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterWeb - noSpawn: true + categories: [ HideSpawnMenu ] name: web coat hood components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index f059f2068b..a30023cd79 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -205,7 +205,7 @@ accent: OwOAccent - type: entity - noSpawn: true + categories: [ Actions, HideSpawnMenu ] id: ActionBecomeValid name: Become Valid description: "*notices your killsign* owo whats this" diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index f86c5defac..cab77138ef 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -230,6 +230,24 @@ graph: BananaClownMask node: mask +- type: entity + parent: ClothingMaskClown + id: ClothingMaskClownSecurity + name: security clown wig and mask + description: A debatably oxymoronic but protective mask and wig. + components: + - type: Sprite + sprite: Clothing/Mask/clown_security.rsi + - type: Clothing + sprite: Clothing/Mask/clown_security.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Heat: 0.95 + - type: entity parent: ClothingMaskBase id: ClothingMaskJoy diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index 76ce483918..e31a3ec179 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -113,7 +113,7 @@ modifiers: coefficients: Heat: 0.90 - Radiation: 0.001 + Radiation: 0.01 - type: Clothing sprite: Clothing/OuterClothing/Suits/rad.rsi - type: GroupExamine diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index feeb08572e..3564ff8ce6 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -38,7 +38,7 @@ parent: ClothingOuterWinterCoat id: ClothingOuterWinterCoatToggleable name: winter coat with hood - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: ToggleableClothing clothingPrototype: ClothingHeadHatHoodWinterDefault diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 113735b014..9672e48144 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -213,6 +213,7 @@ - type: Tag tags: - ClownSuit + - WhitelistChameleon - type: entity parent: ClothingUniformJumpsuitClown diff --git a/Resources/Prototypes/Entities/Debugging/clicktest.yml b/Resources/Prototypes/Entities/Debugging/clicktest.yml index 4e9caaa14d..7eb0a06330 100644 --- a/Resources/Prototypes/Entities/Debugging/clicktest.yml +++ b/Resources/Prototypes/Entities/Debugging/clicktest.yml @@ -1,11 +1,11 @@ -# Entities specifically for testing click detection with ClickableComponent. +# Entities specifically for testing click detection with ClickableComponent. # # Each entity has a bounding box AND texture equivalent. # Note that bounding box versions still have dots on the outside or center to make it possible to... see them. # These dots' texture detection should not interfere with the actual bounding box being tested. - type: entity - noSpawn: true + categories: [ Debug, HideSpawnMenu ] id: ClickTestBase suffix: DEBUG components: diff --git a/Resources/Prototypes/Entities/Debugging/debug_sweps.yml b/Resources/Prototypes/Entities/Debugging/debug_sweps.yml index 2d374b8e12..a1678368f9 100644 --- a/Resources/Prototypes/Entities/Debugging/debug_sweps.yml +++ b/Resources/Prototypes/Entities/Debugging/debug_sweps.yml @@ -60,7 +60,7 @@ id: BulletDebug name: bang, ded bullet parent: BaseBullet - noSpawn: true + categories: [ Debug, HideSpawnMenu ] suffix: DEBUG components: - type: Tag diff --git a/Resources/Prototypes/Entities/Debugging/tippy.yml b/Resources/Prototypes/Entities/Debugging/tippy.yml index 292cbed0f1..7f149c3b5d 100644 --- a/Resources/Prototypes/Entities/Debugging/tippy.yml +++ b/Resources/Prototypes/Entities/Debugging/tippy.yml @@ -1,6 +1,6 @@ - type: entity id: Tippy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite netsync: false diff --git a/Resources/Prototypes/Entities/Effects/ambient_sounds.yml b/Resources/Prototypes/Entities/Effects/ambient_sounds.yml index f686779b3e..81f7bbfc8a 100644 --- a/Resources/Prototypes/Entities/Effects/ambient_sounds.yml +++ b/Resources/Prototypes/Entities/Effects/ambient_sounds.yml @@ -1,6 +1,6 @@ - type: entity id: AmbientSoundSourceFlies - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: AmbientSound volume: -5 diff --git a/Resources/Prototypes/Entities/Effects/bluespace_flash.yml b/Resources/Prototypes/Entities/Effects/bluespace_flash.yml index 3421f0d9a6..42cdfbd297 100644 --- a/Resources/Prototypes/Entities/Effects/bluespace_flash.yml +++ b/Resources/Prototypes/Entities/Effects/bluespace_flash.yml @@ -1,6 +1,6 @@ - type: entity id: EffectFlashBluespace - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight radius: 10.5 diff --git a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml index 4f925ed311..28e5a239ef 100644 --- a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml +++ b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml @@ -36,7 +36,7 @@ parent: BaseFoam id: Smoke name: smoke - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Occluder - type: Sprite @@ -52,7 +52,7 @@ parent: BaseFoam id: Foam name: foam - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite color: "#ffffffcc" @@ -83,7 +83,7 @@ - type: entity id: MetalFoam name: metal foam - noSpawn: true + categories: [ HideSpawnMenu ] parent: Foam components: - type: Sprite @@ -109,7 +109,7 @@ - type: entity id: IronMetalFoam name: iron metal foam - noSpawn: true + categories: [ HideSpawnMenu ] parent: MetalFoam components: - type: SpawnOnDespawn @@ -118,7 +118,7 @@ - type: entity id: AluminiumMetalFoam name: aluminium metal foam - noSpawn: true + categories: [ HideSpawnMenu ] parent: MetalFoam components: - type: SpawnOnDespawn diff --git a/Resources/Prototypes/Entities/Effects/emp_effects.yml b/Resources/Prototypes/Entities/Effects/emp_effects.yml index 890dd24d43..d1096b85f5 100644 --- a/Resources/Prototypes/Entities/Effects/emp_effects.yml +++ b/Resources/Prototypes/Entities/Effects/emp_effects.yml @@ -1,6 +1,6 @@ - type: entity id: EffectEmpPulse - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.8 @@ -23,7 +23,7 @@ - type: entity id: EffectEmpDisabled - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.4 diff --git a/Resources/Prototypes/Entities/Effects/exclamation.yml b/Resources/Prototypes/Entities/Effects/exclamation.yml index cfe1cbc7f2..d1f3e3ad06 100644 --- a/Resources/Prototypes/Entities/Effects/exclamation.yml +++ b/Resources/Prototypes/Entities/Effects/exclamation.yml @@ -1,7 +1,7 @@ - type: entity id: Exclamation name: exclamation - noSpawn: true + categories: [ HideSpawnMenu ] save: false components: - type: Transform @@ -22,7 +22,7 @@ - type: entity id: WhistleExclamation name: exclamation - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Structures/Storage/closet.rsi diff --git a/Resources/Prototypes/Entities/Effects/explosion_light.yml b/Resources/Prototypes/Entities/Effects/explosion_light.yml index b4b980dd1a..d5e7452a79 100644 --- a/Resources/Prototypes/Entities/Effects/explosion_light.yml +++ b/Resources/Prototypes/Entities/Effects/explosion_light.yml @@ -1,5 +1,5 @@ - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] id: ExplosionLight name: explosion light components: diff --git a/Resources/Prototypes/Entities/Effects/hearts.yml b/Resources/Prototypes/Entities/Effects/hearts.yml index 042fdb5e8a..18f72c95d4 100644 --- a/Resources/Prototypes/Entities/Effects/hearts.yml +++ b/Resources/Prototypes/Entities/Effects/hearts.yml @@ -1,6 +1,6 @@ - type: entity id: EffectHearts - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.85 diff --git a/Resources/Prototypes/Entities/Effects/lightning.yml b/Resources/Prototypes/Entities/Effects/lightning.yml index 7afd1c07a0..f85f28d3b8 100644 --- a/Resources/Prototypes/Entities/Effects/lightning.yml +++ b/Resources/Prototypes/Entities/Effects/lightning.yml @@ -33,7 +33,7 @@ name: lightning id: Lightning parent: BaseLightning - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Lightning canArc: true @@ -42,7 +42,7 @@ name: spooky lightning id: LightningRevenant parent: BaseLightning - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: /Textures/Effects/lightning.rsi @@ -66,7 +66,7 @@ name: charged lightning id: ChargedLightning parent: BaseLightning - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: /Textures/Effects/lightning.rsi @@ -85,7 +85,7 @@ name: lightning id: Spark parent: BaseLightning - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: /Textures/Effects/lightning.rsi @@ -112,7 +112,7 @@ name: supercharged lightning id: SuperchargedLightning parent: ChargedLightning - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: /Textures/Effects/lightning.rsi @@ -138,7 +138,7 @@ name: hypercharged lightning id: HyperchargedLightning parent: ChargedLightning - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: /Textures/Effects/lightning.rsi diff --git a/Resources/Prototypes/Entities/Effects/mobspawn.yml b/Resources/Prototypes/Entities/Effects/mobspawn.yml index 2fad68d7f2..c4396a775d 100644 --- a/Resources/Prototypes/Entities/Effects/mobspawn.yml +++ b/Resources/Prototypes/Entities/Effects/mobspawn.yml @@ -1,7 +1,7 @@ -- type: entity +- type: entity id: MobSpawnCrabQuartz name: mobspawner quartzcrab - noSpawn: True + categories: [ HideSpawnMenu, Spawner ] components: - type: Transform anchored: True @@ -31,7 +31,7 @@ id: MobSpawnCrabIron parent: MobSpawnCrabQuartz name: mobspawner ironcrab - noSpawn: True + categories: [ HideSpawnMenu, Spawner ] components: - type: Sprite sprite: /Textures/Effects/mobspawn.rsi @@ -43,7 +43,7 @@ id: MobSpawnCrabSilver parent: MobSpawnCrabQuartz name: mobspawner silvercrab - noSpawn: True + categories: [ HideSpawnMenu, Spawner ] components: - type: Sprite sprite: /Textures/Effects/mobspawn.rsi @@ -55,7 +55,7 @@ id: MobSpawnCrabUranium parent: MobSpawnCrabQuartz name: mobspawner uraniumcrab - noSpawn: True + categories: [ HideSpawnMenu, Spawner ] components: - type: Sprite sprite: /Textures/Effects/mobspawn.rsi @@ -65,7 +65,7 @@ - type: entity id: EffectAnomalyFloraBulb - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.4 diff --git a/Resources/Prototypes/Entities/Effects/radiation.yml b/Resources/Prototypes/Entities/Effects/radiation.yml index 143ffa8559..82828582cf 100644 --- a/Resources/Prototypes/Entities/Effects/radiation.yml +++ b/Resources/Prototypes/Entities/Effects/radiation.yml @@ -1,7 +1,7 @@ - type: entity name: shimmering anomaly id: RadiationPulse - noSpawn: true + categories: [ HideSpawnMenu ] description: Looking at this anomaly makes you feel strange, like something is pushing at your eyes. components: - type: RadiationSource diff --git a/Resources/Prototypes/Entities/Effects/rcd.yml b/Resources/Prototypes/Entities/Effects/rcd.yml index 902429818e..a663add9ca 100644 --- a/Resources/Prototypes/Entities/Effects/rcd.yml +++ b/Resources/Prototypes/Entities/Effects/rcd.yml @@ -1,7 +1,7 @@ - type: entity id: EffectRCDBase abstract: true - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Transform anchored: True @@ -19,7 +19,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDDeconstructPreview - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: deconstructPreview @@ -27,7 +27,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDConstruct0 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: construct0 @@ -37,7 +37,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDConstruct1 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: construct1 @@ -47,7 +47,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDConstruct2 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: construct2 @@ -57,7 +57,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDConstruct3 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: construct3 @@ -67,7 +67,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDConstruct4 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: construct4 @@ -77,7 +77,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDDeconstruct2 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: deconstruct2 @@ -87,7 +87,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDDeconstruct4 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: deconstruct4 @@ -97,7 +97,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDDeconstruct6 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: deconstruct6 @@ -107,7 +107,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDDeconstruct8 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: deconstruct8 diff --git a/Resources/Prototypes/Entities/Effects/shuttle.yml b/Resources/Prototypes/Entities/Effects/shuttle.yml index d4538116ac..72cc04cba1 100644 --- a/Resources/Prototypes/Entities/Effects/shuttle.yml +++ b/Resources/Prototypes/Entities/Effects/shuttle.yml @@ -1,6 +1,6 @@ - type: entity id: FtlVisualizerEntity - noSpawn: true + categories: [ HideSpawnMenu ] description: Visualizer for shuttles arriving. You shouldn't see this! components: - type: FtlVisualizer diff --git a/Resources/Prototypes/Entities/Effects/sparks.yml b/Resources/Prototypes/Entities/Effects/sparks.yml index d86522a971..c12e3b0eca 100644 --- a/Resources/Prototypes/Entities/Effects/sparks.yml +++ b/Resources/Prototypes/Entities/Effects/sparks.yml @@ -1,6 +1,6 @@ - type: entity id: EffectSparks - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.5 @@ -20,7 +20,7 @@ - type: entity id: EffectTeslaSparks - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.5 diff --git a/Resources/Prototypes/Entities/Effects/wallspawn.yml b/Resources/Prototypes/Entities/Effects/wallspawn.yml index 7213763c46..44afe80e97 100644 --- a/Resources/Prototypes/Entities/Effects/wallspawn.yml +++ b/Resources/Prototypes/Entities/Effects/wallspawn.yml @@ -1,6 +1,6 @@ - type: entity id: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: Transform anchored: True @@ -29,7 +29,7 @@ - type: entity id: WallSpawnAsteroidUraniumCrab parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockUraniumCrab @@ -37,7 +37,7 @@ - type: entity id: WallSpawnAsteroidUranium parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockUranium @@ -45,7 +45,7 @@ - type: entity id: WallSpawnAsteroidQuartzCrab parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockQuartzCrab @@ -53,7 +53,7 @@ - type: entity id: WallSpawnAsteroidQuartz parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockQuartz @@ -61,7 +61,7 @@ - type: entity id: WallSpawnAsteroidSilverCrab parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockSilverCrab @@ -69,7 +69,7 @@ - type: entity id: WallSpawnAsteroidSilver parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockSilver @@ -77,7 +77,7 @@ - type: entity id: WallSpawnAsteroidIronCrab parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockTinCrab @@ -85,7 +85,7 @@ - type: entity id: WallSpawnAsteroidIron parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockTin \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Effects/weapon_arc.yml b/Resources/Prototypes/Entities/Effects/weapon_arc.yml index 25cd6e84ff..0f3fab0e87 100644 --- a/Resources/Prototypes/Entities/Effects/weapon_arc.yml +++ b/Resources/Prototypes/Entities/Effects/weapon_arc.yml @@ -1,7 +1,7 @@ - type: entity # Just fades out with no movement animation id: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 2.0 @@ -18,7 +18,7 @@ - type: entity # Plays the state animation then disappears with no fade or swing id: WeaponArcAnimated - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Effects/arcs.rsi @@ -34,7 +34,7 @@ - type: entity id: WeaponArcThrust parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals animation: Thrust @@ -42,7 +42,7 @@ - type: entity id: WeaponArcSlash parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals animation: Slash @@ -51,7 +51,7 @@ - type: entity id: WeaponArcBite parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals fadeOut: false @@ -63,7 +63,7 @@ - type: entity id: WeaponArcClaw parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals fadeOut: false @@ -75,7 +75,7 @@ - type: entity id: WeaponArcDisarm parent: WeaponArcAnimated - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals fadeOut: false @@ -87,7 +87,7 @@ - type: entity id: WeaponArcFist parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: fist @@ -95,7 +95,7 @@ - type: entity id: WeaponArcPunch parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals fadeOut: false @@ -107,7 +107,7 @@ - type: entity id: WeaponArcKick parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals fadeOut: false @@ -119,7 +119,7 @@ - type: entity id: WeaponArcSmash parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals fadeOut: false diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml index 5cfe78c6d5..f325c084de 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml @@ -78,5 +78,6 @@ - FoodMeatRatdoubleKebab - FoodMeatSnakeKebab - FoodPizzaArnoldSlice + - FoodPizzaUraniumSlice - FoodTacoRat rareChance: 0.05 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml index b8cf755d0f..573ddf0398 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml @@ -73,7 +73,7 @@ state: narsian - type: entity - noSpawn: true + categories: [ HideSpawnMenu, Spawner ] id: SpawnPointGhostNukeOperative name: ghost role spawn point suffix: nukeops @@ -93,7 +93,7 @@ state: radiation - type: entity - noSpawn: true + categories: [ HideSpawnMenu, Spawner ] parent: BaseAntagSpawner id: SpawnPointLoneNukeOperative components: @@ -109,7 +109,7 @@ state: radiation - type: entity - noSpawn: true + categories: [ HideSpawnMenu, Spawner ] parent: SpawnPointLoneNukeOperative id: SpawnPointNukeopsCommander components: @@ -118,7 +118,7 @@ description: roles-antag-nuclear-operative-commander-objective - type: entity - noSpawn: true + categories: [ HideSpawnMenu, Spawner ] parent: SpawnPointLoneNukeOperative id: SpawnPointNukeopsMedic components: @@ -127,7 +127,7 @@ description: roles-antag-nuclear-operative-agent-objective - type: entity - noSpawn: true + categories: [ HideSpawnMenu, Spawner ] parent: SpawnPointLoneNukeOperative id: SpawnPointNukeopsOperative components: @@ -136,7 +136,7 @@ description: roles-antag-nuclear-operative-objective - type: entity - noSpawn: true + categories: [ HideSpawnMenu, Spawner ] parent: BaseAntagSpawner id: SpawnPointGhostDragon components: @@ -151,7 +151,7 @@ state: alive - type: entity - noSpawn: true + categories: [ HideSpawnMenu, Spawner ] parent: BaseAntagSpawner id: SpawnPointGhostSpaceNinja components: diff --git a/Resources/Prototypes/Entities/Markers/clientsideclone.yml b/Resources/Prototypes/Entities/Markers/clientsideclone.yml index 56875c4414..39b9ee48fd 100644 --- a/Resources/Prototypes/Entities/Markers/clientsideclone.yml +++ b/Resources/Prototypes/Entities/Markers/clientsideclone.yml @@ -1,7 +1,7 @@ - type: entity name: clientsideclone id: clientsideclone - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite - type: AnimationPlayer diff --git a/Resources/Prototypes/Entities/Markers/construction_ghost.yml b/Resources/Prototypes/Entities/Markers/construction_ghost.yml index be9cc915d9..04a8a09502 100644 --- a/Resources/Prototypes/Entities/Markers/construction_ghost.yml +++ b/Resources/Prototypes/Entities/Markers/construction_ghost.yml @@ -1,7 +1,7 @@ - type: entity name: construction ghost id: constructionghost - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite color: '#3F38' diff --git a/Resources/Prototypes/Entities/Markers/drag_shadow.yml b/Resources/Prototypes/Entities/Markers/drag_shadow.yml index a1badb60bc..19ffb6c36a 100644 --- a/Resources/Prototypes/Entities/Markers/drag_shadow.yml +++ b/Resources/Prototypes/Entities/Markers/drag_shadow.yml @@ -1,7 +1,7 @@ - type: entity name: drag shadow id: dragshadow - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Tag tags: diff --git a/Resources/Prototypes/Entities/Markers/hover_entity.yml b/Resources/Prototypes/Entities/Markers/hover_entity.yml index 8421a9d8c9..2e8e1edb29 100644 --- a/Resources/Prototypes/Entities/Markers/hover_entity.yml +++ b/Resources/Prototypes/Entities/Markers/hover_entity.yml @@ -1,7 +1,7 @@ - type: entity name: hover entity id: hoverentity - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 2618207b7a..1110b3869b 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -99,6 +99,11 @@ doAfterDelay: 10 allowSelfRepair: false - type: BorgChassis + - type: LockingWhitelist + blacklist: + components: + - BorgChassis + - RoboticsConsole - type: WiresPanel - type: ActivatableUIRequiresPanel - type: NameIdentifier @@ -113,7 +118,9 @@ cellSlotId: cell_slot fitsInCharger: true - type: ItemToggle + activated: false # gets activated when a mind is added onUse: false # no item-borg toggling sorry + toggleLight: false - type: AccessToggle # TODO: refactor movement to just be based on toggle like speedboots but for the boots themselves # TODO: or just have sentient speedboots be fast idk diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml index 3a17869dc8..215cb4c188 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml @@ -265,6 +265,7 @@ access: [["Medical"], ["Command"], ["Research"]] - type: Inventory templateId: borgDutch + - type: SolutionScanner - type: FootstepModifier footstepSoundCollection: collection: FootstepHoverBorg @@ -363,7 +364,7 @@ - type: entity id: BorgChassisSyndicateMedical - parent: BaseBorgChassisSyndicate + parent: [BaseBorgChassisSyndicate, ShowMedicalIcons] name: syndicate medical cyborg description: A combat medical cyborg. Has limited offensive potential, but makes more than up for it with its support capabilities. components: @@ -397,6 +398,12 @@ interactFailureString: petting-failure-syndicate-cyborg interactSuccessSound: path: /Audio/Ambience/Objects/periodic_beep.ogg + - type: SolutionScanner + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepHoverBorg + params: + volume: -6 - type: entity id: BorgChassisSyndicateSaboteur diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 398978d16b..871ee72828 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1250,6 +1250,17 @@ tags: - VimPilot - DoorBumpOpener + - type: Reactive + groups: + Flammable: [ Touch ] + Extinguish: [ Touch ] + reactions: + - reagents: [ Water, SpaceCleaner ] + methods: [ Touch ] + effects: + - !type:WashCreamPieReaction + + - type: entity name: monkey @@ -1283,6 +1294,7 @@ clumsySound: path: /Audio/Animals/monkey_scream.ogg + - type: entity name: monkey id: MobBaseSyndicateMonkey @@ -1434,7 +1446,7 @@ - type: SentienceTarget flavorKind: station-event-random-sentience-flavor-kobold - type: GhostRole - prob: 0.1 + prob: 0.05 makeSentient: true name: ghost-role-information-kobold-name description: ghost-role-information-kobold-description @@ -1492,7 +1504,7 @@ - type: entity name: guidebook monkey parent: MobMonkey - noSpawn: true + categories: [ HideSpawnMenu ] id: MobGuidebookMonkey description: A hopefully helpful monkey whose only purpose in life is for you to click on. Does this count as having a monkey give you a tutorial? components: @@ -2143,11 +2155,13 @@ states: Alive: Base: snake + Critical: + Base: dead Dead: Base: dead - type: Butcherable spawned: - - id: FoodMeat + - id: FoodMeatSnake amount: 1 - type: InteractionPopup successChance: 0.6 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index 296d4bc876..a5b00b31db 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -100,6 +100,8 @@ - id: FoodMeatCorgi amount: 2 - id: MaterialHideCorgi + - type: StealTarget + stealGroup: AnimalIan - type: entity name: Runtime diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml index 004e091c15..e478a9492f 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml @@ -162,7 +162,7 @@ id: MobRatServant parent: [ SimpleMobBase, MobCombat ] description: He's da mini rat. He don't make da roolz. - noSpawn: true #Must be configured to a King or the AI breaks. + categories: [ HideSpawnMenu ] #Must be configured to a King or the AI breaks. components: - type: CombatMode - type: MovementSpeedModifier diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml index ad7a97c7f4..2e3869bccd 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml @@ -148,7 +148,7 @@ description: A geras of a slime - the name is ironic, isn't it? id: MobSlimesGeras parent: BaseMobAdultSlimes - noSpawn: true + categories: [ HideSpawnMenu ] components: # they portable... - type: MovementSpeedModifier diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index 4bcee8beb4..23d3e838e2 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -378,6 +378,10 @@ Base: dead_purple_snake Dead: Base: dead_purple_snake + - type: Butcherable + spawned: + - id: FoodMeatSnake + amount: 4 - type: Grammar attributes: proper: true @@ -444,5 +448,9 @@ Base: dead_small_purple_snake Dead: Base: dead_small_purple_snake + - type: Butcherable + spawned: + - id: FoodMeatSnake + amount: 2 - type: SolutionTransfer maxTransferAmount: 1 diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index 1e44283d1e..8fb732e925 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -2,7 +2,7 @@ parent: [MobObserver, InventoryBase] id: AdminObserver name: admin observer - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: ContentEye maxZoom: 8.916104, 8.916104 diff --git a/Resources/Prototypes/Entities/Mobs/Player/diona.yml b/Resources/Prototypes/Entities/Mobs/Player/diona.yml index 4153250bbf..bcb602bbd6 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/diona.yml @@ -15,7 +15,7 @@ # Reformed Diona - type: entity parent: MobDiona - noSpawn: true + categories: [ HideSpawnMenu ] id: MobDionaReformed name: Reformed Diona components: diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index 8bf9bfab41..0b21f0d735 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -154,7 +154,7 @@ - MinorAntagonists - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] id: DragonsBreathGun name: dragon's lung description: For dragon's breathing diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index 0b718746e1..e07ce9c5b4 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -62,13 +62,17 @@ id: MobHumanSyndicateAgentNukeops # Reinforcement exclusive to nukeops uplink suffix: Human, NukeOps components: - - type: Loadout - prototypes: [SyndicateOperativeGearReinforcementNukeOps] - type: NukeOperative + - type: RandomMetadata + nameSegments: + - nukeops-role-operator + - SyndicateNamesNormal + - type: Loadout + prototypes: [SyndicateOperativeGearFullNoUplink] # Nuclear Operative - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] name: Nuclear Operative parent: MobHuman id: MobHumanNukeOp @@ -77,7 +81,7 @@ - type: RandomHumanoidAppearance - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: MobHuman id: MobHumanLoneNuclearOperative name: Lone Operative diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index 85be42cc02..cf3cf10436 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -3,7 +3,7 @@ id: MobObserver name: observer description: Boo! - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: CargoSellBlacklist - type: Sprite diff --git a/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml b/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml index ad9b37f63e..ffbc46e94c 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml @@ -1,7 +1,7 @@ - type: entity parent: MobObserver id: ReplayObserver - noSpawn: true + categories: [ HideSpawnMenu ] save: false components: - type: MovementSpeedModifier diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index fa0f5356a6..2682d38715 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -117,7 +117,7 @@ - type: entity parent: BaseSpeciesDummy id: MobArachnidDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: HumanoidAppearance species: Arachnid diff --git a/Resources/Prototypes/Entities/Mobs/Species/diona.yml b/Resources/Prototypes/Entities/Mobs/Species/diona.yml index d6597ce65d..5bda66d635 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/diona.yml @@ -111,7 +111,7 @@ - type: entity parent: BaseSpeciesDummy id: MobDionaDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: HumanoidAppearance species: Diona diff --git a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml index 64ef80a45f..dc05507150 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml @@ -66,7 +66,7 @@ - type: entity parent: BaseSpeciesDummy id: MobDwarfDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite scale: 1, 0.8 diff --git a/Resources/Prototypes/Entities/Mobs/Species/gingerbread.yml b/Resources/Prototypes/Entities/Mobs/Species/gingerbread.yml index d0b065bc21..406aa920c1 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/gingerbread.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/gingerbread.yml @@ -52,7 +52,7 @@ - type: entity parent: BaseSpeciesDummy id: MobGingerbreadDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: HumanoidAppearance species: Gingerbread diff --git a/Resources/Prototypes/Entities/Mobs/Species/human.yml b/Resources/Prototypes/Entities/Mobs/Species/human.yml index 392185ef77..bf357e1f10 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/human.yml @@ -32,7 +32,7 @@ - type: entity parent: BaseSpeciesDummy id: MobHumanDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Inventory femaleDisplacements: @@ -40,5 +40,4 @@ sizeMaps: 32: sprite: Mobs/Species/Human/displacement.rsi - state: jumpsuit-female - + state: jumpsuit-female \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index f3eaeb32c7..153d5cccd3 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -120,7 +120,7 @@ - type: entity parent: BaseSpeciesDummy id: MobMothDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: HumanoidAppearance species: Moth diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index 6f0705635a..1c9eaa2ec6 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -73,7 +73,7 @@ - type: entity parent: BaseSpeciesDummy id: MobReptilianDummy - noSpawn: true + categories: [ HideSpawnMenu ] description: A dummy reptilian meant to be used in character setup. components: - type: HumanoidAppearance diff --git a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml index 659bf7467e..229c2da027 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml @@ -113,7 +113,7 @@ - type: entity parent: BaseSpeciesDummy id: MobSkeletonPersonDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: HumanoidAppearance species: Skeleton diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml index 28aca6d0d3..027e5706e9 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml @@ -118,7 +118,7 @@ - type: entity parent: MobHumanDummy id: MobSlimePersonDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: HumanoidAppearance species: SlimePerson diff --git a/Resources/Prototypes/Entities/Mobs/Species/vox.yml b/Resources/Prototypes/Entities/Mobs/Species/vox.yml index 5f4d471939..4bcd068d9d 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/vox.yml @@ -127,7 +127,7 @@ - type: entity parent: BaseSpeciesDummy id: MobVoxDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: HumanoidAppearance species: Vox diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml index c3cf6fd4c0..77c9c15cfc 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -257,14 +257,12 @@ - type: entity name: blueberry pancake - parent: FoodBakedBase + parent: FoodBakedPancake id: FoodBakedPancakeBb description: A fluffy and delicious blueberry pancake. components: - type: Stack - stackType: Pancake - count: 1 - composite: true + stackType: PancakeBb layerStates: - pancakesbb1 - pancakesbb2 @@ -281,7 +279,6 @@ - state: pancakesbb3 map: ["pancakesbb3"] visible: false - - type: Appearance - type: Tag tags: - Pancake @@ -289,14 +286,12 @@ - type: entity name: chocolate chip pancake - parent: FoodBakedBase + parent: FoodBakedPancake id: FoodBakedPancakeCc description: A fluffy and delicious chocolate chip pancake. components: - type: Stack - stackType: Pancake - count: 1 - composite: true + stackType: PancakeCc layerStates: - pancakescc1 - pancakescc2 @@ -313,7 +308,6 @@ - state: pancakescc3 map: ["pancakescc3"] visible: false - - type: Appearance - type: SolutionContainerManager solutions: food: @@ -323,9 +317,6 @@ Quantity: 5 - ReagentId: Theobromine Quantity: 1 - - type: Tag - tags: - - Pancake - type: entity name: waffles diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml index af91a69e2c..21c9f17d81 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml @@ -547,3 +547,76 @@ - ReagentId: Vitamin Quantity: 1 # Tastes like stale crust, rancid cheese, mushroom. + +- type: entity + name: spicy rock pizza + parent: FoodPizzaBase + id: FoodPizzaUranium + description: Spicy pizza covered in peppers and uranium. + components: + - type: FlavorProfile + flavors: + - spicy + - cheesy + - oily + - bread + - type: Sprite + layers: + - state: uranium-pizza + - type: SliceableFood + slice: FoodPizzaUraniumSlice + - type: Tag + tags: + - Meat + - Pizza + - type: PointLight + enabled: true + radius: 2 + - type: SolutionContainerManager + solutions: + food: + maxVol: 40 + reagents: + - ReagentId: Nutriment + Quantity: 20 + - ReagentId: Radium + Quantity: 4 + - ReagentId: Uranium + Quantity: 16 + +- type: entity + name: slice of spicy rock pizza + parent: FoodPizzaSliceBase + id: FoodPizzaUraniumSlice + description: A glowing slice of spicy rock pizza. + components: + - type: FlavorProfile + flavors: + - spicy + - cheesy + - oily + - bread + - type: Sprite + layers: + - state: uranium-slice + - type: Tag + tags: + - Meat + - Pizza + - Slice + - type: PointLight + enabled: true + radius: 2 + - type: SolutionContainerManager + solutions: + food: + maxVol: 5 + reagents: + - ReagentId: Nutriment + Quantity: 2.5 + - ReagentId: Radium + Quantity: 0.5 + - ReagentId: Uranium + Quantity: 2 + +# Tastes like crust, tomato, cheese, radiation. diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml index b9fa27cbdb..8ddf369746 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml @@ -663,7 +663,7 @@ id: FoodMealHappyHonkClown parent: HappyHonk suffix: random food spawner meal - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 8e468bac8d..d3ad2f0659 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -95,6 +95,21 @@ - type: Produce seedId: sugarcane +- type: entity + name: papercane roll + description: Why do we even need to grow paper? + id: Papercane + parent: ProduceBase + components: + - type: Sprite + sprite: Objects/Specific/Hydroponics/papercane.rsi + - type: SolutionContainerManager + - type: Produce + seedId: papercane + - type: Log + spawnedPrototype: SheetPaper1 + spawnCount: 2 + - type: entity parent: FoodProduceBase id: FoodLaughinPeaPod @@ -869,6 +884,42 @@ tags: - Fruit +- type: entity + name: golden apple + parent: FoodProduceBase + id: FoodGoldenApple + description: It should be shaped like a cube, shouldn't it? + components: + - type: FlavorProfile + flavors: + - apple + - metallic + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Nutriment + Quantity: 10 + - ReagentId: Vitamin + Quantity: 4 + - ReagentId: DoctorsDelight + Quantity: 13 + - type: Sprite + sprite: Objects/Specific/Hydroponics/golden_apple.rsi + - type: Produce + seedId: goldenApple + - type: Extractable + juiceSolution: + reagents: + - ReagentId: JuiceApple + Quantity: 10 + - ReagentId: Gold + Quantity: 10 + - type: Tag + tags: + - Fruit + - type: entity name: cocoa pod parent: FoodProduceBase @@ -1411,6 +1462,71 @@ - Galaxythistle - Fruit # Probably? +- type: entity + name: glasstle + parent: FoodProduceBase + id: FoodGlasstle + description: A fragile crystal plant with lot of spiky thorns. + components: + - type: Item + size: 5 + sprite: Objects/Specific/Hydroponics/glasstle.rsi + heldPrefix: produce + - type: FlavorProfile + flavors: + - sharp + - type: SolutionContainerManager + solutions: + food: + maxVol: 15 + reagents: + - ReagentId: Razorium + Quantity: 15 + - type: Sprite + sprite: Objects/Specific/Hydroponics/glasstle.rsi + - type: Produce + seedId: glasstle + - type: Extractable + grindableSolutionName: food + - type: Damageable + damageContainer: Inorganic + - type: ToolRefinable + refineResult: + - id: SheetGlass1 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + params: + volume: -4 + - !type:SpawnEntitiesBehavior + spawn: + ShardGlass: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: DamageOnHit + damage: + types: + Blunt: 10 + - type: MeleeWeapon + wideAnimationRotation: 60 + damage: + types: + Slash: 15 + soundHit: + path: /Audio/Weapons/bladeslice.ogg + - type: Tag + tags: + - Galaxythistle + + - type: entity name: fly amanita parent: FoodProduceBase diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml index e175eb1fd4..2523b357dd 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml @@ -483,7 +483,7 @@ # Trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseItem id: FoodPacketTrash description: This is rubbish. @@ -505,7 +505,7 @@ price: 0 - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketBoritosTrash name: boritos bag @@ -515,7 +515,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketCnDsTrash name: C&Ds bag @@ -525,7 +525,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketCheesieTrash name: cheesie honkers @@ -535,7 +535,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketChipsTrash name: chips @@ -545,7 +545,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketChocolateTrash name: chocolate wrapper @@ -555,7 +555,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketEnergyTrash name: energybar wrapper @@ -565,7 +565,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketPistachioTrash name: pistachios packet @@ -575,7 +575,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketPopcornTrash name: popcorn box @@ -585,7 +585,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketRaisinsTrash name: 4no raisins @@ -595,7 +595,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketSemkiTrash name: semki packet @@ -605,7 +605,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketSusTrash name: sus jerky @@ -615,7 +615,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketSyndiTrash name: syndi-cakes box @@ -625,7 +625,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketCupRamenTrash name: empty cup ramen @@ -634,7 +634,7 @@ state: ramen - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketChowMeinTrash name: empty chow mein box @@ -644,7 +644,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketDanDanTrash name: empty dan dan box @@ -654,7 +654,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodCookieFortune name: cookie fortune @@ -667,7 +667,7 @@ descriptionSegments: [CookieFortuneDescriptions] - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketMRETrash name: MRE wrapper diff --git a/Resources/Prototypes/Entities/Objects/Decoration/present.yml b/Resources/Prototypes/Entities/Objects/Decoration/present.yml index 90712fba9f..967edf0f77 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/present.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/present.yml @@ -428,7 +428,7 @@ - type: entity id: PresentTrash - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseItem name: wrapping paper description: Carefully folded, taped, and tied with a bow. Then ceremoniously ripped apart and tossed on the floor. 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 6aa2686fa6..e4bca77069 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml @@ -35,12 +35,16 @@ - type: entity 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-syndicate-reinforcement-name - description: ghost-role-information-syndicate-reinforcement-description - rules: ghost-role-information-syndicate-reinforcement-rules + name: ghost-role-information-nukeop-reinforcement-name + description: ghost-role-information-nukeop-reinforcement-description + rules: ghost-role-information-nukeop-reinforcement-rules + raffle: + settings: default - type: GhostRoleMobSpawner prototype: MobHumanSyndicateAgentNukeops diff --git a/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml b/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml index 20e138f81a..bc17ed455a 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml @@ -22,7 +22,7 @@ entity: ChameleonDisguise - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseMob id: ChameleonDisguise name: Urist McKleiner diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/backgammon.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/backgammon.yml index ab404b88a3..965b25dbc0 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/backgammon.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/backgammon.yml @@ -18,7 +18,7 @@ id: BackgammonBoardTabletop name: backgammon parent: BaseBoardTabletop - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/backgammon_tabletop.rsi diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/base.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/base.yml index 64e7d7ace9..f7d9e0973a 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/base.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/base.yml @@ -31,7 +31,7 @@ id: BaseBoardTabletop name: baseboard abstract: true - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Tag tags: diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml index 69302548d1..6c206ca26f 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml @@ -24,7 +24,7 @@ id: *checkerboard name: checkerboard parent: BaseBoardTabletop - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/chessboard_tabletop.rsi diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/chess.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/chess.yml index b31b7803ba..aeba3918c4 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/chess.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/chess.yml @@ -20,7 +20,7 @@ id: ChessBoardTabletop name: chessboard parent: BaseBoardTabletop - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/chessboard_tabletop.rsi diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/dnd.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/dnd.yml index 51f17d55b9..9b00ef5e01 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/dnd.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/dnd.yml @@ -86,7 +86,7 @@ parent: BaseBoardTabletop id: GrassBoardTabletop name: grass battlemap - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/Battlemaps/grassbm_tabletop.rsi @@ -98,7 +98,7 @@ parent: BaseBoardTabletop id: MoonBoardTabletop name: grass battlemap - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/Battlemaps/moonbm_tabletop.rsi @@ -108,7 +108,7 @@ parent: BaseBoardTabletop id: SandBoardTabletop name: sand battlemap - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/Battlemaps/sandbm_tabletop.rsi @@ -118,7 +118,7 @@ parent: BaseBoardTabletop id: SnowBoardTabletop name: snow battlemap - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/Battlemaps/snowbm_tabletop.rsi @@ -128,7 +128,7 @@ parent: BaseBoardTabletop id: ShipBoardTabletop name: ship battlemap - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/Battlemaps/shipbm_tabletop.rsi diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/parchis.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/parchis.yml index bb5fdf1f0b..b608f4e787 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/parchis.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/parchis.yml @@ -20,7 +20,7 @@ id: ParchisBoardTabletop name: parchís parent: BaseBoardTabletop - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/parchis_tabletop.rsi diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index a777d769c5..5d25e2e3a1 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -298,6 +298,12 @@ Quantity: 10 - ReagentId: JuiceThatMakesYouWeh Quantity: 10 + - type: Clothing + quickEquip: false + sprite: Objects/Fun/toys.rsi + equippedPrefix: lizard + slots: + - HEAD - type: entity parent: PlushieLizard diff --git a/Resources/Prototypes/Entities/Objects/Misc/buffering.yml b/Resources/Prototypes/Entities/Objects/Misc/buffering.yml index dbd3534459..c97ffe89ed 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/buffering.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/buffering.yml @@ -1,6 +1,6 @@ - type: entity id: BufferingIcon - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Misc/buffering.rsi diff --git a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml index bf9ca1d872..d9880186b6 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml @@ -76,7 +76,7 @@ name: extinguisher spray id: ExtinguisherSpray parent: Vapor - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Effects/extinguisherSpray.rsi diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 2bace2810b..4c04bcfe3c 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -252,7 +252,7 @@ - type: entity parent: Paper id: PaperWritten - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -560,3 +560,81 @@ Blunt: 10 - type: StealTarget stealGroup: BoxFolderQmClipboard + +- type: entity + name: envelope + parent: BaseItem + id: Envelope + description: 'A small envelope for keeping prying eyes off of your sensitive documents.' + components: + - type: Sprite + sprite: Objects/Misc/bureaucracy.rsi + layers: + - state: envelope_open + map: ["enum.EnvelopeVisualLayers.Open"] + - state: envelope_closed + map: ["enum.EnvelopeVisualLayers.Sealed"] + visible: false + - state: envelope_torn + map: ["enum.EnvelopeVisualLayers.Torn"] + visible: false + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: Paper + escapeFormatting: false + content: envelope-default-message + - type: PaperVisuals + headerImagePath: "/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png" + headerMargin: 216.0, 0.0, 0.0, 0.0 + contentMargin: 0.0, 0.0, 0.0, 0.0 + maxWritableArea: 368.0, 256.0 + - type: Envelope + - type: ContainerContainer + containers: + letter_slot: !type:ContainerSlot + - type: ItemSlots + slots: + letter_slot: + name: envelope-letter-slot + insertSound: /Audio/Effects/packetrip.ogg + ejectSound: /Audio/Effects/packetrip.ogg + whitelist: + tags: + - Paper + - type: ActivatableUI + key: enum.PaperUiKey.Key + requireHands: false + - type: UserInterface + interfaces: + enum.PaperUiKey.Key: + type: PaperBoundUserInterface + - type: Item + size: 1 + - type: Tag + tags: + - Trash + - Document + #- type: Appearance, hide stamp marks until we have some kind of displacement + - type: Flammable + fireSpread: true + canResistFire: false + alwaysCombustible: true + canExtinguish: true + damage: + types: + Heat: 1 + - type: FireVisuals + sprite: Effects/fire.rsi + normalState: fire + - type: Damageable + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 15 + behaviors: + - !type:EmptyAllContainersBehaviour + - !type:DoActsBehavior + acts: [ "Destruction" ] \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml index 88ac0f8ba3..ebc366bff4 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml @@ -17,7 +17,7 @@ id: SadTromboneImplant name: sad trombone implant description: This implant plays a sad tune when the user dies. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant whitelist: @@ -37,7 +37,7 @@ id: LightImplant name: light implant description: This implant emits light from the user's skin on activation. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionToggleLight @@ -59,7 +59,7 @@ id: BikeHornImplant name: bike horn implant description: This implant lets the user honk anywhere at any time. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionActivateHonkImplant @@ -80,7 +80,7 @@ id: TrackingImplant name: tracking implant description: This implant has a tracking device attached to the suit sensor network, as well as a condition monitor for the Security radio channel. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant whitelist: @@ -110,7 +110,7 @@ id: StorageImplant name: storage implant description: This implant grants hidden storage within a person's body using bluespace technology. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionOpenStorageImplant @@ -135,7 +135,7 @@ id: FreedomImplant name: freedom implant description: This implant lets the user break out of hand restraints up to three times before ceasing to function anymore. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionActivateFreedomImplant @@ -148,7 +148,7 @@ id: UplinkImplant name: uplink implant description: This implant lets the user access a hidden Syndicate uplink at will. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionOpenUplinkImplant @@ -168,7 +168,7 @@ id: EmpImplant name: EMP implant description: This implant creates an electromagnetic pulse when activated. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionActivateEmpImplant @@ -183,7 +183,7 @@ id: ScramImplant name: scram implant description: This implant randomly teleports the user within a large radius when activated. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionActivateScramImplant @@ -195,7 +195,7 @@ id: DnaScramblerImplant name: DNA scrambler implant description: This implant lets the user randomly change their appearance and name once. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionActivateDnaScramblerImplant @@ -210,7 +210,7 @@ id: MicroBombImplant name: micro-bomb implant description: This implant detonates the user upon activation or upon death. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant permanent: true @@ -240,7 +240,7 @@ id: MacroBombImplant name: macro-bomb implant description: This implant creates a large explosion on death after a preprogrammed countdown. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant permanent: true @@ -275,7 +275,7 @@ id: DeathAcidifierImplant name: death-acidifier implant description: This implant melts the user and their equipment upon death. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant permanent: true @@ -299,7 +299,7 @@ id: DeathRattleImplant name: death rattle implant description: This implant will inform the Syndicate radio channel should the user fall into critical condition or die. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant permanent: true @@ -319,7 +319,7 @@ id: MindShieldImplant name: mindshield implant description: This implant will ensure loyalty to Nanotrasen and prevent mind control devices. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant permanent: true diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml index ae009d6108..e0846cd58e 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml @@ -163,6 +163,16 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/sugarcane.rsi +- type: entity + parent: SeedBase + name: packet of papercane seeds + id: PapercaneSeeds + components: + - type: Seed + seedId: papercane + - type: Sprite + sprite: Objects/Specific/Hydroponics/papercane.rsi + - type: entity parent: SeedBase name: packet of tower cap spores @@ -243,6 +253,16 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/apple.rsi +- type: entity + parent: SeedBase + name: packet of golden apple seeds + id: GoldenAppleSeeds + components: + - type: Seed + seedId: goldenApple + - type: Sprite + sprite: Objects/Specific/Hydroponics/golden_apple.rsi + - type: entity parent: SeedBase name: packet of corn seeds @@ -427,6 +447,17 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/galaxythistle.rsi +- type: entity + parent: SeedBase + name: packet of glasstle seeds + description: "Scars of gloomy nights." + id: GlasstleSeeds + components: + - type: Seed + seedId: glasstle + - type: Sprite + sprite: Objects/Specific/Hydroponics/glasstle.rsi + - type: entity parent: SeedBase name: packet of fly amanita spores diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml index ef9715645c..dd3fc02c0e 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml @@ -145,7 +145,7 @@ - type: entity name: soaplet id: SoapletSyndie - noSpawn: true + categories: [ HideSpawnMenu ] parent: Soap description: A tiny piece of syndicate soap. components: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml index cddf7f6075..998d3ecf03 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml @@ -104,7 +104,7 @@ - type: entity id: Vapor name: "vapor" - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SolutionContainerManager solutions: @@ -136,7 +136,7 @@ - type: entity id: BigVapor parent: Vapor - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Effects/chempuff.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml index 486812de82..45cb2d28e2 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml @@ -88,7 +88,7 @@ name: jug suffix: carbon id: JugCarbon - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-carbon @@ -104,7 +104,7 @@ name: jug suffix: iodine id: JugIodine - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-iodine @@ -120,7 +120,7 @@ name: jug suffix: fluorine id: JugFluorine - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-fluorine @@ -136,7 +136,7 @@ name: jug suffix: chlorine id: JugChlorine - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-chlorine @@ -152,7 +152,7 @@ name: jug suffix: aluminium id: JugAluminium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-aluminium @@ -168,7 +168,7 @@ name: jug suffix: phosphorus id: JugPhosphorus - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-phosphorus @@ -184,7 +184,7 @@ name: jug suffix: sulfur id: JugSulfur - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-sulfur @@ -200,7 +200,7 @@ name: jug suffix: silicon id: JugSilicon - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-silicon @@ -216,7 +216,7 @@ name: jug suffix: hydrogen id: JugHydrogen - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-hydrogen @@ -232,7 +232,7 @@ name: jug suffix: lithium id: JugLithium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-lithium @@ -248,7 +248,7 @@ name: jug suffix: sodium id: JugSodium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-sodium @@ -264,7 +264,7 @@ name: jug suffix: potassium id: JugPotassium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-potassium @@ -280,7 +280,7 @@ name: jug suffix: radium id: JugRadium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-radium @@ -296,7 +296,7 @@ name: jug suffix: iron id: JugIron - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-iron @@ -312,7 +312,7 @@ name: jug suffix: copper id: JugCopper - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-copper @@ -328,7 +328,7 @@ name: jug suffix: gold id: JugGold - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-gold @@ -344,7 +344,7 @@ name: jug suffix: mercury id: JugMercury - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-mercury @@ -360,7 +360,7 @@ name: jug suffix: silver id: JugSilver - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-silver @@ -376,7 +376,7 @@ name: jug suffix: ethanol id: JugEthanol - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-ethanol @@ -392,7 +392,7 @@ name: jug suffix: sugar id: JugSugar - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-sugar @@ -408,7 +408,7 @@ name: jug suffix: nitrogen id: JugNitrogen - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-nitrogen @@ -424,7 +424,7 @@ name: jug suffix: oxygen id: JugOxygen - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-oxygen @@ -440,7 +440,7 @@ name: jug suffix: Plant-B-Gone id: JugPlantBGone - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-plant-b-gone @@ -456,7 +456,7 @@ name: jug suffix: welding fuel id: JugWeldingFuel - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-welding-fuel diff --git a/Resources/Prototypes/Entities/Objects/Tools/fulton.yml b/Resources/Prototypes/Entities/Objects/Tools/fulton.yml index 8e54b4277f..776d23251e 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/fulton.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/fulton.yml @@ -90,7 +90,7 @@ - type: entity id: FultonEffect - noSpawn: true + categories: [ HideSpawnMenu ] name: fulton effect components: - type: TimedDespawn diff --git a/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml b/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml index 2320764d9f..3081f60989 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml @@ -115,7 +115,7 @@ name: light pulse test parent: BaseItem id: LightBehaviourTest1 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Misc/glowstick.rsi @@ -146,7 +146,7 @@ name: color cycle test parent: BaseItem id: LightBehaviourTest2 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Misc/glowstick.rsi @@ -178,7 +178,7 @@ name: multi-behaviour light test parent: BaseItem id: LightBehaviourTest3 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Misc/glowstick.rsi @@ -218,7 +218,7 @@ name: light fade in test parent: BaseItem id: LightBehaviourTest4 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Misc/glowstick.rsi @@ -249,7 +249,7 @@ name: light pulse radius test parent: BaseItem id: LightBehaviourTest5 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Misc/glowstick.rsi @@ -280,7 +280,7 @@ name: light randomize radius test parent: BaseItem id: LightBehaviourTest6 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Misc/glowstick.rsi diff --git a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml index 3d73e49aa0..5524973d6c 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml @@ -1,6 +1,6 @@ - type: entity id: JetpackEffect - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 2 diff --git a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml index bfda148980..27c508363c 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml @@ -151,10 +151,10 @@ state: icon - type: ThiefUndeterminedBackpack possibleSets: - # - TO DO Thief pinpointer needed + # TODO Thief pinpointer needed - ChemistrySet - ToolsSet - - ChameleonSet # - TO DO Chameleon stump PR needed + - ChameleonSet # TODO Chameleon stump PR needed - SyndieSet - SleeperSet - CommunicatorSet diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml index 752cd6b72e..703dde8049 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml @@ -52,7 +52,7 @@ - type: entity id: HotPotatoEffect - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.6 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml index 31d7b65fe8..65b7dbc165 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml @@ -1,5 +1,5 @@ - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet id: BulletAntiMateriel name: bullet (.60 anti-materiel) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/caseless_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/caseless_rifle.yml index 741f0a4e1a..83392d07ef 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/caseless_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/caseless_rifle.yml @@ -2,7 +2,7 @@ id: BulletCaselessRifle name: bullet (.25 caseless) parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -13,7 +13,7 @@ id: BulletCaselessRiflePractice name: bullet (.25 caseless practice) parent: BaseBulletPractice - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml index 6646e268d2..873d970214 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml @@ -1,7 +1,7 @@ - type: entity id: PelletClusterRubber name: pellet (ball, rubber) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -20,7 +20,7 @@ - type: entity id: PelletClusterLethal name: pellet (ball, lethal) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -37,7 +37,7 @@ - type: entity id: PelletClusterIncendiary name: pellet (ball, incendiary) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBulletIncendiary components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/heavy_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/heavy_rifle.yml index be6a07e486..d37555c344 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/heavy_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/heavy_rifle.yml @@ -2,7 +2,7 @@ id: BulletHeavyRifle name: bullet (.20 rifle) parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -13,7 +13,7 @@ id: BulletMinigun name: minigun bullet (.10 rifle) parent: BulletHeavyRifle - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml index c6a4808b77..7eac4b53d0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml @@ -2,7 +2,7 @@ id: BulletLightRifle name: bullet (.20 rifle) parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -13,7 +13,7 @@ id: BulletLightRiflePractice name: bullet (.20 rifle practice) parent: BaseBulletPractice - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -24,7 +24,7 @@ id: BulletLightRifleIncendiary parent: BaseBulletIncendiary name: bullet (.20 rifle incendiary) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -36,7 +36,7 @@ id: BulletLightRifleUranium parent: BaseBulletUranium name: bullet (.20 rifle uranium) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml index 798de9fa85..b4017fd550 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml @@ -2,7 +2,7 @@ id: BulletMagnum name: bullet (.45 magnum) parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -13,7 +13,7 @@ id: BulletMagnumPractice name: bullet (.45 magnum practice) parent: BaseBulletPractice - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -24,7 +24,7 @@ id: BulletMagnumIncendiary parent: BaseBulletIncendiary name: bullet (.45 magnum incendiary) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -36,7 +36,7 @@ id: BulletMagnumAP name: bullet (.45 magnum armor-piercing) parent: BaseBulletAP - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -48,7 +48,7 @@ id: BulletMagnumUranium name: bullet (.45 magnum uranium) parent: BaseBulletUranium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml index 3cfcc0cf20..8d146939b7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml @@ -2,7 +2,7 @@ id: BulletPistol name: bullet (.35 auto) parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -13,7 +13,7 @@ id: BulletPistolPractice name: bullet (.35 auto practice) parent: BaseBulletPractice - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -24,7 +24,7 @@ id: BulletPistolIncendiary parent: BaseBulletIncendiary name: bullet (.35 auto incendiary) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -36,7 +36,7 @@ id: BulletPistolUranium parent: BaseBulletUranium name: bullet (.35 auto uranium) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml index 6f6fa0f907..e3e26bf9f3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml @@ -2,7 +2,7 @@ id: BulletRifle name: bullet (0.20 rifle) parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -13,7 +13,7 @@ id: BulletRiflePractice name: bullet (0.20 rifle practice) parent: BaseBulletPractice - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -24,7 +24,7 @@ id: BulletRifleIncendiary parent: BaseBulletIncendiary name: bullet (0.20 rifle incendiary) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -36,7 +36,7 @@ id: BulletRifleUranium parent: BaseBulletUranium name: bullet (0.20 rifle uranium) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml index e119a846c9..6e4570e1a1 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml @@ -1,7 +1,7 @@ - type: entity id: PelletShotgunSlug name: pellet (.50 slug) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -15,7 +15,7 @@ - type: entity id: PelletShotgunBeanbag name: beanbag (.50) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -31,7 +31,7 @@ - type: entity id: PelletShotgun name: pellet (.50) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -45,7 +45,7 @@ - type: entity id: PelletShotgunIncendiary name: pellet (.50 incendiary) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBulletIncendiary components: - type: Sprite @@ -62,7 +62,7 @@ - type: entity id: PelletShotgunPractice name: pellet (.50 practice) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBulletPractice components: - type: Sprite @@ -76,7 +76,7 @@ - type: entity id: PelletShotgunImprovised name: improvised pellet - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -92,7 +92,7 @@ - type: entity id: PelletShotgunTranquilizer name: pellet (.50 tranquilizer) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBulletPractice components: - type: Sprite @@ -119,7 +119,7 @@ - type: entity id: PelletShotgunFlare name: pellet (.50 flare) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Physics bodyType: Dynamic @@ -166,7 +166,7 @@ - type: entity id: PelletShotgunUranium name: pellet (.50 uranium) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -181,7 +181,7 @@ - type: entity id: PelletGrapeshot #tally fucking ho name: grapeshot pellet - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -200,7 +200,7 @@ id: PelletGlass name: glass shard parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite noRot: false diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index 31f8e732f8..d6a3beeb79 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -73,9 +73,6 @@ components: - type: Sprite sprite: Objects/Weapons/Guns/Pistols/viper.rsi - availableModes: - - FullAuto - - SemiAuto - type: ItemSlots slots: gun_magazine: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml index 3f37d308db..89db3240be 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml @@ -1,7 +1,7 @@ # Used to animate the hitscan effects because effectsystem doesn't support it - type: entity id: HitscanEffect - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 2.0 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml index d70b05bf61..9be9e43e94 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml @@ -1,6 +1,6 @@ - type: entity id: BulletImpactEffect - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.25 @@ -18,7 +18,7 @@ - type: entity id: BulletImpactEffectDisabler - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.2 @@ -36,7 +36,7 @@ - type: entity id: BulletImpactEffectOrangeDisabler - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.2 @@ -55,7 +55,7 @@ - type: entity id: BulletImpactEffectKinetic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.2 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml index d0ce0808ac..2f1edfe697 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml @@ -3,7 +3,7 @@ name: fireball description: You better GITTAH WEIGH. parent: BulletRocket - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight color: "#E25822" @@ -31,7 +31,7 @@ fireStacks: 0.35 - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBulletTrigger id: ProjectileDragonsBreath name: dragon's breath @@ -68,7 +68,7 @@ name: fireball description: Hovering blob of flame. parent: ProjectileFireball - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 30 @@ -82,7 +82,7 @@ - type: entity id: ProjectilePolyboltBase parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/magic.rsi @@ -99,7 +99,7 @@ parent: ProjectilePolyboltBase name: carp polybolt description: Nooo, I don't wanna be fish! - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PolymorphOnCollide polymorph: WizardForcedCarp @@ -112,7 +112,7 @@ parent: ProjectilePolyboltBase name: monkey polybolt description: Nooo, I don't wanna be monkey! - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PolymorphOnCollide polymorph: WizardForcedMonkey @@ -125,7 +125,7 @@ parent: ProjectilePolyboltBase name: door polybolt description: Nooo, I don't wanna be door! - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/magic.rsi @@ -146,7 +146,7 @@ name: healing bolt description: I COMMAND YOU TO LIVE! parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/magic.rsi @@ -166,7 +166,7 @@ id: BulletInstakillMagic name: magical lead cylinder parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] description: This looks familiar. components: - type: Projectile @@ -180,7 +180,7 @@ parent: ProjectilePolyboltBase name: cluwne polybolt description: knoH KnoH! - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PolymorphOnCollide polymorph: WizardForcedCluwne @@ -193,7 +193,7 @@ parent: BaseBullet name: icicle description: Brrrrr. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Structures/Specific/Anomalies/ice_anom.rsi @@ -209,7 +209,7 @@ id: ProjectilePolyboltBread name: bread polybolt description: Nooo, I don't wanna be bread! - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PolymorphOnCollide polymorph: BreadMorph diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 5601116009..d2c6497831 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -1,6 +1,6 @@ - type: entity id: MuzzleFlashEffect - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.4 @@ -69,7 +69,7 @@ - type: entity id: BaseBulletTrigger # Trigger-on-collide bullets parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TriggerOnCollide fixtureID: projectile @@ -93,7 +93,7 @@ id: BaseBulletPractice name: base bullet practice parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -108,7 +108,7 @@ id: BaseBulletIncendiary name: base bullet incendiary parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -126,7 +126,7 @@ id: BaseBulletAP name: base bullet armor-piercing parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -142,7 +142,7 @@ id: BaseBulletUranium name: base bullet uranium parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -158,7 +158,7 @@ name: taser bolt id: BulletTaser parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: FlyBySound sound: @@ -200,7 +200,7 @@ name : disabler bolt id: BulletDisabler parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Reflective reflective: @@ -243,7 +243,7 @@ name : disabler bolt practice id: BulletDisablerPractice parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: FlyBySound sound: @@ -283,7 +283,7 @@ name: emitter bolt id: EmitterBolt parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Structures/Power/Generation/Singularity/emitter.rsi @@ -320,7 +320,7 @@ name: watcher bolt id: WatcherBolt parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: FlyBySound sound: @@ -360,7 +360,7 @@ name: magmawing watcher bolt id: WatcherBoltMagmawing parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi @@ -379,7 +379,7 @@ id: BulletKinetic name: kinetic bolt parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] description: Not too bad, but you still don't want to get hit by it. components: - type: Reflective @@ -405,7 +405,7 @@ - type: entity id: BulletKineticShuttle parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite noRot: false @@ -433,7 +433,7 @@ id: BulletCharge name: charge bolt parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] description: Marks a target for additional damage. components: - type: Reflective @@ -467,7 +467,7 @@ parent: BaseBullet id: AnomalousParticleDelta name: delta particles - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight enabled: true @@ -508,7 +508,7 @@ - type: entity parent: AnomalousParticleDelta id: AnomalousParticleDeltaStrong - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: AnomalousParticle particleType: Delta @@ -521,7 +521,7 @@ parent: AnomalousParticleDelta id: AnomalousParticleEpsilon name: epsilon particles - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight enabled: true @@ -538,7 +538,7 @@ - type: entity parent: AnomalousParticleEpsilon id: AnomalousParticleEpsilonStrong - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: AnomalousParticle particleType: Epsilon @@ -551,7 +551,7 @@ parent: AnomalousParticleDelta id: AnomalousParticleZeta name: zeta particles - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight enabled: true @@ -568,7 +568,7 @@ - type: entity parent: AnomalousParticleZeta id: AnomalousParticleZetaStrong - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: AnomalousParticle particleType: Zeta @@ -581,7 +581,7 @@ parent: AnomalousParticleDelta id: AnomalousParticleOmegaStrong name: omega particles - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight enabled: true @@ -610,7 +610,7 @@ parent: AnomalousParticleDelta id: AnomalousParticleSigma name: sigma particles - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight enabled: true @@ -628,7 +628,7 @@ parent: AnomalousParticleSigma id: AnomalousParticleSigmaStrong name: sigma particles - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: AnomalousParticle particleType: Sigma @@ -638,7 +638,7 @@ id: BulletRocket name: rocket parent: BaseBulletTrigger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -660,7 +660,7 @@ id: BulletWeakRocket name: weak rocket parent: BaseBulletTrigger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -682,7 +682,7 @@ id: BulletGrenadeBaton name: baton grenade parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -702,7 +702,7 @@ id: BulletGrenadeBlast name: blast grenade parent: BaseBulletTrigger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -719,7 +719,7 @@ id: BulletGrenadeFlash name: flash grenade parent: BaseBulletTrigger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -738,7 +738,7 @@ id: BulletGrenadeFrag name: frag grenade parent: BaseBulletTrigger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -755,7 +755,7 @@ id: BulletGrenadeEMP name: EMP rocket parent: BaseBulletTrigger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -776,7 +776,7 @@ id: BulletCap name: cap bullet parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/toys.rsi @@ -792,7 +792,7 @@ id: BulletAcid name: acid spit parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -808,7 +808,7 @@ - type: entity id: BulletWaterShot name: water - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Clickable - type: Physics @@ -851,7 +851,7 @@ id: BulletCannonBall name: cannonball parent: BaseBulletTrigger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -872,7 +872,7 @@ - type: entity id: GrapplingHook name: grappling hook - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: EmbeddableProjectile deleteOnRemove: true @@ -908,7 +908,7 @@ name : disabler bolt smg id: BulletDisablerSmg parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Reflective reflective: @@ -951,7 +951,7 @@ name: tesla gun lightning id: TeslaGunBullet parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 5 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index 85b5854255..9eaf2d1dc4 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -83,7 +83,7 @@ - type: entity id: GrenadeFlashEffect - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight enabled: true @@ -125,7 +125,7 @@ description: Go out on your own terms! parent: GrenadeBase id: SelfDestructSeq - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: ExplodeOnTrigger - type: Explosive diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index c7b54f4571..de191277ae 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -73,7 +73,8 @@ - /Maps/Ruins/whiteship_ancient.yml - /Maps/Ruins/whiteship_bluespacejumper.yml vgroid: !type:DungeonSpawnGroup - minimumDistance: 1000 + minimumDistance: 400 + maximumDistance: 450 nameDataset: names_borer stationGrid: false addComponents: diff --git a/Resources/Prototypes/Entities/Stations/nanotrasen.yml b/Resources/Prototypes/Entities/Stations/nanotrasen.yml index ab885b03e5..613bb1b1f4 100644 --- a/Resources/Prototypes/Entities/Stations/nanotrasen.yml +++ b/Resources/Prototypes/Entities/Stations/nanotrasen.yml @@ -25,7 +25,7 @@ - BaseStationSiliconLawCrewsimov - BaseStationAllEventsEligible - BaseStationNanotrasen - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Transform @@ -35,7 +35,7 @@ - BaseStation - BaseStationAlertLevels - BaseStationNanotrasen - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Transform @@ -46,6 +46,6 @@ - BaseStationJobsSpawning - BaseStationRecords - BaseStationNanotrasen - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Transform diff --git a/Resources/Prototypes/Entities/Stations/syndicate.yml b/Resources/Prototypes/Entities/Stations/syndicate.yml index a649416914..c863ef7352 100644 --- a/Resources/Prototypes/Entities/Stations/syndicate.yml +++ b/Resources/Prototypes/Entities/Stations/syndicate.yml @@ -11,6 +11,6 @@ parent: - BaseStation - BaseStationSyndicate - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Transform diff --git a/Resources/Prototypes/Entities/Stations/test.yml b/Resources/Prototypes/Entities/Stations/test.yml index 0f2e40537a..9eec6979e7 100644 --- a/Resources/Prototypes/Entities/Stations/test.yml +++ b/Resources/Prototypes/Entities/Stations/test.yml @@ -6,6 +6,6 @@ - BaseStationJobsSpawning - BaseStationRecords - BaseStationAlertLevels - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Transform diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml index 681f0a390c..cf51ca9b1f 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml @@ -37,6 +37,17 @@ - Chemist - type: StealTarget stealGroup: ChemDispenser + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25, -0.4, 0.25, 0.4" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: entity id: ChemDispenserEmpty diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index d1b409bf5c..197e3b1a0a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -115,6 +115,8 @@ - type: Lathe idleState: icon runningState: building + unlitIdleState: unlit + unlitRunningState: unlit-building staticRecipes: - Wirecutter - Igniter @@ -267,6 +269,8 @@ - type: Lathe idleState: icon runningState: building + unlitIdleState: unlit + unlitRunningState: unlit-building staticRecipes: - LargeBeaker - Dropper @@ -1251,6 +1255,7 @@ - IngotGold30 - IngotSilver30 - MaterialBananium10 + - MaterialDiamond - type: entity parent: BaseLathe diff --git a/Resources/Prototypes/Entities/Structures/Machines/nuke.yml b/Resources/Prototypes/Entities/Structures/Machines/nuke.yml index 1cf9ceaeab..5384d7e9d0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/nuke.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/nuke.yml @@ -128,6 +128,8 @@ suffix: keg description: You probably shouldn't stick around to see if this is armed. It has a tap on the side. components: + - type: Transform + anchored: false - type: NukeLabel - type: Sprite sprite: Objects/Devices/nuke.rsi @@ -161,11 +163,11 @@ shape: !type:PhysShapeCircle radius: 0.45 - density: 80 + density: 255 mask: - - TabletopMachineMask + - MachineMask layer: - - TabletopMachineLayer + - WallLayer - type: SolutionContainerManager solutions: tank: diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml index 7aee589647..3c1334169d 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml @@ -61,7 +61,7 @@ - type: entity id: DisposalHolder - noSpawn: true + categories: [ HideSpawnMenu ] name: disposal holder components: - type: DisposalHolder diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml index 96392ecd00..ae3fc96774 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml @@ -25,6 +25,8 @@ - type: Wires boardName: wires-board-name-pa layoutId: ParticleAccelerator + - type: AccessReader + access: [["Engineering"]] # Unfinished diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml index 8d889ee5cb..9d3ce9c931 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml @@ -3,7 +3,7 @@ description: Accelerated particles. id: ParticlesProjectile parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -54,7 +54,7 @@ description: Accelerated negative particles. id: AntiParticlesProjectile parent: ParticlesProjectile - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml index b63f131a7f..dc2ad1687a 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml @@ -101,7 +101,7 @@ SheetSteel1: min: 2 max: 4 - #- type: GuideHelp # To Do - add Tesla Guide + #- type: GuideHelp # TODO - add Tesla Guide - type: entity id: TeslaGroundingRod @@ -184,5 +184,5 @@ SheetSteel1: min: 2 max: 4 - #- type: GuideHelp # To Do - add Tesla Guide + #- type: GuideHelp # TODO - add Tesla Guide diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml index a8c61634df..d45e6c58ea 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml @@ -8,7 +8,7 @@ noRot: true sprite: Structures/Power/Generation/Tesla/generator.rsi state: icon - - type: SingularityGenerator #To do: rename the generator + - type: SingularityGenerator # TODO: rename the generator spawnId: TeslaEnergyBall - type: InteractionOutline - type: Fixtures @@ -25,5 +25,5 @@ layer: - Opaque - type: Anchorable - #- type: GuideHelp # To Do - add Tesla Guide + #- type: GuideHelp # TODO - add Tesla Guide diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml index 4e4ef8bdbc..b7d6b5a128 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml @@ -108,7 +108,7 @@ mediumVoltageNode: ame - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: AmeController id: AmeControllerUnanchored suffix: Unanchored diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml index ed70b31091..1faee965d4 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml @@ -144,7 +144,7 @@ # Construction Frames - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] id: BaseGeneratorWallmountFrame name: wallmount generator frame description: A construction frame for a wallmount generator. diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml index c512266e97..a997dbbf9d 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml @@ -1,6 +1,6 @@ - type: entity id: SolarPanelBasePhysSprite - noSpawn: true + categories: [ HideSpawnMenu ] name: solar panel placement: mode: SnapgridCenter diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml index 99ac985209..2829e76321 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml @@ -184,7 +184,7 @@ - # Spawned by the client-side circulator examine code to indicate the inlet/outlet direction. type: entity id: TegCirculatorArrow - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Markers/teg_arrow.rsi diff --git a/Resources/Prototypes/Entities/Structures/Power/apc.yml b/Resources/Prototypes/Entities/Structures/Power/apc.yml index 0948cdb4cc..d8f32922c8 100644 --- a/Resources/Prototypes/Entities/Structures/Power/apc.yml +++ b/Resources/Prototypes/Entities/Structures/Power/apc.yml @@ -1,5 +1,5 @@ - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] id: BaseAPC name: APC description: A control terminal for the area's electrical systems. @@ -146,7 +146,7 @@ # APC under construction - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] id: APCFrame name: APC frame description: A control terminal for the area's electrical systems, lacking the electronics. diff --git a/Resources/Prototypes/Entities/Structures/Power/substation.yml b/Resources/Prototypes/Entities/Structures/Power/substation.yml index 692f027386..8f8f752e38 100644 --- a/Resources/Prototypes/Entities/Structures/Power/substation.yml +++ b/Resources/Prototypes/Entities/Structures/Power/substation.yml @@ -112,7 +112,7 @@ # Compact Wall Substation Base - type: entity id: BaseSubstationWall - noSpawn: true + categories: [ HideSpawnMenu ] name: wallmount substation description: A substation designed for compact shuttles and spaces. placement: @@ -256,7 +256,7 @@ # Construction Frame - type: entity id: BaseSubstationWallFrame - noSpawn: true + categories: [ HideSpawnMenu ] name: wallmount substation frame description: A substation frame for construction placement: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml index b38ef61791..147e9e5b37 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml @@ -697,7 +697,7 @@ - type: entity parent: GasCanisterBrokenBase id: StorageCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: yellow-1 @@ -705,7 +705,7 @@ - type: entity parent: GasCanisterBrokenBase id: AirCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: grey-1 @@ -713,7 +713,7 @@ - type: entity parent: GasCanisterBrokenBase id: OxygenCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: blue-1 @@ -721,7 +721,7 @@ - type: entity parent: GasCanisterBrokenBase id: NitrogenCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: red-1 @@ -729,7 +729,7 @@ - type: entity parent: GasCanisterBrokenBase id: CarbonDioxideCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: black-1 @@ -737,7 +737,7 @@ - type: entity parent: GasCanisterBrokenBase id: PlasmaCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: orange-1 @@ -745,7 +745,7 @@ - type: entity parent: GasCanisterBrokenBase id: TritiumCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: green-1 @@ -754,7 +754,7 @@ parent: GasCanisterBrokenBase id: WaterVaporCanisterBroken name: broken water vapor canister - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: water_vapor-1 @@ -762,7 +762,7 @@ - type: entity parent: GasCanisterBrokenBase id: AmmoniaCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: greenys-1 @@ -770,7 +770,7 @@ - type: entity parent: GasCanisterBrokenBase id: NitrousOxideCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: redws-1 @@ -778,7 +778,7 @@ - type: entity parent: GasCanisterBrokenBase id: FrezonCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: frezon-1 diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml index 2666e8261d..73871cbe9b 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml @@ -1,7 +1,7 @@ - type: entity parent: BaseStructureDynamic id: CrateGeneric - noSpawn: true + categories: [ HideSpawnMenu ] name: crate description: A large container for items. components: @@ -94,7 +94,7 @@ - type: entity parent: CrateGeneric id: CrateBaseWeldable - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Weldable - type: ResistLocker diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml index 5ae5bae085..f749bc599b 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml @@ -48,7 +48,7 @@ #- type: entity # id: LargeBarSign # name: large bar sign -# noSpawn: true +# categories: [ HideSpawnMenu ] # components: # - type: Clickable # - type: InteractionOutline diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml index c6ecb5fd30..1308eff1be 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml @@ -660,7 +660,7 @@ - type: entity parent: BaseSign id: SignNosmoking - name: nosmoking sign + name: no smoking sign description: A sign indicating that smoking is not allowed in the vicinity. components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml index 7e6a1632a7..9f36f47920 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml @@ -30,7 +30,7 @@ ejectOnInteract: true whitelist: components: - - FireExtinguisher + - SpraySafety - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml index ecf2b0525e..01e3757a2c 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml @@ -236,7 +236,7 @@ id: LockableButton name: lockable button parent: SignalButtonDirectional - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Appearance - type: Lock @@ -496,7 +496,7 @@ - type: entity id: ButtonFrame name: button frame - noSpawn: true + categories: [ HideSpawnMenu ] description: It's a frame to help distinguish switches visually. placement: mode: SnapgridCenter diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml index 271a9a65cd..ff935055ff 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml @@ -101,7 +101,7 @@ # Construction Frame - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] id: TimerFrame name: timer frame description: A construction frame for a timer. diff --git a/Resources/Prototypes/Entities/Structures/gates.yml b/Resources/Prototypes/Entities/Structures/gates.yml index 22ab745a1e..6b02840ba0 100644 --- a/Resources/Prototypes/Entities/Structures/gates.yml +++ b/Resources/Prototypes/Entities/Structures/gates.yml @@ -15,9 +15,10 @@ - type: entity parent: BaseLogicItem - id: LogicGate + id: LogicGateOr name: logic gate description: A logic gate with two inputs and one output. Technicians can change its mode of operation using a screwdriver. + suffix: Or components: - type: Sprite layers: @@ -51,6 +52,71 @@ Nand: { state: nand } Xnor: { state: xnor } +- type: entity + parent: LogicGateOr + id: LogicGateAnd + suffix: And + components: + - type: Sprite + layers: + - state: base + - state: and + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: And + +- type: entity + parent: LogicGateOr + id: LogicGateXor + suffix: Xor + components: + - type: Sprite + layers: + - state: base + - state: xor + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: Xor + +- type: entity + parent: LogicGateOr + id: LogicGateNor + suffix: Nor + components: + - type: Sprite + layers: + - state: base + - state: nor + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: Nor + +- type: entity + parent: LogicGateOr + id: LogicGateNand + suffix: Nand + components: + - type: Sprite + layers: + - state: base + - state: nand + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: Nand + +- type: entity + parent: LogicGateOr + id: LogicGateXnor + suffix: Xnor + components: + - type: Sprite + layers: + - state: base + - state: xnor + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: Xnor + - type: entity parent: BaseLogicItem id: EdgeDetector diff --git a/Resources/Prototypes/Entities/Virtual/beam.yml b/Resources/Prototypes/Entities/Virtual/beam.yml index 7ded09c3ff..fa249f0dd3 100644 --- a/Resources/Prototypes/Entities/Virtual/beam.yml +++ b/Resources/Prototypes/Entities/Virtual/beam.yml @@ -2,7 +2,7 @@ - type: entity id: VirtualBeamEntityController name: BEAM ENTITY YOU SHOULD NOT SEE THIS - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Beam - type: TimedDespawn diff --git a/Resources/Prototypes/Entities/Virtual/electrocution.yml b/Resources/Prototypes/Entities/Virtual/electrocution.yml index ac65245191..c45e0b3ca9 100644 --- a/Resources/Prototypes/Entities/Virtual/electrocution.yml +++ b/Resources/Prototypes/Entities/Virtual/electrocution.yml @@ -12,7 +12,7 @@ - type: entity id: VirtualElectrocutionLoadHVPower parent: VirtualElectrocutionLoadBase - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: NodeContainer nodes: @@ -26,7 +26,7 @@ - type: entity id: VirtualElectrocutionLoadMVPower parent: VirtualElectrocutionLoadBase - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: NodeContainer nodes: @@ -40,7 +40,7 @@ - type: entity id: VirtualElectrocutionLoadApc parent: VirtualElectrocutionLoadBase - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: NodeContainer nodes: diff --git a/Resources/Prototypes/Entities/Virtual/stripping_hidden.yml b/Resources/Prototypes/Entities/Virtual/stripping_hidden.yml index 6eb734c1d3..81e8e9866c 100644 --- a/Resources/Prototypes/Entities/Virtual/stripping_hidden.yml +++ b/Resources/Prototypes/Entities/Virtual/stripping_hidden.yml @@ -5,7 +5,7 @@ id: StrippingHiddenEntity name: hidden entity description: There is something in this pocket. #Or maybe they ar... nah... too obvious a joke. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite texture: Interface/VerbIcons/information.svg.192dpi.png diff --git a/Resources/Prototypes/Entities/Virtual/tether.yml b/Resources/Prototypes/Entities/Virtual/tether.yml index ce953854d6..9459fd2088 100644 --- a/Resources/Prototypes/Entities/Virtual/tether.yml +++ b/Resources/Prototypes/Entities/Virtual/tether.yml @@ -1,6 +1,6 @@ - type: entity id: TetherEntity - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Physics bodyType: Dynamic diff --git a/Resources/Prototypes/Entities/Virtual/virtual_item.yml b/Resources/Prototypes/Entities/Virtual/virtual_item.yml index 800cc85d7d..393e59fad3 100644 --- a/Resources/Prototypes/Entities/Virtual/virtual_item.yml +++ b/Resources/Prototypes/Entities/Virtual/virtual_item.yml @@ -2,7 +2,7 @@ - type: entity id: VirtualItem name: VIRTUAL ITEM YOU SHOULD NOT SEE THIS - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Item size: 9999 # no storage insertion visuals (CD: irrelevant lmao) diff --git a/Resources/Prototypes/Entities/World/Debris/asteroids.yml b/Resources/Prototypes/Entities/World/Debris/asteroids.yml index ba0539ac89..bb33801e2d 100644 --- a/Resources/Prototypes/Entities/World/Debris/asteroids.yml +++ b/Resources/Prototypes/Entities/World/Debris/asteroids.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity id: BaseAsteroidDebris parent: BaseDebris name: asteroid debris @@ -58,7 +58,7 @@ id: AsteroidDebrisSmall parent: BaseAsteroidDebris name: asteroid debris small - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -68,7 +68,7 @@ id: AsteroidDebrisMedium parent: BaseAsteroidDebris name: asteroid debris medium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -78,7 +78,7 @@ id: AsteroidDebrisLarge parent: BaseAsteroidDebris name: asteroid debris large - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -88,7 +88,7 @@ id: AsteroidDebrisLarger parent: BaseAsteroidDebris name: asteroid debris larger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -99,7 +99,7 @@ id: AsteroidSalvageSmall parent: BaseAsteroidDebris name: salvage asteroid small - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -111,7 +111,7 @@ id: AsteroidSalvageMedium parent: BaseAsteroidDebris name: salvage asteroid medium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -123,7 +123,7 @@ id: AsteroidSalvageLarge parent: BaseAsteroidDebris name: salvage asteroid large - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -135,7 +135,7 @@ id: AsteroidSalvageHuge parent: BaseAsteroidDebris name: salvage asteroid huge - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder diff --git a/Resources/Prototypes/Entities/World/Debris/wrecks.yml b/Resources/Prototypes/Entities/World/Debris/wrecks.yml index 4512ca7917..7bbeadeb5b 100644 --- a/Resources/Prototypes/Entities/World/Debris/wrecks.yml +++ b/Resources/Prototypes/Entities/World/Debris/wrecks.yml @@ -53,7 +53,7 @@ id: ScrapDebrisSmall parent: BaseScrapDebris name: scrap debris small - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -63,7 +63,7 @@ id: ScrapDebrisMedium parent: BaseScrapDebris name: scrap debris medium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -73,7 +73,7 @@ id: ScrapDebrisLarge parent: BaseScrapDebris name: scrap debris large - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder diff --git a/Resources/Prototypes/Entities/World/chunk.yml b/Resources/Prototypes/Entities/World/chunk.yml index 8f5f91557b..c7cb09c2a4 100644 --- a/Resources/Prototypes/Entities/World/chunk.yml +++ b/Resources/Prototypes/Entities/World/chunk.yml @@ -5,7 +5,7 @@ description: | It's rude to stare. It's also a bit odd you're looking at the abstract representation of the grid of reality. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WorldChunk - type: Sprite diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 08c898367a..b243c694de 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -147,7 +147,7 @@ # components: # - type: StationEvent # weight: 6 -# duration: 1 +# duration: null # earliestStart: 30 # reoccurrenceDelay: 20 # minimumPlayers: 30 diff --git a/Resources/Prototypes/GameRules/midround.yml b/Resources/Prototypes/GameRules/midround.yml index 43cdca3bc3..7446995f26 100644 --- a/Resources/Prototypes/GameRules/midround.yml +++ b/Resources/Prototypes/GameRules/midround.yml @@ -18,10 +18,8 @@ agentName: thief-round-end-agent-name definitions: - prefRoles: [ Thief ] - maxRange: - min: 1 - max: 3 - playerRatio: 1 + max: 3 + playerRatio: 15 lateJoinAdditional: true allowNonHumans: true multiAntagSetting: NotExclusive diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 69bc3290de..1b1a9d975a 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -341,6 +341,8 @@ packetPrototype: SugarcaneSeeds productPrototypes: - Sugarcane + mutationPrototypes: + - papercane harvestRepeat: Repeat lifespan: 120 maturation: 12 @@ -355,6 +357,24 @@ Max: 5 PotencyDivisor: 5 +- type: seed + id: papercane + name: seeds-papercane-name + noun: seeds-noun-seeds + displayName: seeds-papercane-display-name + plantRsi: Objects/Specific/Hydroponics/papercane.rsi + packetPrototype: PapercaneSeeds + productPrototypes: + - Papercane + harvestRepeat: Repeat + lifespan: 60 + maturation: 6 + production: 6 + yield: 3 + potency: 10 + growthStages: 3 + idealHeat: 298 + - type: seed id: towercap name: seeds-towercap-name @@ -624,6 +644,8 @@ packetPrototype: AppleSeeds productPrototypes: - FoodApple + mutationPrototypes: + - goldenApple harvestRepeat: Repeat lifespan: 110 maturation: 12 @@ -641,6 +663,38 @@ Max: 4 PotencyDivisor: 25 +- type: seed + id: goldenApple + name: seeds-goldenapple-name + noun: seeds-noun-seeds + displayName: seeds-goldenapple-display-name + plantRsi: Objects/Specific/Hydroponics/golden_apple.rsi + packetPrototype: GoldenAppleSeeds + productPrototypes: + - FoodGoldenApple + harvestRepeat: Repeat + lifespan: 55 + maturation: 6 + production: 6 + yield: 3 + potency: 10 + idealLight: 6 + waterConsumption: 0.75 + nutrientConsumption: 0.75 + chemicals: + Nutriment: + Min: 1 + Max: 10 + PotencyDivisor: 10 + Vitamin: + Min: 1 + Max: 4 + PotencyDivisor: 25 + DoctorsDelight: + Min: 3 + Max: 13 + PotencyDivisor: 10 + - type: seed id: corn name: seeds-corn-name @@ -1191,8 +1245,10 @@ packetPrototype: GalaxythistleSeeds productPrototypes: - FoodGalaxythistle - lifespan: 50 - maturation: 20 + mutationPrototypes: + - glasstle + lifespan: 25 + maturation: 10 production: 3 yield: 3 potency: 10 @@ -1204,6 +1260,28 @@ Max: 25 PotencyDivisor: 4 +- type: seed + id: glasstle + name: seeds-glasstle-name + noun: seeds-noun-seeds + displayName: seeds-glasstle-display-name + plantRsi: Objects/Specific/Hydroponics/glasstle.rsi + packetPrototype: GlasstleSeeds + productPrototypes: + - FoodGlasstle + lifespan: 25 + maturation: 10 + production: 3 + yield: 3 + potency: 10 + growthStages: 3 + waterConsumption: 0.5 + chemicals: + Razorium: + Min: 1 + Max: 25 + PotencyDivisor: 4 + - type: seed id: flyAmanita name: seeds-flyamanita-name diff --git a/Resources/Prototypes/Maps/core.yml b/Resources/Prototypes/Maps/core.yml index 844e599c0f..2f0607b263 100644 --- a/Resources/Prototypes/Maps/core.yml +++ b/Resources/Prototypes/Maps/core.yml @@ -39,7 +39,7 @@ #medical ChiefMedicalOfficer: [ 1, 1 ] MedicalDoctor: [ 2, 3 ] - Chemist: [ 1, 2 ] + Chemist: [ 2, 2 ] MedicalIntern: [ 2, 2 ] Paramedic: [ 1, 2 ] SeniorPhysician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/train.yml b/Resources/Prototypes/Maps/train.yml index a93c455888..0925b5ead1 100644 --- a/Resources/Prototypes/Maps/train.yml +++ b/Resources/Prototypes/Maps/train.yml @@ -16,7 +16,7 @@ !type:NanotrasenNameGenerator prefixCreator: 'ED' - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml # To do - add railway station + emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml # TODO - add railway station - type: StationJobs availableJobs: #service diff --git a/Resources/Prototypes/Objectives/thief.yml b/Resources/Prototypes/Objectives/thief.yml index c4849effc5..6660a7b8d5 100644 --- a/Resources/Prototypes/Objectives/thief.yml +++ b/Resources/Prototypes/Objectives/thief.yml @@ -61,7 +61,7 @@ - type: StealCondition stealGroup: Figurines minCollectionSize: 10 - maxCollectionSize: 50 #will be limited to the number of figures on the station anyway. + maxCollectionSize: 18 #will be limited to the number of figures on the station anyway. - type: Objective difficulty: 0.25 @@ -94,7 +94,7 @@ - type: StealCondition stealGroup: Stamp minCollectionSize: 5 - maxCollectionSize: 15 + maxCollectionSize: 8 - type: Objective difficulty: 1.0 diff --git a/Resources/Prototypes/Procedural/salvage_factions.yml b/Resources/Prototypes/Procedural/salvage_factions.yml index 847a40ac02..f1e29375aa 100644 --- a/Resources/Prototypes/Procedural/salvage_factions.yml +++ b/Resources/Prototypes/Procedural/salvage_factions.yml @@ -1,5 +1,6 @@ - type: salvageFaction id: Xenos + desc: salvage-faction-xenos entries: - proto: MobXeno - proto: MobXenoDrone @@ -24,6 +25,7 @@ - type: salvageFaction id: Carps + desc: salvage-faction-carps entries: - proto: MobCarpDungeon # These do too much damage for salvage, need nerfs diff --git a/Resources/Prototypes/Procedural/salvage_mods.yml b/Resources/Prototypes/Procedural/salvage_mods.yml index f03c926383..ca64d29a52 100644 --- a/Resources/Prototypes/Procedural/salvage_mods.yml +++ b/Resources/Prototypes/Procedural/salvage_mods.yml @@ -7,19 +7,23 @@ # Biome mods -> at least 1 required - type: salvageBiomeMod id: Caves + desc: salvage-biome-mod-caves biome: Caves - type: salvageBiomeMod id: Grasslands + desc: salvage-biome-mod-grasslands biome: Grasslands - type: salvageBiomeMod id: Snow + desc: salvage-biome-mod-snow cost: 1 biome: Snow - type: salvageBiomeMod id: Lava + desc: salvage-biome-mod-lava cost: 2 biome: Lava @@ -32,36 +36,38 @@ # Light mods -> required - type: salvageLightMod id: Daylight - desc: Daylight + desc: salvage-light-mod-daylight color: "#D8B059" biomes: - Grasslands - type: salvageLightMod id: Lavalight - desc: Daylight + desc: salvage-light-mod-daylight color: "#A34931" biomes: - Lava - type: salvageLightMod id: Evening - desc: Evening + desc: salvage-light-mod-evening color: "#2b3143" - type: salvageLightMod id: Night - desc: Night time + desc: salvage-light-mod-night cost: 1 color: null # Temperatures - type: salvageTemperatureMod id: RoomTemp + desc: salvage-temperature-mod-room-temperature cost: 0 - type: salvageTemperatureMod id: Hot + desc: salvage-temperature-mod-hot cost: 1 temperature: 323.15 # 50C biomes: @@ -72,7 +78,7 @@ - type: salvageTemperatureMod id: Burning - desc: High temperature + desc: salvage-temperature-mod-high-temperature cost: 2 temperature: 423.15 # 200C biomes: @@ -82,7 +88,7 @@ - type: salvageTemperatureMod id: Melting - desc: Extreme heat + desc: salvage-temperature-mod-extreme-heat cost: 4 temperature: 1273.15 # 1000C hot hot hot biomes: @@ -90,6 +96,7 @@ - type: salvageTemperatureMod id: Cold + desc: salvage-temperature-mod-cold cost: 1 temperature: 275.15 # 2C biomes: @@ -100,7 +107,7 @@ - type: salvageTemperatureMod id: Tundra - desc: Low temperature + desc: salvage-temperature-mod-low-temperature cost: 2 temperature: 263.15 # -40C biomes: @@ -109,7 +116,7 @@ - type: salvageTemperatureMod id: Frozen - desc: Extreme cold + desc: salvage-temperature-mod-extreme-cold cost: 4 temperature: 123.15 # -150C biomes: @@ -118,7 +125,7 @@ # Air mixtures - type: salvageAirMod id: Space - desc: No atmosphere + desc: salvage-air-mod-no-atmosphere space: true cost: 2 biomes: @@ -128,6 +135,7 @@ - type: salvageAirMod id: Breathable cost: 0 + desc: salvage-air-mod-breathable-atmosphere gases: - 21.824779 # oxygen - 82.10312 # nitrogen @@ -135,7 +143,7 @@ - type: salvageAirMod id: Sleepy cost: 1 - desc: Dangerous atmosphere + desc: salvage-air-mod-dangerous-atmosphere gases: - 21.824779 # oxygen - 72.10312 # nitrogen @@ -155,7 +163,7 @@ - type: salvageAirMod id: Poisoned cost: 2 - desc: Dangerous atmosphere + desc: salvage-air-mod-dangerous-atmosphere gases: - 21.824779 # oxygen - 77.10312 # nitrogen @@ -170,7 +178,7 @@ - type: salvageAirMod id: Poison cost: 3 - desc: Toxic atmosphere + desc: salvage-air-mod-toxic-atmosphere gases: - 21.824779 # oxygen - 0 @@ -183,7 +191,7 @@ - type: salvageAirMod id: Plasma cost: 4 - desc: Toxic atmosphere + desc: salvage-air-mod-toxic-atmosphere gases: - 0 - 0 @@ -196,7 +204,7 @@ - type: salvageAirMod id: Burnable cost: 5 - desc: Volatile atmosphere + desc: salvage-air-mod-volatile-atmosphere gases: - 21.824779 # oxygen - 0 @@ -220,6 +228,7 @@ # For now just simple 1-dungeon setups - type: salvageDungeonMod id: Experiment + desc: salvage-dungeon-mod-experiment proto: Experiment biomes: #- LowDesert @@ -227,24 +236,28 @@ - type: salvageDungeonMod id: LavaBrig + desc: salvage-dungeon-mod-lava-brig proto: LavaBrig biomes: - Lava - type: salvageDungeonMod id: Mineshaft + desc: salvage-dungeon-mod-mineshaft proto: Mineshaft biomes: - Caves - type: salvageDungeonMod id: SnowyLabs + desc: salvage-dungeon-mod-snowy-labs proto: SnowyLabs biomes: - Snow - + - type: salvageDungeonMod id: Haunted + desc: salvage-dungeon-mod-haunted proto: Haunted biomes: - Caves diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/mannequin.yml b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/mannequin.yml index f83a3b1e95..45ac8cc702 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/mannequin.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/mannequin.yml @@ -20,6 +20,7 @@ edges: - to: start completed: + - !type:EmptyAllContainers - !type:SpawnPrototype prototype: MaterialWoodPlank amount: 5 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/shelfs.yml b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/shelfs.yml index 61a903f7a0..1a6492fd92 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/shelfs.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/shelfs.yml @@ -117,6 +117,7 @@ edges: - to: start completed: + - !type:EmptyAllContainers - !type:SpawnPrototype prototype: MaterialWoodPlank1 amount: 4 @@ -129,6 +130,7 @@ edges: - to: start completed: + - !type:EmptyAllContainers - !type:SpawnPrototype prototype: SheetSteel1 amount: 5 @@ -141,6 +143,7 @@ edges: - to: start completed: + - !type:EmptyAllContainers - !type:SpawnPrototype prototype: SheetGlass1 amount: 4 @@ -153,6 +156,7 @@ edges: - to: start completed: + - !type:EmptyAllContainers - !type:SpawnPrototype prototype: MaterialWoodPlank1 amount: 8 @@ -170,6 +174,7 @@ edges: - to: start completed: + - !type:EmptyAllContainers - !type:SpawnPrototype prototype: SheetPlasteel1 amount: 5 @@ -190,6 +195,7 @@ edges: - to: start completed: + - !type:EmptyAllContainers - !type:SpawnPrototype prototype: SheetPlastic1 amount: 5 @@ -211,6 +217,7 @@ edges: - to: start completed: + - !type:EmptyAllContainers - !type:SpawnPrototype prototype: MaterialWoodPlank1 amount: 6 @@ -223,6 +230,7 @@ edges: - to: start completed: + - !type:EmptyAllContainers - !type:SpawnPrototype prototype: PartRodMetal amount: 2 @@ -245,6 +253,7 @@ edges: - to: start completed: + - !type:EmptyAllContainers - !type:SpawnPrototype prototype: SheetPlasteel1 amount: 2 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml b/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml index 6e64f061eb..d366a2ea59 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml @@ -34,7 +34,7 @@ state: icon name: a multitool - node: logic_gate - entity: LogicGate + entity: LogicGateOr - node: edge_detector entity: EdgeDetector - node: power_sensor diff --git a/Resources/Prototypes/Recipes/Construction/utilities.yml b/Resources/Prototypes/Recipes/Construction/utilities.yml index 930768b3ea..d07201bf7b 100644 --- a/Resources/Prototypes/Recipes/Construction/utilities.yml +++ b/Resources/Prototypes/Recipes/Construction/utilities.yml @@ -394,7 +394,7 @@ targetNode: half category: construction-category-utilities placementMode: SnapgridCenter - canBuildInImpassable: false + canBuildInImpassable: true icon: sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeHalf @@ -408,7 +408,7 @@ targetNode: straight category: construction-category-utilities placementMode: SnapgridCenter - canBuildInImpassable: false + canBuildInImpassable: true icon: sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeStraight @@ -422,7 +422,7 @@ targetNode: bend category: construction-category-utilities placementMode: SnapgridCenter - canBuildInImpassable: false + canBuildInImpassable: true icon: sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeBend @@ -436,7 +436,7 @@ targetNode: tjunction category: construction-category-utilities placementMode: SnapgridCenter - canBuildInImpassable: false + canBuildInImpassable: true icon: sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeTJunction @@ -450,7 +450,7 @@ targetNode: fourway category: construction-category-utilities placementMode: SnapgridCenter - canBuildInImpassable: false + canBuildInImpassable: true icon: sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeFourway diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 0a8ff18aad..3c750e0190 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -591,6 +591,17 @@ FoodCheeseSlice: 1 FoodTomato: 1 +- type: microwaveMealRecipe + id: RecipeUraniumPizza + name: spicy rock pizza recipe + result: FoodPizzaUranium + time: 30 + solids: + FoodDoughFlat: 1 + FoodChiliPepper: 2 + FoodTomato: 2 + SheetUranium1: 2 + #Italian - type: microwaveMealRecipe id: RecipeBoiledSpaghetti @@ -635,12 +646,13 @@ name: chow mein recipe result: FoodNoodlesChowmein time: 10 + reagents: + Egg: 6 solids: FoodNoodlesBoiled: 1 FoodEggplant: 1 FoodCarrot: 1 FoodCorn: 1 - FoodEgg: 1 - type: microwaveMealRecipe id: RecipeOatmeal @@ -700,9 +712,10 @@ name: egg-fried rice recipe result: FoodRiceEgg time: 15 + reagents: + Egg: 6 solids: FoodRiceBoiled: 1 - FoodEgg: 1 FoodCarrot: 1 - type: microwaveMealRecipe @@ -1436,10 +1449,10 @@ reagents: Flour: 15 Sugar: 30 + Egg: 18 solids: FoodButter: 2 FoodSnackChocolateBar: 2 - FoodEgg: 3 #Donks i guess - type: microwaveMealRecipe @@ -1876,10 +1889,10 @@ reagents: Flour: 15 Sugar: 30 + Egg: 18 solids: FoodCannabisButter: 2 FoodSnackChocolateBar: 2 - FoodEgg: 3 - type: microwaveMealRecipe id: RecipeCornInButter diff --git a/Resources/Prototypes/Recipes/Reactions/food.yml b/Resources/Prototypes/Recipes/Reactions/food.yml index 5080039569..ce89131c7b 100644 --- a/Resources/Prototypes/Recipes/Reactions/food.yml +++ b/Resources/Prototypes/Recipes/Reactions/food.yml @@ -84,6 +84,8 @@ amount: 12 Sugar: amount: 5 + Milk: + amount: 5 effects: - !type:CreateEntityReactionEffect entity: FoodCakeBatter diff --git a/Resources/Prototypes/Roles/Antags/nukeops.yml b/Resources/Prototypes/Roles/Antags/nukeops.yml index 7cfed348f1..8dec692ee5 100644 --- a/Resources/Prototypes/Roles/Antags/nukeops.yml +++ b/Resources/Prototypes/Roles/Antags/nukeops.yml @@ -38,9 +38,8 @@ # should be changed to nukie playtime when thats tracked (wyci) guides: [ NuclearOperatives ] -#Nuclear Operative Gear - type: startingGear - id: SyndicateOperativeGearFull + id: SyndicateOperativeGearFullNoUplink equipment: jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicate @@ -52,7 +51,7 @@ shoes: ClothingShoesBootsCombatFilled id: SyndiPDA pocket1: DoubleEmergencyOxygenTankFilled - pocket2: BaseUplinkRadio40TC + pocket2: PlushieCarp belt: ClothingBeltMilitaryWebbing storage: back: @@ -61,6 +60,13 @@ - PinpointerSyndicateNuclear - DeathAcidifierImplanter +#Nuclear Operative Gear +- type: startingGear + id: SyndicateOperativeGearFull + parent: SyndicateOperativeGearFullNoUplink + equipment: + pocket2: BaseUplinkRadio40TC + #Nuclear Operative Commander Gear - type: startingGear id: SyndicateCommanderGearFull diff --git a/Resources/Prototypes/Roles/Antags/traitor.yml b/Resources/Prototypes/Roles/Antags/traitor.yml index feb8109739..cb2fd4b13e 100644 --- a/Resources/Prototypes/Roles/Antags/traitor.yml +++ b/Resources/Prototypes/Roles/Antags/traitor.yml @@ -41,7 +41,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackSyndicate - shoes: ClothingShoesBootsCombatFilled + shoes: ClothingShoesBootsSyndieFilled gloves: ClothingHandsGlovesColorBlack - type: startingGear @@ -78,14 +78,6 @@ - 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/Stacks/consumable_stacks.yml b/Resources/Prototypes/Stacks/consumable_stacks.yml index 2936772f08..8fe33749c6 100644 --- a/Resources/Prototypes/Stacks/consumable_stacks.yml +++ b/Resources/Prototypes/Stacks/consumable_stacks.yml @@ -4,6 +4,18 @@ id: Pancake name: pancake spawn: FoodBakedPancake + maxCount: 9 + +- type: stack + id: PancakeBb + name: blueberry pancake + spawn: FoodBakedPancakeBb + maxCount: 3 + +- type: stack + id: PancakeCc + name: chocolate chip pancake + spawn: FoodBakedPancakeCc maxCount: 3 itemSize: 1 diff --git a/Resources/Prototypes/StatusIcon/antag.yml b/Resources/Prototypes/StatusIcon/antag.yml index 0da545b8a2..c22a13a600 100644 --- a/Resources/Prototypes/StatusIcon/antag.yml +++ b/Resources/Prototypes/StatusIcon/antag.yml @@ -23,6 +23,7 @@ - type: statusIcon id: RevolutionaryFaction + isShaded: true priority: 11 showTo: components: @@ -34,6 +35,7 @@ - type: statusIcon id: HeadRevolutionaryFaction + isShaded: true priority: 11 showTo: components: diff --git a/Resources/Prototypes/Traits/categories.yml b/Resources/Prototypes/Traits/categories.yml index a3621648a4..d024b3fcff 100644 --- a/Resources/Prototypes/Traits/categories.yml +++ b/Resources/Prototypes/Traits/categories.yml @@ -6,3 +6,7 @@ id: SpeechTraits name: trait-category-speech maxTraitPoints: 2 + +- type: traitCategory + id: Quirks + name: trait-category-quirks diff --git a/Resources/Prototypes/Traits/disabilities.yml b/Resources/Prototypes/Traits/disabilities.yml index d58e11c51e..ab8fd8aeff 100644 --- a/Resources/Prototypes/Traits/disabilities.yml +++ b/Resources/Prototypes/Traits/disabilities.yml @@ -33,14 +33,6 @@ timeBetweenIncidents: 300, 600 durationOfIncident: 10, 30 -- type: trait - id: Pacifist - name: trait-pacifist-name - description: trait-pacifist-desc - category: Disabilities - components: - - type: Pacified - - type: trait id: Unrevivable name: trait-unrevivable-name @@ -60,15 +52,6 @@ components: - type: Muted -- type: trait - id: LightweightDrunk - name: trait-lightweight-name - description: trait-lightweight-desc - category: Disabilities - components: - - type: LightweightDrunk - boozeStrengthMultiplier: 2 - - type: trait id: Paracusia name: trait-paracusia-name @@ -93,11 +76,3 @@ - type: BuckleOnMapInit prototype: VehicleWheelchair - type: LegsParalyzed - -- type: trait - id: Snoring - name: trait-snoring-name - description: trait-snoring-desc - category: Disabilities - components: - - type: Snoring diff --git a/Resources/Prototypes/Traits/quirks.yml b/Resources/Prototypes/Traits/quirks.yml new file mode 100644 index 0000000000..d01bf6218a --- /dev/null +++ b/Resources/Prototypes/Traits/quirks.yml @@ -0,0 +1,24 @@ +- type: trait + id: Pacifist + name: trait-pacifist-name + description: trait-pacifist-desc + category: Quirks + components: + - type: Pacified + +- type: trait + id: LightweightDrunk + name: trait-lightweight-name + description: trait-lightweight-desc + category: Quirks + components: + - type: LightweightDrunk + boozeStrengthMultiplier: 2 + +- type: trait + id: Snoring + name: trait-snoring-name + description: trait-snoring-desc + category: Quirks + components: + - type: Snoring diff --git a/Resources/Prototypes/radio_channels.yml b/Resources/Prototypes/radio_channels.yml index 48cc0872a1..1c69bbe7e6 100644 --- a/Resources/Prototypes/radio_channels.yml +++ b/Resources/Prototypes/radio_channels.yml @@ -3,7 +3,7 @@ name: chat-radio-common keycode: ";" frequency: 1459 - color: "#32cd32" + color: "#2cdb2c" - type: radioChannel id: CentCom @@ -25,7 +25,7 @@ name: chat-radio-engineering keycode: 'e' frequency: 1357 - color: "#f37746" + color: "#ff733c" - type: radioChannel id: Medical @@ -39,28 +39,28 @@ name: chat-radio-science keycode: 'n' frequency: 1351 - color: "#c68cfa" + color: "#b05efa" - type: radioChannel id: Security name: chat-radio-security keycode: 's' frequency: 1359 - color: "#dd3535" + color: "#ff4242" - type: radioChannel id: Service name: chat-radio-service keycode: 'v' frequency: 1349 - color: "#6ca729" + color: "#539c00" - type: radioChannel id: Supply name: chat-radio-supply keycode: 'u' frequency: 1347 - color: "#b88646" + color: "#b48b57" - type: radioChannel id: Syndicate @@ -74,7 +74,7 @@ id: Handheld name: chat-radio-handheld frequency: 1330 - color: "#d39f01" + color: "#967101" # long range since otherwise it'd defeat the point of a handheld radio independent of telecomms longRange: true diff --git a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET-hamster.png index 8f503d6237..b6d156e44f 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET-hamster.png and b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET-hamster.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET.png index fc1ad2e939..8ebba8d620 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/icon.png index 6f489ec36b..a1a09dc480 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/inhand-left.png index e15f148f01..9adc2e29ad 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/inhand-right.png index 74bcd6a723..9f11c064f1 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json index ade65863af..28bbc3125c 100644 --- a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e and modified by Flareguy", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png index d48c6efc30..71f6196ebc 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/icon.png index b381513333..a31ae8553d 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-left.png index b32137727b..7a00a59c6a 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png index 1c14b44f98..7188fe7eaa 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json index 057d0b0ab2..5e5c1cf2e0 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-hamster.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-hamster.png new file mode 100644 index 0000000000..27efed7a1c Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-hamster.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-reptilian.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-reptilian.png new file mode 100644 index 0000000000..f41daaa15a Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-reptilian.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..924520c2a8 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK.png new file mode 100644 index 0000000000..01013b3e5a Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/icon.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/icon.png new file mode 100644 index 0000000000..90e9e2e1f0 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-left.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-left.png new file mode 100644 index 0000000000..60f46602d7 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-right.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-right.png new file mode 100644 index 0000000000..bb3c306586 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/meta.json b/Resources/Textures/Clothing/Mask/clown_security.rsi/meta.json new file mode 100644 index 0000000000..6f5cb2dc1e --- /dev/null +++ b/Resources/Textures/Clothing/Mask/clown_security.rsi/meta.json @@ -0,0 +1,38 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Modified version of clown mask by GoldenCan(github) (Copyright for clown mask: Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified by Flareguy)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-MASK", + "directions": 4 + }, + { + "name": "equipped-MASK-hamster", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-MASK-reptilian", + "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png index a779b3812d..498806012e 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png index eea15cfb0a..ecead67e9b 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png index 36bd1257f2..14e15bcd34 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png index 89de6e8fc6..477aa47a2b 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json index ca1146d007..dd06151574 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/blob/061f78db763863e1a3db13cbf2fd9be4cce75939/icons/mob/suit.dmi. inhands by Flareguy, modified from bio_suit in vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/30f9caeb59b0dd9da1dbcd4c69307ae182033a74", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-vox.png index 3b01d4176c..56983936f4 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING.png index 2426c2aa25..109a8b733b 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png index 2a06209b62..455a92bc01 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png index 62d25c958b..b4cd26fd59 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png index 581ba4b951..9d7d68d0ab 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING-vox.png deleted file mode 100644 index b4f8cacea5..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING-vox.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json index ade0905fb8..590a8d849f 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..f6e8747d4a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png index 28cf03f49c..890563ab43 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png index eaf984f437..b12879adfd 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json index c9f0d90ea1..1ffb8fc6bd 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd and modified by Flareguy", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/equipped-INNERCLOTHING.png index 54c35ef455..d4251e8571 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/icon.png index 50d752aa66..77744fa9ba 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING.png index bede369f67..360927b0ef 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png index 619ad40626..177fdb9db4 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING.png index d2380bdf73..8940efc629 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/icon.png index d44522dcca..047eb062db 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png index bf0b30d17a..7b2f6442de 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png index b0e364c825..78ee734ecf 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png index bd0af34098..fb2f53fb5e 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png index be5b2406d2..0443f68c6f 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING.png index 67ba63f7cd..1858a55988 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/icon.png index e7ae72ca07..ce2424ce8d 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/icon.png differ diff --git a/Resources/Textures/Interface/Bwoink/pinned.png b/Resources/Textures/Interface/Bwoink/pinned.png new file mode 100644 index 0000000000..80c8a20200 Binary files /dev/null and b/Resources/Textures/Interface/Bwoink/pinned.png differ diff --git a/Resources/Textures/Interface/Bwoink/pinned2.png b/Resources/Textures/Interface/Bwoink/pinned2.png new file mode 100644 index 0000000000..11c4b62f12 Binary files /dev/null and b/Resources/Textures/Interface/Bwoink/pinned2.png differ diff --git a/Resources/Textures/Interface/Bwoink/un_pinned.png b/Resources/Textures/Interface/Bwoink/un_pinned.png new file mode 100644 index 0000000000..26ef8b4818 Binary files /dev/null and b/Resources/Textures/Interface/Bwoink/un_pinned.png differ diff --git a/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png b/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png new file mode 100644 index 0000000000..ec3566f63e Binary files /dev/null and b/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png differ diff --git a/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png.yml b/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/meta.json index f42362b254..cb676a06ef 100644 --- a/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa", + "copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa, Spicy Rock Pizza modified from margherita pizza by mkanke", "size": { "x": 32, "y": 32 @@ -137,6 +137,12 @@ { "name": "box-inhand-left", "directions": 4 + }, + { + "name": "uranium-pizza" + }, + { + "name": "uranium-slice" } ] } diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/uranium-pizza.png b/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/uranium-pizza.png new file mode 100644 index 0000000000..6fdb66c2dc Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/uranium-pizza.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/uranium-slice.png b/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/uranium-slice.png new file mode 100644 index 0000000000..de619c3a13 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/uranium-slice.png differ diff --git a/Resources/Textures/Objects/Devices/communication.rsi/meta.json b/Resources/Textures/Objects/Devices/communication.rsi/meta.json index 328747df09..784e509c1d 100644 --- a/Resources/Textures/Objects/Devices/communication.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/communication.rsi/meta.json @@ -86,6 +86,9 @@ { "name": "old-radio-urist" }, + { + "name": "old-radio-nukeop" + }, { "name": "old-radio-ancestor" }, diff --git a/Resources/Textures/Objects/Devices/communication.rsi/old-radio-nukeop.png b/Resources/Textures/Objects/Devices/communication.rsi/old-radio-nukeop.png new file mode 100644 index 0000000000..b5befcf26d Binary files /dev/null and b/Resources/Textures/Objects/Devices/communication.rsi/old-radio-nukeop.png differ diff --git a/Resources/Textures/Objects/Fun/toys.rsi/lizard-equipped-HELMET.png b/Resources/Textures/Objects/Fun/toys.rsi/lizard-equipped-HELMET.png new file mode 100644 index 0000000000..a436871b94 Binary files /dev/null and b/Resources/Textures/Objects/Fun/toys.rsi/lizard-equipped-HELMET.png differ diff --git a/Resources/Textures/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/Objects/Fun/toys.rsi/meta.json index fa118695c2..4975ba0461 100644 --- a/Resources/Textures/Objects/Fun/toys.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/toys.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser, plushie_penguin by netwy, plushie_arachnid by PixelTheKermit (github), plushie human by TheShuEd, NanoTrasen Balloon by MACMAN2003, holoplush and magicplush modified by deltanedas (github)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser, plushie_penguin by netwy, plushie_arachnid by PixelTheKermit (github), plushie human by TheShuEd, NanoTrasen Balloon by MACMAN2003, holoplush and magicplush modified by deltanedas (github). Lizard hat sprite made by Cinder", "size": { "x": 32, "y": 32 @@ -91,6 +91,10 @@ { "name": "plushie_lizard_mirrored" }, + { + "name": "lizard-equipped-HELMET", + "directions": 4 + }, { "name": "plushie_lamp" }, diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/dead.png new file mode 100644 index 0000000000..fb10912e69 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/harvest.png new file mode 100644 index 0000000000..924aedcea7 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/meta.json new file mode 100644 index 0000000000..1359fd7f8c --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "produce" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + }, + { + "name": "stage-3" + }, + { + "name": "produce-inhand-left", + "directions": 4 + }, + { + "name": "produce-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-left.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-left.png new file mode 100644 index 0000000000..0527f86b93 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-right.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-right.png new file mode 100644 index 0000000000..cd3cc3216e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce.png new file mode 100644 index 0000000000..11c43d8d13 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/seed.png new file mode 100644 index 0000000000..f3e99168dd Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-1.png new file mode 100644 index 0000000000..d4204913b5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-2.png new file mode 100644 index 0000000000..804aa02012 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-2.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-3.png new file mode 100644 index 0000000000..1e6923c9e2 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-3.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/dead.png new file mode 100644 index 0000000000..817c0f4bff Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/harvest.png new file mode 100644 index 0000000000..5a49c3f5c5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/meta.json new file mode 100644 index 0000000000..775f8df408 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/commit/1dbcf389b0ec6b2c51b002df5fef8dd1519f8068", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "produce" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + }, + { + "name": "stage-3" + }, + { + "name": "stage-4" + }, + { + "name": "stage-5" + }, + { + "name": "stage-6" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/produce.png new file mode 100644 index 0000000000..4c36982960 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/seed.png new file mode 100644 index 0000000000..9fc96ba7c2 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-1.png new file mode 100644 index 0000000000..e65be188b1 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-2.png new file mode 100644 index 0000000000..165e17b57c Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-2.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-3.png new file mode 100644 index 0000000000..9b193a59e3 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-3.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-4.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-4.png new file mode 100644 index 0000000000..e66ff1ddc9 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-4.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-5.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-5.png new file mode 100644 index 0000000000..fc1807e089 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-5.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-6.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-6.png new file mode 100644 index 0000000000..e2790c179a Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-6.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/dead.png new file mode 100644 index 0000000000..6c7185bb1e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/harvest.png new file mode 100644 index 0000000000..d1f2111b25 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/meta.json new file mode 100644 index 0000000000..3f97a14afa --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/commit/1dbcf389b0ec6b2c51b002df5fef8dd1519f8068", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "produce" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + }, + { + "name": "stage-3" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/produce.png new file mode 100644 index 0000000000..fe787f35f5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/seed.png new file mode 100644 index 0000000000..3ba27fa5b7 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-1.png new file mode 100644 index 0000000000..5b26285f7c Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-2.png new file mode 100644 index 0000000000..df5aff42b0 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-2.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-3.png new file mode 100644 index 0000000000..1c926be364 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-3.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defib.rsi/icon.png b/Resources/Textures/Objects/Specific/Medical/defib.rsi/icon.png index 7ad5415f58..0b9d3770ed 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/defib.rsi/icon.png and b/Resources/Textures/Objects/Specific/Medical/defib.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-left.png index 37282f2b6d..f525665499 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-left.png and b/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-right.png index 37282f2b6d..f525665499 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-right.png and b/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defib.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/defib.rsi/meta.json index 10645c13be..441fd4f5fe 100644 --- a/Resources/Textures/Objects/Specific/Medical/defib.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Medical/defib.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Created by EmoGarbage404 (github) for Space Staiton 14", + "copyright": "Created by EmoGarbage404 (github) for Space Staiton 14 and modified by alzore_(Discord)", "size": { "x": 32, "y": 32 @@ -25,4 +25,4 @@ "name": "screen" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/envelope.png b/Resources/Textures/Objects/Storage/boxes.rsi/envelope.png new file mode 100644 index 0000000000..93d52099fc Binary files /dev/null and b/Resources/Textures/Objects/Storage/boxes.rsi/envelope.png differ diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/meta.json b/Resources/Textures/Objects/Storage/boxes.rsi/meta.json index 6963a9cdad..cdae38099d 100644 --- a/Resources/Textures/Objects/Storage/boxes.rsi/meta.json +++ b/Resources/Textures/Objects/Storage/boxes.rsi/meta.json @@ -220,6 +220,9 @@ }, { "name": "vials" + }, + { + "name": "envelope" } ] } diff --git a/Resources/Textures/Structures/Machines/autolathe.rsi/meta.json b/Resources/Textures/Structures/Machines/autolathe.rsi/meta.json index b53c89c7a6..2e28bba287 100644 --- a/Resources/Textures/Structures/Machines/autolathe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/autolathe.rsi/meta.json @@ -20,15 +20,31 @@ "name": "building", "delays": [ [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + }, + { + "name": "unlit-building", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, diff --git a/Resources/Textures/Structures/Machines/autolathe.rsi/unlit-building.png b/Resources/Textures/Structures/Machines/autolathe.rsi/unlit-building.png new file mode 100644 index 0000000000..5b17c682dc Binary files /dev/null and b/Resources/Textures/Structures/Machines/autolathe.rsi/unlit-building.png differ diff --git a/Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/meta.json b/Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/meta.json index 3dfb0685f2..9eada3ebc3 100644 --- a/Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/meta.json @@ -20,15 +20,31 @@ "name": "building", "delays": [ [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + }, + { + "name": "unlit-building", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, diff --git a/Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/unlit-building.png b/Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/unlit-building.png new file mode 100644 index 0000000000..8f03eaa61a Binary files /dev/null and b/Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/unlit-building.png differ diff --git a/Resources/Textures/Structures/Machines/protolathe.rsi/meta.json b/Resources/Textures/Structures/Machines/protolathe.rsi/meta.json index 17832603ef..57f80369d0 100644 --- a/Resources/Textures/Structures/Machines/protolathe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/protolathe.rsi/meta.json @@ -20,19 +20,39 @@ "name": "building", "delays": [ [ - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8 + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10 + ] + ] + }, + { + "name": "unlit-building", + "delays": [ + [ + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10 ] ] }, diff --git a/Resources/Textures/Structures/Machines/protolathe.rsi/unlit-building.png b/Resources/Textures/Structures/Machines/protolathe.rsi/unlit-building.png new file mode 100644 index 0000000000..b72d06d654 Binary files /dev/null and b/Resources/Textures/Structures/Machines/protolathe.rsi/unlit-building.png differ diff --git a/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/meta.json b/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/meta.json index b0326326f9..775b298d5a 100644 --- a/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/meta.json @@ -20,16 +20,33 @@ "name": "building", "delays": [ [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10 + ] + ] + }, + { + "name": "unlit-building", + "delays": [ + [ + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10 ] ] }, diff --git a/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/unlit-building.png b/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/unlit-building.png new file mode 100644 index 0000000000..bce4888e2a Binary files /dev/null and b/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/unlit-building.png differ diff --git a/Resources/keybinds.yml b/Resources/keybinds.yml index 291d2d3242..aa901b11df 100644 --- a/Resources/keybinds.yml +++ b/Resources/keybinds.yml @@ -445,8 +445,8 @@ binds: - function: OpenDecalSpawnWindow type: State key: F8 -- function: OpenScoreboardWindow - type: State +- function: ToggleRoundEndSummaryWindow + type: Toggle key: F9 - function: OpenSandboxWindow type: State diff --git a/Resources/migration.yml b/Resources/migration.yml index 725884290f..319588df0b 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -318,7 +318,7 @@ DoorRemoteFirefight: null AirlockServiceCaptainLocked: AirlockCaptainLocked # 2024-06-15 -ClothingOuterCoatInspector: ClothingOuterCoatDetectiveLoadout +ClothingOuterCoatInspector: ClothingOuterCoatJensen # 2024-06-23 FloorTileItemReinforced: PartRodMetal1 @@ -345,3 +345,6 @@ SignDrones: SignMaterials SignShield: null # what was this even for? SignHydro2: SignHydro1 SignHydro3: SignHydro1 + +# 2024-07-27 +LogicGate: LogicGateOr